summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-08-07 18:11:34 +0300
committerLauri Ojansivu <x@xet7.org>2019-08-07 18:11:34 +0300
commitf7e0b837d394d55d66d451c34f43fa8afd357e5b (patch)
tree66501aac3b02ea6d83e6ad1a1b13958c5da56522
parent9e60b414388ec8d5dcb64c638077351b2e2c3bed (diff)
downloadwekan-f7e0b837d394d55d66d451c34f43fa8afd357e5b.tar.gz
wekan-f7e0b837d394d55d66d451c34f43fa8afd357e5b.tar.bz2
wekan-f7e0b837d394d55d66d451c34f43fa8afd357e5b.zip
Hide minicard label text: per user checkbox setting at sidebar.
Thanks to xet7 ! Closes #1466, closes #2561
-rw-r--r--client/components/cards/minicard.jade9
-rw-r--r--client/components/cards/minicard.js11
-rw-r--r--client/components/sidebar/sidebar.jade5
-rw-r--r--client/components/sidebar/sidebar.js9
-rw-r--r--i18n/ar.i18n.json1449
-rw-r--r--i18n/bg.i18n.json1449
-rw-r--r--i18n/br.i18n.json1449
-rw-r--r--i18n/ca.i18n.json1449
-rw-r--r--i18n/cs.i18n.json1449
-rw-r--r--i18n/da.i18n.json1449
-rw-r--r--i18n/de.i18n.json1449
-rw-r--r--i18n/el.i18n.json1449
-rw-r--r--i18n/en-GB.i18n.json1449
-rw-r--r--i18n/en.i18n.json3
-rw-r--r--i18n/eo.i18n.json1449
-rw-r--r--i18n/es-AR.i18n.json1449
-rw-r--r--i18n/es.i18n.json1449
-rw-r--r--i18n/eu.i18n.json1449
-rw-r--r--i18n/fa.i18n.json1449
-rw-r--r--i18n/fi.i18n.json1449
-rw-r--r--i18n/fr.i18n.json1449
-rw-r--r--i18n/gl.i18n.json1449
-rw-r--r--i18n/he.i18n.json1449
-rw-r--r--i18n/hi.i18n.json1449
-rw-r--r--i18n/hu.i18n.json1449
-rw-r--r--i18n/hy.i18n.json1449
-rw-r--r--i18n/id.i18n.json1449
-rw-r--r--i18n/ig.i18n.json1449
-rw-r--r--i18n/it.i18n.json1449
-rw-r--r--i18n/ja.i18n.json1449
-rw-r--r--i18n/ka.i18n.json1449
-rw-r--r--i18n/km.i18n.json1449
-rw-r--r--i18n/ko.i18n.json1449
-rw-r--r--i18n/lv.i18n.json1449
-rw-r--r--i18n/mk.i18n.json1449
-rw-r--r--i18n/mn.i18n.json1449
-rw-r--r--i18n/nb.i18n.json1449
-rw-r--r--i18n/nl.i18n.json1449
-rw-r--r--i18n/oc.i18n.json1449
-rw-r--r--i18n/pl.i18n.json1449
-rw-r--r--i18n/pt-BR.i18n.json1449
-rw-r--r--i18n/pt.i18n.json1449
-rw-r--r--i18n/ro.i18n.json1449
-rw-r--r--i18n/ru.i18n.json1449
-rw-r--r--i18n/sr.i18n.json1449
-rw-r--r--i18n/sv.i18n.json1449
-rw-r--r--i18n/sw.i18n.json1449
-rw-r--r--i18n/ta.i18n.json1449
-rw-r--r--i18n/th.i18n.json1449
-rw-r--r--i18n/tr.i18n.json1449
-rw-r--r--i18n/uk.i18n.json1449
-rw-r--r--i18n/vi.i18n.json1449
-rw-r--r--i18n/zh-CN.i18n.json1449
-rw-r--r--i18n/zh-HK.i18n.json1449
-rw-r--r--i18n/zh-TW.i18n.json1449
-rw-r--r--models/users.js26
56 files changed, 36308 insertions, 36205 deletions
diff --git a/client/components/cards/minicard.jade b/client/components/cards/minicard.jade
index f714baae..3806ce41 100644
--- a/client/components/cards/minicard.jade
+++ b/client/components/cards/minicard.jade
@@ -8,9 +8,12 @@ template(name="minicard")
if labels
.minicard-labels
each labels
- span.card-label(class="card-label-{{color}}" title=name)
- +viewer
- = name
+ unless hiddenMinicardLabelText
+ span.card-label(class="card-label-{{color}}" title=name)
+ +viewer
+ = name
+ if hiddenMinicardLabelText
+ .minicard-label(class="card-label-{{color}}" title="{{name}}")
.minicard-title
.handle
.fa.fa-arrows
diff --git a/client/components/cards/minicard.js b/client/components/cards/minicard.js
index 0718c629..4c25c11d 100644
--- a/client/components/cards/minicard.js
+++ b/client/components/cards/minicard.js
@@ -16,6 +16,17 @@ BlazeComponent.extendComponent({
Utils.goBoardId(this.data().linkedId);
},
},
+ {
+ 'click .js-toggle-minicard-label-text'() {
+ Meteor.call('toggleMinicardLabelText');
+ },
+ },
];
},
}).register('minicard');
+
+Template.minicard.helpers({
+ hiddenMinicardLabelText() {
+ return Meteor.user().hasHiddenMinicardLabelText();
+ },
+});
diff --git a/client/components/sidebar/sidebar.jade b/client/components/sidebar/sidebar.jade
index 2b869314..2dfe41b3 100644
--- a/client/components/sidebar/sidebar.jade
+++ b/client/components/sidebar/sidebar.jade
@@ -22,6 +22,11 @@ template(name='homeSidebar')
+membersWidget
hr
+labelsWidget
+ ul#cards.label-text-hidden
+ a.flex.js-toggle-minicard-label-text
+ span {{_ 'hide-minicard-label-text'}}
+ b &nbsp;
+ .materialCheckBox(class="{{#if hiddenMinicardLabelText}}is-checked{{/if}}")
hr
unless currentUser.isNoComments
h3
diff --git a/client/components/sidebar/sidebar.js b/client/components/sidebar/sidebar.js
index 8468595a..8b98fd7e 100644
--- a/client/components/sidebar/sidebar.js
+++ b/client/components/sidebar/sidebar.js
@@ -101,6 +101,9 @@ BlazeComponent.extendComponent({
'click .js-hide-sidebar': this.hide,
'click .js-toggle-sidebar': this.toggle,
'click .js-back-home': this.setView,
+ 'click .js-toggle-minicard-label-text'() {
+ Meteor.call('toggleMinicardLabelText');
+ },
'click .js-shortcuts'() {
FlowRouter.go('shortcuts');
},
@@ -111,6 +114,12 @@ BlazeComponent.extendComponent({
Blaze.registerHelper('Sidebar', () => Sidebar);
+Template.homeSidebar.helpers({
+ hiddenMinicardLabelText() {
+ return Meteor.user().hasHiddenMinicardLabelText();
+ },
+});
+
EscapeActions.register(
'sidebarView',
() => {
diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json
index 0c2281a7..925b08a0 100644
--- a/i18n/ar.i18n.json
+++ b/i18n/ar.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "قبول",
- "act-activity-notify": "اشعارات النشاط",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__لوح__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "الإجراءات",
- "activities": "الأنشطة",
- "activity": "النشاط",
- "activity-added": "تمت إضافة %s ل %s",
- "activity-archived": "%s انتقل الى الارشيف",
- "activity-attached": "إرفاق %s ل %s",
- "activity-created": "أنشأ %s",
- "activity-customfield-created": "%s احدت حقل مخصص",
- "activity-excluded": "استبعاد %s عن %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "انضم %s",
- "activity-moved": "تم نقل %s من %s إلى %s",
- "activity-on": "على %s",
- "activity-removed": "حذف %s إلى %s",
- "activity-sent": "إرسال %s إلى %s",
- "activity-unjoined": "غادر %s",
- "activity-subtask-added": "تم اضافة مهمة فرعية الى %s",
- "activity-checked-item": "تحقق %s في قائمة التحقق %s من %s",
- "activity-unchecked-item": "ازالة تحقق %s من قائمة التحقق %s من %s",
- "activity-checklist-added": "أضاف قائمة تحقق إلى %s",
- "activity-checklist-removed": "ازالة قائمة التحقق من %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "لم يتم انجاز قائمة التحقق %s من %s",
- "activity-checklist-item-added": "تم اضافة عنصر قائمة التحقق الى '%s' في %s",
- "activity-checklist-item-removed": "تم ازالة عنصر قائمة التحقق الى '%s' في %s",
- "add": "أضف",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "إضافة مرفق",
- "add-board": "إضافة لوحة",
- "add-card": "إضافة بطاقة",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "إضافة قائمة تدقيق",
- "add-checklist-item": "إضافة عنصر إلى قائمة التحقق",
- "add-cover": "إضافة غلاف",
- "add-label": "إضافة ملصق",
- "add-list": "إضافة قائمة",
- "add-members": "تعيين أعضاء",
- "added": "أُضيف",
- "addMemberPopup-title": "الأعضاء",
- "admin": "المدير",
- "admin-desc": "إمكانية مشاهدة و تعديل و حذف أعضاء ، و تعديل إعدادات اللوحة أيضا.",
- "admin-announcement": "إعلان",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "كل اللوحات",
- "and-n-other-card": "And __count__ other بطاقة",
- "and-n-other-card_plural": "And __count__ other بطاقات",
- "apply": "طبق",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "نقل الى الارشيف",
- "archive-all": "نقل الكل الى الارشيف",
- "archive-board": "نقل اللوح الى الارشيف",
- "archive-card": "نقل البطاقة الى الارشيف",
- "archive-list": "نقل القائمة الى الارشيف",
- "archive-swimlane": "نقل خط السباحة الى الارشيف",
- "archive-selection": "نقل التحديد إلى الأرشيف",
- "archiveBoardPopup-title": "نقل الوح إلى الأرشيف",
- "archived-items": "أرشيف",
- "archived-boards": "الالواح في الأرشيف",
- "restore-board": "استعادة اللوحة",
- "no-archived-boards": "لا توجد لوحات في الأرشيف.",
- "archives": "أرشيف",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "تعيين عضو",
- "attached": "أُرفق)",
- "attachment": "مرفق",
- "attachment-delete-pop": "حذف المرق هو حذف نهائي . لا يمكن التراجع إذا حذف.",
- "attachmentDeletePopup-title": "تريد حذف المرفق ?",
- "attachments": "المرفقات",
- "auto-watch": "مراقبة لوحات تلقائيا عندما يتم إنشاؤها",
- "avatar-too-big": "الصورة الرمزية كبيرة جدا (70 كيلوبايت كحد أقصى)",
- "back": "رجوع",
- "board-change-color": "تغيير اللومr",
- "board-nb-stars": "%s نجوم",
- "board-not-found": "لوحة مفقودة",
- "board-private-info": "سوف تصبح هذه اللوحة <strong>خاصة</strong>",
- "board-public-info": "سوف تصبح هذه اللوحة <strong>عامّة</strong>.",
- "boardChangeColorPopup-title": "تعديل خلفية الشاشة",
- "boardChangeTitlePopup-title": "إعادة تسمية اللوحة",
- "boardChangeVisibilityPopup-title": "تعديل وضوح الرؤية",
- "boardChangeWatchPopup-title": "تغيير المتابعة",
- "boardMenuPopup-title": "Board Settings",
- "boards": "لوحات",
- "board-view": "عرض اللوحات",
- "board-view-cal": "التقويم",
- "board-view-swimlanes": "خطوط السباحة",
- "board-view-lists": "القائمات",
- "bucket-example": "مثل « todo list » على سبيل المثال",
- "cancel": "إلغاء",
- "card-archived": "البطاقة منقولة الى الارشيف",
- "board-archived": "اللوحات منقولة الى الارشيف",
- "card-comments-title": "%s تعليقات لهذه البطاقة",
- "card-delete-notice": "هذا حذف أبديّ . سوف تفقد كل الإجراءات المنوطة بهذه البطاقة",
- "card-delete-pop": "سيتم إزالة جميع الإجراءات من تبعات النشاط، وأنك لن تكون قادرا على إعادة فتح البطاقة. لا يوجد التراجع.",
- "card-delete-suggest-archive": "يمكنك نقل بطاقة إلى الأرشيف لإزالتها من اللوحة والمحافظة على النشاط.",
- "card-due": "مستحق",
- "card-due-on": "مستحق في",
- "card-spent": "امضى وقتا",
- "card-edit-attachments": "تعديل المرفقات",
- "card-edit-custom-fields": "تعديل الحقل المعدل",
- "card-edit-labels": "تعديل العلامات",
- "card-edit-members": "تعديل الأعضاء",
- "card-labels-title": "تعديل علامات البطاقة.",
- "card-members-title": "إضافة او حذف أعضاء للبطاقة.",
- "card-start": "بداية",
- "card-start-on": "يبدأ في",
- "cardAttachmentsPopup-title": "إرفاق من",
- "cardCustomField-datePopup-title": "تغير التاريخ",
- "cardCustomFieldsPopup-title": "تعديل الحقل المعدل",
- "cardDeletePopup-title": "حذف البطاقة ?",
- "cardDetailsActionsPopup-title": "إجراءات على البطاقة",
- "cardLabelsPopup-title": "علامات",
- "cardMembersPopup-title": "أعضاء",
- "cardMorePopup-title": "المزيد",
- "cardTemplatePopup-title": "Create template",
- "cards": "بطاقات",
- "cards-count": "بطاقات",
- "casSignIn": "تسجيل الدخول مع CAS",
- "cardType-card": "بطاقة",
- "cardType-linkedCard": "البطاقة المرتبطة",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "تعديل الصورة الشخصية",
- "change-password": "تغيير كلمة المرور",
- "change-permissions": "تعديل الصلاحيات",
- "change-settings": "تغيير الاعدادات",
- "changeAvatarPopup-title": "تعديل الصورة الشخصية",
- "changeLanguagePopup-title": "تغيير اللغة",
- "changePasswordPopup-title": "تغيير كلمة المرور",
- "changePermissionsPopup-title": "تعديل الصلاحيات",
- "changeSettingsPopup-title": "تغيير الاعدادات",
- "subtasks": "Subtasks",
- "checklists": "قوائم التّدقيق",
- "click-to-star": "اضغط لإضافة اللوحة للمفضلة.",
- "click-to-unstar": "اضغط لحذف اللوحة من المفضلة.",
- "clipboard": "Clipboard or drag & drop",
- "close": "غلق",
- "close-board": "غلق اللوحة",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "تعليق",
- "comment-placeholder": "أكتب تعليق",
- "comment-only": "التعليق فقط",
- "comment-only-desc": "يمكن التعليق على بطاقات فقط.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "حاسوب",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "نسخ رابط البطاقة إلى الحافظة",
- "linkCardPopup-title": "ربط البطاقة",
- "searchElementPopup-title": "بحث",
- "copyCardPopup-title": "نسخ البطاقة",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "إنشاء",
- "createBoardPopup-title": "إنشاء لوحة",
- "chooseBoardSourcePopup-title": "استيراد لوحة",
- "createLabelPopup-title": "إنشاء علامة",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "الحالي",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "تاريخ",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "تاريخ",
- "decline": "Decline",
- "default-avatar": "صورة شخصية افتراضية",
- "delete": "حذف",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "حذف العلامة ?",
- "description": "وصف",
- "disambiguateMultiLabelPopup-title": "تحديد الإجراء على العلامة",
- "disambiguateMultiMemberPopup-title": "تحديد الإجراء على العضو",
- "discard": "التخلص منها",
- "done": "Done",
- "download": "تنزيل",
- "edit": "تعديل",
- "edit-avatar": "تعديل الصورة الشخصية",
- "edit-profile": "تعديل الملف الشخصي",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "تغيير تاريخ البدء",
- "editCardDueDatePopup-title": "تغيير تاريخ الاستحقاق",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "تعديل العلامة",
- "editNotificationPopup-title": "تصحيح الإشعار",
- "editProfilePopup-title": "تعديل الملف الشخصي",
- "email": "البريد الإلكتروني",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "لا يمكنك دعوة نفسك",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "إسم المستخدم مأخوذ مسبقا",
- "error-email-taken": "البريد الإلكتروني مأخوذ بالفعل",
- "export-board": "Export board",
- "filter": "تصفية",
- "filter-cards": "تصفية البطاقات",
- "filter-clear": "مسح التصفية",
- "filter-no-label": "لا يوجد ملصق",
- "filter-no-member": "ليس هناك أي عضو",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "التصفية تشتغل",
- "filter-on-desc": "أنت بصدد تصفية بطاقات هذه اللوحة. اضغط هنا لتعديل التصفية.",
- "filter-to-selection": "تصفية بالتحديد",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "الإسم الكامل",
- "header-logo-title": "الرجوع إلى صفحة اللوحات",
- "hide-system-messages": "إخفاء رسائل النظام",
- "headerBarCreateBoardPopup-title": "إنشاء لوحة",
- "home": "الرئيسية",
- "import": "Import",
- "link": "Link",
- "import-board": "استيراد لوحة",
- "import-board-c": "استيراد لوحة",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "من تريلو",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "رسم خريطة الأعضاء",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "الإصدار",
- "initials": "أولية",
- "invalid-date": "تاريخ غير صالح",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "انضمّ",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "اختصار لوحة المفاتيح",
- "label-create": "إنشاء علامة",
- "label-default": "%s علامة (افتراضية)",
- "label-delete-pop": "لا يوجد تراجع. سيؤدي هذا إلى إزالة هذه العلامة من جميع بطاقات والقضاء على تأريخها",
- "labels": "علامات",
- "language": "لغة",
- "last-admin-desc": "لا يمكن تعديل الأدوار لأن ذلك يتطلب صلاحيات المدير.",
- "leave-board": "مغادرة اللوحة",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "مغادرة اللوحة ؟",
- "link-card": "ربط هذه البطاقة",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "نقل بطاقات هذه القائمة",
- "list-select-cards": "تحديد بطاقات هذه القائمة",
- "set-color-list": "Set Color",
- "listActionPopup-title": "قائمة الإجراءات",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "المزيد",
- "link-list": "رابط إلى هذه القائمة",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "القائمات",
- "swimlanes": "خطوط السباحة",
- "log-out": "تسجيل الخروج",
- "log-in": "تسجيل الدخول",
- "loginPopup-title": "تسجيل الدخول",
- "memberMenuPopup-title": "أفضليات الأعضاء",
- "members": "أعضاء",
- "menu": "القائمة",
- "move-selection": "Move selection",
- "moveCardPopup-title": "نقل البطاقة",
- "moveCardToBottom-title": "التحرك إلى القاع",
- "moveCardToTop-title": "التحرك إلى الأعلى",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "تحديد أكثر من واحدة",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "مكتوم",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "لوحاتي",
- "name": "اسم",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "لا توجد نتائج",
- "normal": "عادي",
- "normal-desc": "يمكن مشاهدة و تعديل البطاقات. لا يمكن تغيير إعدادات الضبط.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "اختياري",
- "or": "or",
- "page-maybe-private": "قدتكون هذه الصفحة خاصة . قد تستطيع مشاهدتها ب <a href='%s'>تسجيل الدخول</a>.",
- "page-not-found": "صفحة غير موجودة",
- "password": "كلمة المرور",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "المشاركة",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "خاص",
- "private-desc": "هذه اللوحة خاصة . لا يسمح إلا للأعضاء .",
- "profile": "ملف شخصي",
- "public": "عامّ",
- "public-desc": "هذه اللوحة عامة: مرئية لكلّ من يحصل على الرابط ، و هي مرئية أيضا في محركات البحث مثل جوجل. التعديل مسموح به للأعضاء فقط.",
- "quick-access-description": "أضف لوحة إلى المفضلة لإنشاء اختصار في هذا الشريط.",
- "remove-cover": "حذف الغلاف",
- "remove-from-board": "حذف من اللوحة",
- "remove-label": "إزالة التصنيف",
- "listDeletePopup-title": "حذف القائمة ؟",
- "remove-member": "حذف العضو",
- "remove-member-from-card": "حذف من البطاقة",
- "remove-member-pop": "حذف __name__ (__username__) من __boardTitle__ ? سيتم حذف هذا العضو من جميع بطاقة اللوحة مع إرسال إشعار له بذاك.",
- "removeMemberPopup-title": "حذف العضو ?",
- "rename": "إعادة التسمية",
- "rename-board": "إعادة تسمية اللوحة",
- "restore": "استعادة",
- "save": "حفظ",
- "search": "بحث",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "اختيار اللون",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "الإكمال التلقائي للرموز التعبيرية",
- "shortcut-autocomplete-members": "الإكمال التلقائي لأسماء الأعضاء",
- "shortcut-clear-filters": "مسح التصفيات",
- "shortcut-close-dialog": "غلق النافذة",
- "shortcut-filter-my-cards": "تصفية بطاقاتي",
- "shortcut-show-shortcuts": "عرض قائمة الإختصارات ،تلك",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "إظهار-إخفاء الشريط الجانبي للوحة",
- "show-cards-minimum-count": "إظهار عدد البطاقات إذا كانت القائمة تتضمن أكثر من",
- "sidebar-open": "فتح الشريط الجانبي",
- "sidebar-close": "إغلاق الشريط الجانبي",
- "signupPopup-title": "إنشاء حساب",
- "star-board-title": "اضغط لإضافة هذه اللوحة إلى المفضلة . سوف يتم إظهارها على رأس بقية اللوحات.",
- "starred-boards": "اللوحات المفضلة",
- "starred-boards-description": "تعرض اللوحات المفضلة على رأس بقية اللوحات.",
- "subscribe": "اشتراك و متابعة",
- "team": "فريق",
- "this-board": "هذه اللوحة",
- "this-card": "هذه البطاقة",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "الوقت",
- "title": "عنوان",
- "tracking": "تتبع",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "إلغاء تعيين العضو",
- "unsaved-description": "لديك وصف غير محفوظ",
- "unwatch": "غير مُشاهد",
- "upload": "Upload",
- "upload-avatar": "رفع صورة شخصية",
- "uploaded-avatar": "تم رفع الصورة الشخصية",
- "username": "اسم المستخدم",
- "view-it": "شاهدها",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "مُشاهد",
- "watching": "مشاهدة",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "لوحة التّرحيب",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "المبادئ",
- "welcome-list2": "متقدم",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "ماذا تريد أن تنجز?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "لوحة التحكم",
- "settings": "الإعدادات",
- "people": "الناس",
- "registration": "تسجيل",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "دعوة",
- "invite-people": "الناس المدعوين",
- "to-boards": "إلى اللوحات",
- "email-addresses": "عناوين البريد الإلكتروني",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "تفعيل دعم TLS من اجل خادم SMTP",
- "smtp-host": "مضيف SMTP",
- "smtp-port": "منفذ SMTP",
- "smtp-username": "اسم المستخدم",
- "smtp-password": "كلمة المرور",
- "smtp-tls": "دعم التي ال سي",
- "send-from": "من",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "رمز الدعوة",
- "email-invite-register-subject": "__inviter__ أرسل دعوة لك",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "رمز الدعوة غير موجود",
- "error-notAuthorized": "أنتَ لا تملك الصلاحيات لرؤية هذه الصفحة.",
- "outgoing-webhooks": "الويبهوك الصادرة",
- "outgoingWebhooksPopup-title": "الويبهوك الصادرة",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "ويبهوك جديدة ",
- "no-name": "(غير معروف)",
- "Node_version": "إصدار النود",
- "OS_Arch": "معمارية نظام التشغيل",
- "OS_Cpus": "استهلاك وحدة المعالجة المركزية لنظام التشغيل",
- "OS_Freemem": "الذاكرة الحرة لنظام التشغيل",
- "OS_Loadavg": "متوسط حمل نظام التشغيل",
- "OS_Platform": "منصة نظام التشغيل",
- "OS_Release": "إصدار نظام التشغيل",
- "OS_Totalmem": "الذاكرة الكلية لنظام التشغيل",
- "OS_Type": "نوع نظام التشغيل",
- "OS_Uptime": "مدة تشغيل نظام التشغيل",
- "days": "days",
- "hours": "الساعات",
- "minutes": "الدقائق",
- "seconds": "الثواني",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "نعم",
- "no": "لا",
- "accounts": "الحسابات",
- "accounts-allowEmailChange": "السماح بتغيير البريد الإلكتروني",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "نقل الى الارشيف",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "أضف",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "قبول",
+ "act-activity-notify": "اشعارات النشاط",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__لوح__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "الإجراءات",
+ "activities": "الأنشطة",
+ "activity": "النشاط",
+ "activity-added": "تمت إضافة %s ل %s",
+ "activity-archived": "%s انتقل الى الارشيف",
+ "activity-attached": "إرفاق %s ل %s",
+ "activity-created": "أنشأ %s",
+ "activity-customfield-created": "%s احدت حقل مخصص",
+ "activity-excluded": "استبعاد %s عن %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "انضم %s",
+ "activity-moved": "تم نقل %s من %s إلى %s",
+ "activity-on": "على %s",
+ "activity-removed": "حذف %s إلى %s",
+ "activity-sent": "إرسال %s إلى %s",
+ "activity-unjoined": "غادر %s",
+ "activity-subtask-added": "تم اضافة مهمة فرعية الى %s",
+ "activity-checked-item": "تحقق %s في قائمة التحقق %s من %s",
+ "activity-unchecked-item": "ازالة تحقق %s من قائمة التحقق %s من %s",
+ "activity-checklist-added": "أضاف قائمة تحقق إلى %s",
+ "activity-checklist-removed": "ازالة قائمة التحقق من %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "لم يتم انجاز قائمة التحقق %s من %s",
+ "activity-checklist-item-added": "تم اضافة عنصر قائمة التحقق الى '%s' في %s",
+ "activity-checklist-item-removed": "تم ازالة عنصر قائمة التحقق الى '%s' في %s",
+ "add": "أضف",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "إضافة مرفق",
+ "add-board": "إضافة لوحة",
+ "add-card": "إضافة بطاقة",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "إضافة قائمة تدقيق",
+ "add-checklist-item": "إضافة عنصر إلى قائمة التحقق",
+ "add-cover": "إضافة غلاف",
+ "add-label": "إضافة ملصق",
+ "add-list": "إضافة قائمة",
+ "add-members": "تعيين أعضاء",
+ "added": "أُضيف",
+ "addMemberPopup-title": "الأعضاء",
+ "admin": "المدير",
+ "admin-desc": "إمكانية مشاهدة و تعديل و حذف أعضاء ، و تعديل إعدادات اللوحة أيضا.",
+ "admin-announcement": "إعلان",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "كل اللوحات",
+ "and-n-other-card": "And __count__ other بطاقة",
+ "and-n-other-card_plural": "And __count__ other بطاقات",
+ "apply": "طبق",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "نقل الى الارشيف",
+ "archive-all": "نقل الكل الى الارشيف",
+ "archive-board": "نقل اللوح الى الارشيف",
+ "archive-card": "نقل البطاقة الى الارشيف",
+ "archive-list": "نقل القائمة الى الارشيف",
+ "archive-swimlane": "نقل خط السباحة الى الارشيف",
+ "archive-selection": "نقل التحديد إلى الأرشيف",
+ "archiveBoardPopup-title": "نقل الوح إلى الأرشيف",
+ "archived-items": "أرشيف",
+ "archived-boards": "الالواح في الأرشيف",
+ "restore-board": "استعادة اللوحة",
+ "no-archived-boards": "لا توجد لوحات في الأرشيف.",
+ "archives": "أرشيف",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "تعيين عضو",
+ "attached": "أُرفق)",
+ "attachment": "مرفق",
+ "attachment-delete-pop": "حذف المرق هو حذف نهائي . لا يمكن التراجع إذا حذف.",
+ "attachmentDeletePopup-title": "تريد حذف المرفق ?",
+ "attachments": "المرفقات",
+ "auto-watch": "مراقبة لوحات تلقائيا عندما يتم إنشاؤها",
+ "avatar-too-big": "الصورة الرمزية كبيرة جدا (70 كيلوبايت كحد أقصى)",
+ "back": "رجوع",
+ "board-change-color": "تغيير اللومr",
+ "board-nb-stars": "%s نجوم",
+ "board-not-found": "لوحة مفقودة",
+ "board-private-info": "سوف تصبح هذه اللوحة <strong>خاصة</strong>",
+ "board-public-info": "سوف تصبح هذه اللوحة <strong>عامّة</strong>.",
+ "boardChangeColorPopup-title": "تعديل خلفية الشاشة",
+ "boardChangeTitlePopup-title": "إعادة تسمية اللوحة",
+ "boardChangeVisibilityPopup-title": "تعديل وضوح الرؤية",
+ "boardChangeWatchPopup-title": "تغيير المتابعة",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "لوحات",
+ "board-view": "عرض اللوحات",
+ "board-view-cal": "التقويم",
+ "board-view-swimlanes": "خطوط السباحة",
+ "board-view-lists": "القائمات",
+ "bucket-example": "مثل « todo list » على سبيل المثال",
+ "cancel": "إلغاء",
+ "card-archived": "البطاقة منقولة الى الارشيف",
+ "board-archived": "اللوحات منقولة الى الارشيف",
+ "card-comments-title": "%s تعليقات لهذه البطاقة",
+ "card-delete-notice": "هذا حذف أبديّ . سوف تفقد كل الإجراءات المنوطة بهذه البطاقة",
+ "card-delete-pop": "سيتم إزالة جميع الإجراءات من تبعات النشاط، وأنك لن تكون قادرا على إعادة فتح البطاقة. لا يوجد التراجع.",
+ "card-delete-suggest-archive": "يمكنك نقل بطاقة إلى الأرشيف لإزالتها من اللوحة والمحافظة على النشاط.",
+ "card-due": "مستحق",
+ "card-due-on": "مستحق في",
+ "card-spent": "امضى وقتا",
+ "card-edit-attachments": "تعديل المرفقات",
+ "card-edit-custom-fields": "تعديل الحقل المعدل",
+ "card-edit-labels": "تعديل العلامات",
+ "card-edit-members": "تعديل الأعضاء",
+ "card-labels-title": "تعديل علامات البطاقة.",
+ "card-members-title": "إضافة او حذف أعضاء للبطاقة.",
+ "card-start": "بداية",
+ "card-start-on": "يبدأ في",
+ "cardAttachmentsPopup-title": "إرفاق من",
+ "cardCustomField-datePopup-title": "تغير التاريخ",
+ "cardCustomFieldsPopup-title": "تعديل الحقل المعدل",
+ "cardDeletePopup-title": "حذف البطاقة ?",
+ "cardDetailsActionsPopup-title": "إجراءات على البطاقة",
+ "cardLabelsPopup-title": "علامات",
+ "cardMembersPopup-title": "أعضاء",
+ "cardMorePopup-title": "المزيد",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "بطاقات",
+ "cards-count": "بطاقات",
+ "casSignIn": "تسجيل الدخول مع CAS",
+ "cardType-card": "بطاقة",
+ "cardType-linkedCard": "البطاقة المرتبطة",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "تعديل الصورة الشخصية",
+ "change-password": "تغيير كلمة المرور",
+ "change-permissions": "تعديل الصلاحيات",
+ "change-settings": "تغيير الاعدادات",
+ "changeAvatarPopup-title": "تعديل الصورة الشخصية",
+ "changeLanguagePopup-title": "تغيير اللغة",
+ "changePasswordPopup-title": "تغيير كلمة المرور",
+ "changePermissionsPopup-title": "تعديل الصلاحيات",
+ "changeSettingsPopup-title": "تغيير الاعدادات",
+ "subtasks": "Subtasks",
+ "checklists": "قوائم التّدقيق",
+ "click-to-star": "اضغط لإضافة اللوحة للمفضلة.",
+ "click-to-unstar": "اضغط لحذف اللوحة من المفضلة.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "غلق",
+ "close-board": "غلق اللوحة",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "تعليق",
+ "comment-placeholder": "أكتب تعليق",
+ "comment-only": "التعليق فقط",
+ "comment-only-desc": "يمكن التعليق على بطاقات فقط.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "حاسوب",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "نسخ رابط البطاقة إلى الحافظة",
+ "linkCardPopup-title": "ربط البطاقة",
+ "searchElementPopup-title": "بحث",
+ "copyCardPopup-title": "نسخ البطاقة",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "إنشاء",
+ "createBoardPopup-title": "إنشاء لوحة",
+ "chooseBoardSourcePopup-title": "استيراد لوحة",
+ "createLabelPopup-title": "إنشاء علامة",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "الحالي",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "تاريخ",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "تاريخ",
+ "decline": "Decline",
+ "default-avatar": "صورة شخصية افتراضية",
+ "delete": "حذف",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "حذف العلامة ?",
+ "description": "وصف",
+ "disambiguateMultiLabelPopup-title": "تحديد الإجراء على العلامة",
+ "disambiguateMultiMemberPopup-title": "تحديد الإجراء على العضو",
+ "discard": "التخلص منها",
+ "done": "Done",
+ "download": "تنزيل",
+ "edit": "تعديل",
+ "edit-avatar": "تعديل الصورة الشخصية",
+ "edit-profile": "تعديل الملف الشخصي",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "تغيير تاريخ البدء",
+ "editCardDueDatePopup-title": "تغيير تاريخ الاستحقاق",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "تعديل العلامة",
+ "editNotificationPopup-title": "تصحيح الإشعار",
+ "editProfilePopup-title": "تعديل الملف الشخصي",
+ "email": "البريد الإلكتروني",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "لا يمكنك دعوة نفسك",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "إسم المستخدم مأخوذ مسبقا",
+ "error-email-taken": "البريد الإلكتروني مأخوذ بالفعل",
+ "export-board": "Export board",
+ "filter": "تصفية",
+ "filter-cards": "تصفية البطاقات",
+ "filter-clear": "مسح التصفية",
+ "filter-no-label": "لا يوجد ملصق",
+ "filter-no-member": "ليس هناك أي عضو",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "التصفية تشتغل",
+ "filter-on-desc": "أنت بصدد تصفية بطاقات هذه اللوحة. اضغط هنا لتعديل التصفية.",
+ "filter-to-selection": "تصفية بالتحديد",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "الإسم الكامل",
+ "header-logo-title": "الرجوع إلى صفحة اللوحات",
+ "hide-system-messages": "إخفاء رسائل النظام",
+ "headerBarCreateBoardPopup-title": "إنشاء لوحة",
+ "home": "الرئيسية",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "استيراد لوحة",
+ "import-board-c": "استيراد لوحة",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "من تريلو",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "رسم خريطة الأعضاء",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "الإصدار",
+ "initials": "أولية",
+ "invalid-date": "تاريخ غير صالح",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "انضمّ",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "اختصار لوحة المفاتيح",
+ "label-create": "إنشاء علامة",
+ "label-default": "%s علامة (افتراضية)",
+ "label-delete-pop": "لا يوجد تراجع. سيؤدي هذا إلى إزالة هذه العلامة من جميع بطاقات والقضاء على تأريخها",
+ "labels": "علامات",
+ "language": "لغة",
+ "last-admin-desc": "لا يمكن تعديل الأدوار لأن ذلك يتطلب صلاحيات المدير.",
+ "leave-board": "مغادرة اللوحة",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "مغادرة اللوحة ؟",
+ "link-card": "ربط هذه البطاقة",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "نقل بطاقات هذه القائمة",
+ "list-select-cards": "تحديد بطاقات هذه القائمة",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "قائمة الإجراءات",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "المزيد",
+ "link-list": "رابط إلى هذه القائمة",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "القائمات",
+ "swimlanes": "خطوط السباحة",
+ "log-out": "تسجيل الخروج",
+ "log-in": "تسجيل الدخول",
+ "loginPopup-title": "تسجيل الدخول",
+ "memberMenuPopup-title": "أفضليات الأعضاء",
+ "members": "أعضاء",
+ "menu": "القائمة",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "نقل البطاقة",
+ "moveCardToBottom-title": "التحرك إلى القاع",
+ "moveCardToTop-title": "التحرك إلى الأعلى",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "تحديد أكثر من واحدة",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "مكتوم",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "لوحاتي",
+ "name": "اسم",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "لا توجد نتائج",
+ "normal": "عادي",
+ "normal-desc": "يمكن مشاهدة و تعديل البطاقات. لا يمكن تغيير إعدادات الضبط.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "اختياري",
+ "or": "or",
+ "page-maybe-private": "قدتكون هذه الصفحة خاصة . قد تستطيع مشاهدتها ب <a href='%s'>تسجيل الدخول</a>.",
+ "page-not-found": "صفحة غير موجودة",
+ "password": "كلمة المرور",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "المشاركة",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "خاص",
+ "private-desc": "هذه اللوحة خاصة . لا يسمح إلا للأعضاء .",
+ "profile": "ملف شخصي",
+ "public": "عامّ",
+ "public-desc": "هذه اللوحة عامة: مرئية لكلّ من يحصل على الرابط ، و هي مرئية أيضا في محركات البحث مثل جوجل. التعديل مسموح به للأعضاء فقط.",
+ "quick-access-description": "أضف لوحة إلى المفضلة لإنشاء اختصار في هذا الشريط.",
+ "remove-cover": "حذف الغلاف",
+ "remove-from-board": "حذف من اللوحة",
+ "remove-label": "إزالة التصنيف",
+ "listDeletePopup-title": "حذف القائمة ؟",
+ "remove-member": "حذف العضو",
+ "remove-member-from-card": "حذف من البطاقة",
+ "remove-member-pop": "حذف __name__ (__username__) من __boardTitle__ ? سيتم حذف هذا العضو من جميع بطاقة اللوحة مع إرسال إشعار له بذاك.",
+ "removeMemberPopup-title": "حذف العضو ?",
+ "rename": "إعادة التسمية",
+ "rename-board": "إعادة تسمية اللوحة",
+ "restore": "استعادة",
+ "save": "حفظ",
+ "search": "بحث",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "اختيار اللون",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "الإكمال التلقائي للرموز التعبيرية",
+ "shortcut-autocomplete-members": "الإكمال التلقائي لأسماء الأعضاء",
+ "shortcut-clear-filters": "مسح التصفيات",
+ "shortcut-close-dialog": "غلق النافذة",
+ "shortcut-filter-my-cards": "تصفية بطاقاتي",
+ "shortcut-show-shortcuts": "عرض قائمة الإختصارات ،تلك",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "إظهار-إخفاء الشريط الجانبي للوحة",
+ "show-cards-minimum-count": "إظهار عدد البطاقات إذا كانت القائمة تتضمن أكثر من",
+ "sidebar-open": "فتح الشريط الجانبي",
+ "sidebar-close": "إغلاق الشريط الجانبي",
+ "signupPopup-title": "إنشاء حساب",
+ "star-board-title": "اضغط لإضافة هذه اللوحة إلى المفضلة . سوف يتم إظهارها على رأس بقية اللوحات.",
+ "starred-boards": "اللوحات المفضلة",
+ "starred-boards-description": "تعرض اللوحات المفضلة على رأس بقية اللوحات.",
+ "subscribe": "اشتراك و متابعة",
+ "team": "فريق",
+ "this-board": "هذه اللوحة",
+ "this-card": "هذه البطاقة",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "الوقت",
+ "title": "عنوان",
+ "tracking": "تتبع",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "إلغاء تعيين العضو",
+ "unsaved-description": "لديك وصف غير محفوظ",
+ "unwatch": "غير مُشاهد",
+ "upload": "Upload",
+ "upload-avatar": "رفع صورة شخصية",
+ "uploaded-avatar": "تم رفع الصورة الشخصية",
+ "username": "اسم المستخدم",
+ "view-it": "شاهدها",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "مُشاهد",
+ "watching": "مشاهدة",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "لوحة التّرحيب",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "المبادئ",
+ "welcome-list2": "متقدم",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "ماذا تريد أن تنجز?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "لوحة التحكم",
+ "settings": "الإعدادات",
+ "people": "الناس",
+ "registration": "تسجيل",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "دعوة",
+ "invite-people": "الناس المدعوين",
+ "to-boards": "إلى اللوحات",
+ "email-addresses": "عناوين البريد الإلكتروني",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "تفعيل دعم TLS من اجل خادم SMTP",
+ "smtp-host": "مضيف SMTP",
+ "smtp-port": "منفذ SMTP",
+ "smtp-username": "اسم المستخدم",
+ "smtp-password": "كلمة المرور",
+ "smtp-tls": "دعم التي ال سي",
+ "send-from": "من",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "رمز الدعوة",
+ "email-invite-register-subject": "__inviter__ أرسل دعوة لك",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "رمز الدعوة غير موجود",
+ "error-notAuthorized": "أنتَ لا تملك الصلاحيات لرؤية هذه الصفحة.",
+ "outgoing-webhooks": "الويبهوك الصادرة",
+ "outgoingWebhooksPopup-title": "الويبهوك الصادرة",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "ويبهوك جديدة ",
+ "no-name": "(غير معروف)",
+ "Node_version": "إصدار النود",
+ "OS_Arch": "معمارية نظام التشغيل",
+ "OS_Cpus": "استهلاك وحدة المعالجة المركزية لنظام التشغيل",
+ "OS_Freemem": "الذاكرة الحرة لنظام التشغيل",
+ "OS_Loadavg": "متوسط حمل نظام التشغيل",
+ "OS_Platform": "منصة نظام التشغيل",
+ "OS_Release": "إصدار نظام التشغيل",
+ "OS_Totalmem": "الذاكرة الكلية لنظام التشغيل",
+ "OS_Type": "نوع نظام التشغيل",
+ "OS_Uptime": "مدة تشغيل نظام التشغيل",
+ "days": "days",
+ "hours": "الساعات",
+ "minutes": "الدقائق",
+ "seconds": "الثواني",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "نعم",
+ "no": "لا",
+ "accounts": "الحسابات",
+ "accounts-allowEmailChange": "السماح بتغيير البريد الإلكتروني",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "نقل الى الارشيف",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "أضف",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/bg.i18n.json b/i18n/bg.i18n.json
index 57dcc774..59548bc0 100644
--- a/i18n/bg.i18n.json
+++ b/i18n/bg.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Приемам",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__ ",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Действия",
- "activities": "Действия",
- "activity": "Дейности",
- "activity-added": "добави %s към %s",
- "activity-archived": "%s е преместена в Архива",
- "activity-attached": "прикачи %s към %s",
- "activity-created": "създаде %s",
- "activity-customfield-created": "създаде собствено поле %s",
- "activity-excluded": "изключи %s от %s",
- "activity-imported": "импортира %s в/във %s от %s",
- "activity-imported-board": "импортира %s от %s",
- "activity-joined": "се присъедини към %s",
- "activity-moved": "премести %s от %s в/във %s",
- "activity-on": "на %s",
- "activity-removed": "премахна %s от %s",
- "activity-sent": "изпрати %s до %s",
- "activity-unjoined": "вече не е част от %s",
- "activity-subtask-added": "добави задача към %s",
- "activity-checked-item": "отбеляза%s в списък със задачи %s на %s",
- "activity-unchecked-item": "размаркира %s от списък със задачи %s на %s",
- "activity-checklist-added": "добави списък със задачи към %s",
- "activity-checklist-removed": "премахна списък със задачи от %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "\"отзавърши\" чеклистта %s в %s",
- "activity-checklist-item-added": "добави точка към '%s' в/във %s",
- "activity-checklist-item-removed": "премахна точка от '%s' в %s",
- "add": "Добави",
- "activity-checked-item-card": "отбеляза %s в чеклист %s",
- "activity-unchecked-item-card": "размаркира %s в чеклист %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "\"отзавърши\" чеклистта %s",
- "add-attachment": "Добави прикачен файл",
- "add-board": "Добави Табло",
- "add-card": "Добави карта",
- "add-swimlane": "Добави коридор",
- "add-subtask": "Добави подзадача",
- "add-checklist": "Добави списък със задачи",
- "add-checklist-item": "Добави точка към списъка със задачи",
- "add-cover": "Добави корица",
- "add-label": "Добави етикет",
- "add-list": "Добави списък",
- "add-members": "Добави членове",
- "added": "Добавено",
- "addMemberPopup-title": "Членове",
- "admin": "Администратор",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Съобщение",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Съобщение от администратора",
- "all-boards": "Всички табла",
- "and-n-other-card": "И __count__ друга карта",
- "and-n-other-card_plural": "И __count__ други карти",
- "apply": "Приложи",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Премести в Архива",
- "archive-all": "Премести всички в Архива",
- "archive-board": "Премести Таблото в Архива",
- "archive-card": "Премести Картата в Архива",
- "archive-list": "Премести Списъка в Архива",
- "archive-swimlane": "Премести Коридора в Архива",
- "archive-selection": "Премести избраното в Архива",
- "archiveBoardPopup-title": "Да преместя ли Таблото в Архива?",
- "archived-items": "Архив",
- "archived-boards": "Табла в Архива",
- "restore-board": "Възстанови Таблото",
- "no-archived-boards": "Няма Табла в Архива.",
- "archives": "Архив",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Възложи на член от екипа",
- "attached": "прикачен",
- "attachment": "Прикаченн файл",
- "attachment-delete-pop": "Изтриването на прикачен файл е завинаги. Няма как да бъде възстановен.",
- "attachmentDeletePopup-title": "Желаете ли да изтриете прикачения файл?",
- "attachments": "Прикачени файлове",
- "auto-watch": "Автоматично наблюдаване на таблата, когато са създадени",
- "avatar-too-big": "Аватарът е прекалено голям (максимум 70KB)",
- "back": "Назад",
- "board-change-color": "Промени цвета",
- "board-nb-stars": "%s звезди",
- "board-not-found": "Таблото не е намерено",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Промени името на Таблото",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Промени наблюдаването",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Табла",
- "board-view": "Board View",
- "board-view-cal": "Календар",
- "board-view-swimlanes": "Коридори",
- "board-view-lists": "Списъци",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "Тази карта е преместена в Архива.",
- "board-archived": "Това табло е преместено в Архива.",
- "card-comments-title": "Тази карта има %s коментар.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "Можете да преместите картата в Архива, за да я премахнете от Таблото и така да запазите активността в него.",
- "card-due": "Готова за",
- "card-due-on": "Готова за",
- "card-spent": "Изработено време",
- "card-edit-attachments": "Промени прикачените файлове",
- "card-edit-custom-fields": "Промени собствените полета",
- "card-edit-labels": "Промени етикетите",
- "card-edit-members": "Промени членовете",
- "card-labels-title": "Промени етикетите за картата.",
- "card-members-title": "Добави или премахни членове на Таблото от тази карта.",
- "card-start": "Начало",
- "card-start-on": "Започва на",
- "cardAttachmentsPopup-title": "Прикачи от",
- "cardCustomField-datePopup-title": "Промени датата",
- "cardCustomFieldsPopup-title": "Промени собствените полета",
- "cardDeletePopup-title": "Желаете да изтриете картата?",
- "cardDetailsActionsPopup-title": "Опции",
- "cardLabelsPopup-title": "Етикети",
- "cardMembersPopup-title": "Членове",
- "cardMorePopup-title": "Още",
- "cardTemplatePopup-title": "Create template",
- "cards": "Карти",
- "cards-count": "Карти",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Карта",
- "cardType-linkedCard": "Свързана карта",
- "cardType-linkedBoard": "Свързано табло",
- "change": "Промени",
- "change-avatar": "Промени аватара",
- "change-password": "Промени паролата",
- "change-permissions": "Промени правата",
- "change-settings": "Промени настройките",
- "changeAvatarPopup-title": "Промени аватара",
- "changeLanguagePopup-title": "Промени езика",
- "changePasswordPopup-title": "Промени паролата",
- "changePermissionsPopup-title": "Промени правата",
- "changeSettingsPopup-title": "Промяна на настройките",
- "subtasks": "Подзадачи",
- "checklists": "Списъци със задачи",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Натиснете, за да премахнете това табло от любими.",
- "clipboard": "Клипборда или с драг & дроп",
- "close": "Затвори",
- "close-board": "Затвори Таблото",
- "close-board-pop": "Ще можете да възстановите Таблото като натиснете на бутона \"Архив\" в началото на хедъра.",
- "color-black": "черно",
- "color-blue": "синьо",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "зелено",
- "color-indigo": "indigo",
- "color-lime": "лайм",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "оранжево",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "розово",
- "color-plum": "plum",
- "color-purple": "пурпурно",
- "color-red": "червено",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "светло синьо",
- "color-slateblue": "slateblue",
- "color-white": "бяло",
- "color-yellow": "жълто",
- "unset-color": "Unset",
- "comment": "Коментирай",
- "comment-placeholder": "Напиши коментар",
- "comment-only": "Само коментар",
- "comment-only-desc": "Може да коментира само в карти.",
- "no-comments": "Няма коментари",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Компютър",
- "confirm-subtask-delete-dialog": "Сигурен ли сте, че искате да изтриете подзадачата?",
- "confirm-checklist-delete-dialog": "Сигурни ли сте, че искате да изтриете този чеклист?",
- "copy-card-link-to-clipboard": "Копирай връзката на картата в клипборда",
- "linkCardPopup-title": "Свържи картата",
- "searchElementPopup-title": "Търсене",
- "copyCardPopup-title": "Копирай картата",
- "copyChecklistToManyCardsPopup-title": "Копирай чеклисти в други карти",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Създай",
- "createBoardPopup-title": "Създай Табло",
- "chooseBoardSourcePopup-title": "Импортирай Табло",
- "createLabelPopup-title": "Създай Табло",
- "createCustomField": "Създай Поле",
- "createCustomFieldPopup-title": "Създай Поле",
- "current": "сегашен",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Чекбокс",
- "custom-field-date": "Дата",
- "custom-field-dropdown": "Падащо меню",
- "custom-field-dropdown-none": "(няма)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Номер",
- "custom-field-text": "Текст",
- "custom-fields": "Собствени полета",
- "date": "Дата",
- "decline": "Отказ",
- "default-avatar": "Основен аватар",
- "delete": "Изтрий",
- "deleteCustomFieldPopup-title": "Изтриване на Собственото поле?",
- "deleteLabelPopup-title": "Желаете да изтриете етикета?",
- "description": "Описание",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Отказ",
- "done": "Готово",
- "download": "Сваляне",
- "edit": "Промени",
- "edit-avatar": "Промени аватара",
- "edit-profile": "Промяна на профила",
- "edit-wip-limit": "Промени WIP лимита",
- "soft-wip-limit": "\"Мек\" WIP лимит",
- "editCardStartDatePopup-title": "Промени началната дата",
- "editCardDueDatePopup-title": "Промени датата за готовност",
- "editCustomFieldPopup-title": "Промени Полето",
- "editCardSpentTimePopup-title": "Промени изработеното време",
- "editLabelPopup-title": "Промяна на Етикета",
- "editNotificationPopup-title": "Промени известията",
- "editProfilePopup-title": "Промяна на профила",
- "email": "Имейл",
- "email-enrollAccount-subject": "Ваш профил беше създаден на __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Неуспешно изпращане на имейла",
- "email-fail-text": "Възникна грешка при изпращането на имейла",
- "email-invalid": "Невалиден имейл",
- "email-invite": "Покани чрез имейл",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Имейлът е изпратен",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Включи WIP лимита",
- "error-board-doesNotExist": "Това табло не съществува",
- "error-board-notAdmin": "За да направите това трябва да сте администратор на това табло",
- "error-board-notAMember": "За да направите това трябва да сте член на това табло",
- "error-json-malformed": "Текстът Ви не е валиден JSON",
- "error-json-schema": "JSON информацията Ви не съдържа информация във валиден формат",
- "error-list-doesNotExist": "Този списък не съществува",
- "error-user-doesNotExist": "Този потребител не съществува",
- "error-user-notAllowSelf": "Не можете да поканите себе си",
- "error-user-notCreated": "Този потребител не е създаден",
- "error-username-taken": "Това потребителско име е вече заето",
- "error-email-taken": "Имейлът е вече зает",
- "export-board": "Експортиране на Табло",
- "filter": "Филтър",
- "filter-cards": "Филтрирай картите",
- "filter-clear": "Премахване на филтрите",
- "filter-no-label": "без етикет",
- "filter-no-member": "без член",
- "filter-no-custom-fields": "Няма Собствени полета",
- "filter-on": "Има приложени филтри",
- "filter-on-desc": "В момента филтрирате картите в това табло. Моля, натиснете тук, за да промените филтъра.",
- "filter-to-selection": "Филтрирай избраните",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Име",
- "header-logo-title": "Назад към страницата с Вашите табла.",
- "hide-system-messages": "Скриване на системните съобщения",
- "headerBarCreateBoardPopup-title": "Създай Табло",
- "home": "Начало",
- "import": "Импорт",
- "link": "Връзка",
- "import-board": "Импортирай Табло",
- "import-board-c": "Импортирай Табло",
- "import-board-title-trello": "Импорт на табло от Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Импортирането ще изтрие всичката налична информация в таблото и ще я замени с нова.",
- "from-trello": "От Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Копирайте валидната Ви JSON информация тук",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Версия",
- "initials": "Инициали",
- "invalid-date": "Невалидна дата",
- "invalid-time": "Невалиден час",
- "invalid-user": "Невалиден потребител",
- "joined": "присъедини ",
- "just-invited": "Бяхте поканени в това табло",
- "keyboard-shortcuts": "Преки пътища с клавиатурата",
- "label-create": "Създай етикет",
- "label-default": "%s етикет (по подразбиране)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Етикети",
- "language": "Език",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Връзка към тази карта",
- "list-archive-cards": "Премести всички карти от този списък в Архива",
- "list-archive-cards-pop": "Това ще премахне всички карти от този Списък от Таблото. За да видите картите в Архива и да ги върнете натиснете на \"Меню\" > \"Архив\".",
- "list-move-cards": "Премести всички карти в този списък",
- "list-select-cards": "Избери всички карти в този списък",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Импорт на карта от Trello",
- "listMorePopup-title": "Още",
- "link-list": "Връзка към този списък",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "Можете да преместите списъка в Архива, за да го премахнете от Таблото и така да запазите активността в него.",
- "lists": "Списъци",
- "swimlanes": "Коридори",
- "log-out": "Изход",
- "log-in": "Вход",
- "loginPopup-title": "Вход",
- "memberMenuPopup-title": "Настройки на профила",
- "members": "Членове",
- "menu": "Меню",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Премести картата",
- "moveCardToBottom-title": "Премести в края",
- "moveCardToTop-title": "Премести в началото",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Множествен избор",
- "multi-selection-on": "Множественият избор е приложен",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "Моите табла",
- "name": "Име",
- "no-archived-cards": "Няма карти в Архива.",
- "no-archived-lists": "Няма списъци в Архива.",
- "no-archived-swimlanes": "Няма коридори в Архива.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Получавате информация за всички карти, в които сте отбелязани или сте създали",
- "notify-watch": "Получавате информация за всички табла, списъци и карти, които наблюдавате",
- "optional": "optional",
- "or": "или",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Парола",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Профил",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Желаете да изтриете списъка?",
- "remove-member": "Премахни член",
- "remove-member-from-card": "Премахни от картата",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Промени името на Таблото",
- "restore": "Възстанови",
- "save": "Запази",
- "search": "Търсене",
- "rules": "Правила",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Избери цвят",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Въведи WIP лимит",
- "shortcut-assign-self": "Добави себе си към тази карта",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Изчистване на всички филтри",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Филтрирай моите карти",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Отвори/затвори сайдбара с филтри",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Покажи бройката на картите, ако списъка съдържа повече от",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Любими табла",
- "starred-boards-description": "Любимите табла се показват в началото на списъка Ви.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "това табло",
- "this-card": "картата",
- "spent-time-hours": "Изработено време (часа)",
- "overtime-hours": "Оувъртайм (часа)",
- "overtime": "Оувъртайм",
- "has-overtime-cards": "Има карти с оувъртайм",
- "has-spenttime-cards": "Има карти с изработено време",
- "time": "Време",
- "title": "Title",
- "tracking": "Следене",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Спри наблюдаването",
- "upload": "Upload",
- "upload-avatar": "Качване на аватар",
- "uploaded-avatar": "Качихте аватар",
- "username": "Потребителско име",
- "view-it": "View it",
- "warn-list-archived": "внимание: тази карта е в списък в Архива",
- "watch": "Наблюдавай",
- "watching": "Наблюдава",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Невалиден WIP лимит",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Моля, преместете някои от задачите от този списък или въведете по-висок WIP лимит.",
- "admin-panel": "Администраторски панел",
- "settings": "Настройки",
- "people": "Хора",
- "registration": "Регистрация",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Покани",
- "invite-people": "Покани хора",
- "to-boards": "в табло/а",
- "email-addresses": "Имейл адреси",
- "smtp-host-description": "Адресът на SMTP сървъра, който обслужва Вашите имейли.",
- "smtp-port-description": "Портът, който Вашият SMTP сървър използва за изходящи имейли.",
- "smtp-tls-description": "Разреши TLS поддръжка за SMTP сървъра",
- "smtp-host": "SMTP хост",
- "smtp-port": "SMTP порт",
- "smtp-username": "Потребителско име",
- "smtp-password": "Парола",
- "smtp-tls": "TLS поддръжка",
- "send-from": "От",
- "send-smtp-test": "Изпрати тестов имейл на себе си",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Успешно изпратихте имейл",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Версия на Node",
- "OS_Arch": "Архитектура на ОС",
- "OS_Cpus": "Брой CPU ядра",
- "OS_Freemem": "Свободна памет",
- "OS_Loadavg": "ОС средно натоварване",
- "OS_Platform": "ОС платформа",
- "OS_Release": "ОС Версия",
- "OS_Totalmem": "ОС Общо памет",
- "OS_Type": "Тип ОС",
- "OS_Uptime": "OS Ъптайм",
- "days": "дни",
- "hours": "часа",
- "minutes": "минути",
- "seconds": "секунди",
- "show-field-on-card": "Покажи това поле в картата",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Да",
- "no": "Не",
- "accounts": "Профили",
- "accounts-allowEmailChange": "Разреши промяна на имейла",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Създаден на",
- "verified": "Потвърден",
- "active": "Активен",
- "card-received": "Получена",
- "card-received-on": "Получена на",
- "card-end": "Завършена",
- "card-end-on": "Завършена на",
- "editCardReceivedDatePopup-title": "Промени датата на получаване",
- "editCardEndDatePopup-title": "Промени датата на завършване",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Разпределена от",
- "requested-by": "Поискан от",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Изтриване на Таблото?",
- "delete-board": "Изтрий таблото",
- "default-subtasks-board": "Подзадачи за табло __board__",
- "default": "по подразбиране",
- "queue": "Опашка",
- "subtask-settings": "Настройки на Подзадачите",
- "boardSubtaskSettingsPopup-title": "Настройки за Подзадачите за това Табло",
- "show-subtasks-field": "Картата може да има подзадачи",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Промени източника на картата",
- "parent-card": "Карта-източник",
- "source-board": "Source board",
- "no-parent": "Не показвай източника",
- "activity-added-label": "добави етикет '%s' към %s",
- "activity-removed-label": "премахна етикет '%s' от %s",
- "activity-delete-attach": "изтри прикачен файл от %s",
- "activity-added-label-card": "добави етикет '%s'",
- "activity-removed-label-card": "премахна етикет '%s'",
- "activity-delete-attach-card": "изтри прикачения файл",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Правило",
- "r-add-trigger": "Добави спусък",
- "r-add-action": "Добави действие",
- "r-board-rules": "Правила за таблото",
- "r-add-rule": "Добави правилото",
- "r-view-rule": "Виж правилото",
- "r-delete-rule": "Изтрий правилото",
- "r-new-rule-name": "Заглавие за новото правило",
- "r-no-rules": "Няма правила",
- "r-when-a-card": "Когато карта",
- "r-is": "е",
- "r-is-moved": "преместена",
- "r-added-to": "добавена в",
- "r-removed-from": "премахната от",
- "r-the-board": "таблото",
- "r-list": "списък",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Преместено в Архива",
- "r-unarchived": "Възстановено от Архива",
- "r-a-card": "карта",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "име",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Премести картата в",
- "r-top-of": "началото на",
- "r-bottom-of": "края на",
- "r-its-list": "списъка й",
- "r-archive": "Премести в Архива",
- "r-unarchive": "Възстанови от Архива",
- "r-card": "карта",
- "r-add": "Добави",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Детайли за правилото",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Премести картата в Архива",
- "r-d-unarchive": "Възстанови картата от Архива",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Добави чеклист",
- "r-d-remove-checklist": "Премахни чеклист",
- "r-by": "by",
- "r-add-checklist": "Добави чеклист",
- "r-with-items": "с точки",
- "r-items-list": "точка1,точка2,точка3",
- "r-add-swimlane": "Добави коридор",
- "r-swimlane-name": "име на коридора",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Приемам",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__ ",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Действия",
+ "activities": "Действия",
+ "activity": "Дейности",
+ "activity-added": "добави %s към %s",
+ "activity-archived": "%s е преместена в Архива",
+ "activity-attached": "прикачи %s към %s",
+ "activity-created": "създаде %s",
+ "activity-customfield-created": "създаде собствено поле %s",
+ "activity-excluded": "изключи %s от %s",
+ "activity-imported": "импортира %s в/във %s от %s",
+ "activity-imported-board": "импортира %s от %s",
+ "activity-joined": "се присъедини към %s",
+ "activity-moved": "премести %s от %s в/във %s",
+ "activity-on": "на %s",
+ "activity-removed": "премахна %s от %s",
+ "activity-sent": "изпрати %s до %s",
+ "activity-unjoined": "вече не е част от %s",
+ "activity-subtask-added": "добави задача към %s",
+ "activity-checked-item": "отбеляза%s в списък със задачи %s на %s",
+ "activity-unchecked-item": "размаркира %s от списък със задачи %s на %s",
+ "activity-checklist-added": "добави списък със задачи към %s",
+ "activity-checklist-removed": "премахна списък със задачи от %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "\"отзавърши\" чеклистта %s в %s",
+ "activity-checklist-item-added": "добави точка към '%s' в/във %s",
+ "activity-checklist-item-removed": "премахна точка от '%s' в %s",
+ "add": "Добави",
+ "activity-checked-item-card": "отбеляза %s в чеклист %s",
+ "activity-unchecked-item-card": "размаркира %s в чеклист %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "\"отзавърши\" чеклистта %s",
+ "add-attachment": "Добави прикачен файл",
+ "add-board": "Добави Табло",
+ "add-card": "Добави карта",
+ "add-swimlane": "Добави коридор",
+ "add-subtask": "Добави подзадача",
+ "add-checklist": "Добави списък със задачи",
+ "add-checklist-item": "Добави точка към списъка със задачи",
+ "add-cover": "Добави корица",
+ "add-label": "Добави етикет",
+ "add-list": "Добави списък",
+ "add-members": "Добави членове",
+ "added": "Добавено",
+ "addMemberPopup-title": "Членове",
+ "admin": "Администратор",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Съобщение",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Съобщение от администратора",
+ "all-boards": "Всички табла",
+ "and-n-other-card": "И __count__ друга карта",
+ "and-n-other-card_plural": "И __count__ други карти",
+ "apply": "Приложи",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Премести в Архива",
+ "archive-all": "Премести всички в Архива",
+ "archive-board": "Премести Таблото в Архива",
+ "archive-card": "Премести Картата в Архива",
+ "archive-list": "Премести Списъка в Архива",
+ "archive-swimlane": "Премести Коридора в Архива",
+ "archive-selection": "Премести избраното в Архива",
+ "archiveBoardPopup-title": "Да преместя ли Таблото в Архива?",
+ "archived-items": "Архив",
+ "archived-boards": "Табла в Архива",
+ "restore-board": "Възстанови Таблото",
+ "no-archived-boards": "Няма Табла в Архива.",
+ "archives": "Архив",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Възложи на член от екипа",
+ "attached": "прикачен",
+ "attachment": "Прикаченн файл",
+ "attachment-delete-pop": "Изтриването на прикачен файл е завинаги. Няма как да бъде възстановен.",
+ "attachmentDeletePopup-title": "Желаете ли да изтриете прикачения файл?",
+ "attachments": "Прикачени файлове",
+ "auto-watch": "Автоматично наблюдаване на таблата, когато са създадени",
+ "avatar-too-big": "Аватарът е прекалено голям (максимум 70KB)",
+ "back": "Назад",
+ "board-change-color": "Промени цвета",
+ "board-nb-stars": "%s звезди",
+ "board-not-found": "Таблото не е намерено",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Промени името на Таблото",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Промени наблюдаването",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Табла",
+ "board-view": "Board View",
+ "board-view-cal": "Календар",
+ "board-view-swimlanes": "Коридори",
+ "board-view-lists": "Списъци",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "Тази карта е преместена в Архива.",
+ "board-archived": "Това табло е преместено в Архива.",
+ "card-comments-title": "Тази карта има %s коментар.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "Можете да преместите картата в Архива, за да я премахнете от Таблото и така да запазите активността в него.",
+ "card-due": "Готова за",
+ "card-due-on": "Готова за",
+ "card-spent": "Изработено време",
+ "card-edit-attachments": "Промени прикачените файлове",
+ "card-edit-custom-fields": "Промени собствените полета",
+ "card-edit-labels": "Промени етикетите",
+ "card-edit-members": "Промени членовете",
+ "card-labels-title": "Промени етикетите за картата.",
+ "card-members-title": "Добави или премахни членове на Таблото от тази карта.",
+ "card-start": "Начало",
+ "card-start-on": "Започва на",
+ "cardAttachmentsPopup-title": "Прикачи от",
+ "cardCustomField-datePopup-title": "Промени датата",
+ "cardCustomFieldsPopup-title": "Промени собствените полета",
+ "cardDeletePopup-title": "Желаете да изтриете картата?",
+ "cardDetailsActionsPopup-title": "Опции",
+ "cardLabelsPopup-title": "Етикети",
+ "cardMembersPopup-title": "Членове",
+ "cardMorePopup-title": "Още",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Карти",
+ "cards-count": "Карти",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Карта",
+ "cardType-linkedCard": "Свързана карта",
+ "cardType-linkedBoard": "Свързано табло",
+ "change": "Промени",
+ "change-avatar": "Промени аватара",
+ "change-password": "Промени паролата",
+ "change-permissions": "Промени правата",
+ "change-settings": "Промени настройките",
+ "changeAvatarPopup-title": "Промени аватара",
+ "changeLanguagePopup-title": "Промени езика",
+ "changePasswordPopup-title": "Промени паролата",
+ "changePermissionsPopup-title": "Промени правата",
+ "changeSettingsPopup-title": "Промяна на настройките",
+ "subtasks": "Подзадачи",
+ "checklists": "Списъци със задачи",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Натиснете, за да премахнете това табло от любими.",
+ "clipboard": "Клипборда или с драг & дроп",
+ "close": "Затвори",
+ "close-board": "Затвори Таблото",
+ "close-board-pop": "Ще можете да възстановите Таблото като натиснете на бутона \"Архив\" в началото на хедъра.",
+ "color-black": "черно",
+ "color-blue": "синьо",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "зелено",
+ "color-indigo": "indigo",
+ "color-lime": "лайм",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "оранжево",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "розово",
+ "color-plum": "plum",
+ "color-purple": "пурпурно",
+ "color-red": "червено",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "светло синьо",
+ "color-slateblue": "slateblue",
+ "color-white": "бяло",
+ "color-yellow": "жълто",
+ "unset-color": "Unset",
+ "comment": "Коментирай",
+ "comment-placeholder": "Напиши коментар",
+ "comment-only": "Само коментар",
+ "comment-only-desc": "Може да коментира само в карти.",
+ "no-comments": "Няма коментари",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Компютър",
+ "confirm-subtask-delete-dialog": "Сигурен ли сте, че искате да изтриете подзадачата?",
+ "confirm-checklist-delete-dialog": "Сигурни ли сте, че искате да изтриете този чеклист?",
+ "copy-card-link-to-clipboard": "Копирай връзката на картата в клипборда",
+ "linkCardPopup-title": "Свържи картата",
+ "searchElementPopup-title": "Търсене",
+ "copyCardPopup-title": "Копирай картата",
+ "copyChecklistToManyCardsPopup-title": "Копирай чеклисти в други карти",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Създай",
+ "createBoardPopup-title": "Създай Табло",
+ "chooseBoardSourcePopup-title": "Импортирай Табло",
+ "createLabelPopup-title": "Създай Табло",
+ "createCustomField": "Създай Поле",
+ "createCustomFieldPopup-title": "Създай Поле",
+ "current": "сегашен",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Чекбокс",
+ "custom-field-date": "Дата",
+ "custom-field-dropdown": "Падащо меню",
+ "custom-field-dropdown-none": "(няма)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Номер",
+ "custom-field-text": "Текст",
+ "custom-fields": "Собствени полета",
+ "date": "Дата",
+ "decline": "Отказ",
+ "default-avatar": "Основен аватар",
+ "delete": "Изтрий",
+ "deleteCustomFieldPopup-title": "Изтриване на Собственото поле?",
+ "deleteLabelPopup-title": "Желаете да изтриете етикета?",
+ "description": "Описание",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Отказ",
+ "done": "Готово",
+ "download": "Сваляне",
+ "edit": "Промени",
+ "edit-avatar": "Промени аватара",
+ "edit-profile": "Промяна на профила",
+ "edit-wip-limit": "Промени WIP лимита",
+ "soft-wip-limit": "\"Мек\" WIP лимит",
+ "editCardStartDatePopup-title": "Промени началната дата",
+ "editCardDueDatePopup-title": "Промени датата за готовност",
+ "editCustomFieldPopup-title": "Промени Полето",
+ "editCardSpentTimePopup-title": "Промени изработеното време",
+ "editLabelPopup-title": "Промяна на Етикета",
+ "editNotificationPopup-title": "Промени известията",
+ "editProfilePopup-title": "Промяна на профила",
+ "email": "Имейл",
+ "email-enrollAccount-subject": "Ваш профил беше създаден на __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Неуспешно изпращане на имейла",
+ "email-fail-text": "Възникна грешка при изпращането на имейла",
+ "email-invalid": "Невалиден имейл",
+ "email-invite": "Покани чрез имейл",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Имейлът е изпратен",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Включи WIP лимита",
+ "error-board-doesNotExist": "Това табло не съществува",
+ "error-board-notAdmin": "За да направите това трябва да сте администратор на това табло",
+ "error-board-notAMember": "За да направите това трябва да сте член на това табло",
+ "error-json-malformed": "Текстът Ви не е валиден JSON",
+ "error-json-schema": "JSON информацията Ви не съдържа информация във валиден формат",
+ "error-list-doesNotExist": "Този списък не съществува",
+ "error-user-doesNotExist": "Този потребител не съществува",
+ "error-user-notAllowSelf": "Не можете да поканите себе си",
+ "error-user-notCreated": "Този потребител не е създаден",
+ "error-username-taken": "Това потребителско име е вече заето",
+ "error-email-taken": "Имейлът е вече зает",
+ "export-board": "Експортиране на Табло",
+ "filter": "Филтър",
+ "filter-cards": "Филтрирай картите",
+ "filter-clear": "Премахване на филтрите",
+ "filter-no-label": "без етикет",
+ "filter-no-member": "без член",
+ "filter-no-custom-fields": "Няма Собствени полета",
+ "filter-on": "Има приложени филтри",
+ "filter-on-desc": "В момента филтрирате картите в това табло. Моля, натиснете тук, за да промените филтъра.",
+ "filter-to-selection": "Филтрирай избраните",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Име",
+ "header-logo-title": "Назад към страницата с Вашите табла.",
+ "hide-system-messages": "Скриване на системните съобщения",
+ "headerBarCreateBoardPopup-title": "Създай Табло",
+ "home": "Начало",
+ "import": "Импорт",
+ "link": "Връзка",
+ "import-board": "Импортирай Табло",
+ "import-board-c": "Импортирай Табло",
+ "import-board-title-trello": "Импорт на табло от Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Импортирането ще изтрие всичката налична информация в таблото и ще я замени с нова.",
+ "from-trello": "От Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Копирайте валидната Ви JSON информация тук",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Версия",
+ "initials": "Инициали",
+ "invalid-date": "Невалидна дата",
+ "invalid-time": "Невалиден час",
+ "invalid-user": "Невалиден потребител",
+ "joined": "присъедини ",
+ "just-invited": "Бяхте поканени в това табло",
+ "keyboard-shortcuts": "Преки пътища с клавиатурата",
+ "label-create": "Създай етикет",
+ "label-default": "%s етикет (по подразбиране)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Етикети",
+ "language": "Език",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Връзка към тази карта",
+ "list-archive-cards": "Премести всички карти от този списък в Архива",
+ "list-archive-cards-pop": "Това ще премахне всички карти от този Списък от Таблото. За да видите картите в Архива и да ги върнете натиснете на \"Меню\" > \"Архив\".",
+ "list-move-cards": "Премести всички карти в този списък",
+ "list-select-cards": "Избери всички карти в този списък",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Импорт на карта от Trello",
+ "listMorePopup-title": "Още",
+ "link-list": "Връзка към този списък",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "Можете да преместите списъка в Архива, за да го премахнете от Таблото и така да запазите активността в него.",
+ "lists": "Списъци",
+ "swimlanes": "Коридори",
+ "log-out": "Изход",
+ "log-in": "Вход",
+ "loginPopup-title": "Вход",
+ "memberMenuPopup-title": "Настройки на профила",
+ "members": "Членове",
+ "menu": "Меню",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Премести картата",
+ "moveCardToBottom-title": "Премести в края",
+ "moveCardToTop-title": "Премести в началото",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Множествен избор",
+ "multi-selection-on": "Множественият избор е приложен",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "Моите табла",
+ "name": "Име",
+ "no-archived-cards": "Няма карти в Архива.",
+ "no-archived-lists": "Няма списъци в Архива.",
+ "no-archived-swimlanes": "Няма коридори в Архива.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Получавате информация за всички карти, в които сте отбелязани или сте създали",
+ "notify-watch": "Получавате информация за всички табла, списъци и карти, които наблюдавате",
+ "optional": "optional",
+ "or": "или",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Парола",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Профил",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Желаете да изтриете списъка?",
+ "remove-member": "Премахни член",
+ "remove-member-from-card": "Премахни от картата",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Промени името на Таблото",
+ "restore": "Възстанови",
+ "save": "Запази",
+ "search": "Търсене",
+ "rules": "Правила",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Избери цвят",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Въведи WIP лимит",
+ "shortcut-assign-self": "Добави себе си към тази карта",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Изчистване на всички филтри",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Филтрирай моите карти",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Отвори/затвори сайдбара с филтри",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Покажи бройката на картите, ако списъка съдържа повече от",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Любими табла",
+ "starred-boards-description": "Любимите табла се показват в началото на списъка Ви.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "това табло",
+ "this-card": "картата",
+ "spent-time-hours": "Изработено време (часа)",
+ "overtime-hours": "Оувъртайм (часа)",
+ "overtime": "Оувъртайм",
+ "has-overtime-cards": "Има карти с оувъртайм",
+ "has-spenttime-cards": "Има карти с изработено време",
+ "time": "Време",
+ "title": "Title",
+ "tracking": "Следене",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Спри наблюдаването",
+ "upload": "Upload",
+ "upload-avatar": "Качване на аватар",
+ "uploaded-avatar": "Качихте аватар",
+ "username": "Потребителско име",
+ "view-it": "View it",
+ "warn-list-archived": "внимание: тази карта е в списък в Архива",
+ "watch": "Наблюдавай",
+ "watching": "Наблюдава",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Невалиден WIP лимит",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Моля, преместете някои от задачите от този списък или въведете по-висок WIP лимит.",
+ "admin-panel": "Администраторски панел",
+ "settings": "Настройки",
+ "people": "Хора",
+ "registration": "Регистрация",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Покани",
+ "invite-people": "Покани хора",
+ "to-boards": "в табло/а",
+ "email-addresses": "Имейл адреси",
+ "smtp-host-description": "Адресът на SMTP сървъра, който обслужва Вашите имейли.",
+ "smtp-port-description": "Портът, който Вашият SMTP сървър използва за изходящи имейли.",
+ "smtp-tls-description": "Разреши TLS поддръжка за SMTP сървъра",
+ "smtp-host": "SMTP хост",
+ "smtp-port": "SMTP порт",
+ "smtp-username": "Потребителско име",
+ "smtp-password": "Парола",
+ "smtp-tls": "TLS поддръжка",
+ "send-from": "От",
+ "send-smtp-test": "Изпрати тестов имейл на себе си",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Успешно изпратихте имейл",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Версия на Node",
+ "OS_Arch": "Архитектура на ОС",
+ "OS_Cpus": "Брой CPU ядра",
+ "OS_Freemem": "Свободна памет",
+ "OS_Loadavg": "ОС средно натоварване",
+ "OS_Platform": "ОС платформа",
+ "OS_Release": "ОС Версия",
+ "OS_Totalmem": "ОС Общо памет",
+ "OS_Type": "Тип ОС",
+ "OS_Uptime": "OS Ъптайм",
+ "days": "дни",
+ "hours": "часа",
+ "minutes": "минути",
+ "seconds": "секунди",
+ "show-field-on-card": "Покажи това поле в картата",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Да",
+ "no": "Не",
+ "accounts": "Профили",
+ "accounts-allowEmailChange": "Разреши промяна на имейла",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Създаден на",
+ "verified": "Потвърден",
+ "active": "Активен",
+ "card-received": "Получена",
+ "card-received-on": "Получена на",
+ "card-end": "Завършена",
+ "card-end-on": "Завършена на",
+ "editCardReceivedDatePopup-title": "Промени датата на получаване",
+ "editCardEndDatePopup-title": "Промени датата на завършване",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Разпределена от",
+ "requested-by": "Поискан от",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Изтриване на Таблото?",
+ "delete-board": "Изтрий таблото",
+ "default-subtasks-board": "Подзадачи за табло __board__",
+ "default": "по подразбиране",
+ "queue": "Опашка",
+ "subtask-settings": "Настройки на Подзадачите",
+ "boardSubtaskSettingsPopup-title": "Настройки за Подзадачите за това Табло",
+ "show-subtasks-field": "Картата може да има подзадачи",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Промени източника на картата",
+ "parent-card": "Карта-източник",
+ "source-board": "Source board",
+ "no-parent": "Не показвай източника",
+ "activity-added-label": "добави етикет '%s' към %s",
+ "activity-removed-label": "премахна етикет '%s' от %s",
+ "activity-delete-attach": "изтри прикачен файл от %s",
+ "activity-added-label-card": "добави етикет '%s'",
+ "activity-removed-label-card": "премахна етикет '%s'",
+ "activity-delete-attach-card": "изтри прикачения файл",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Правило",
+ "r-add-trigger": "Добави спусък",
+ "r-add-action": "Добави действие",
+ "r-board-rules": "Правила за таблото",
+ "r-add-rule": "Добави правилото",
+ "r-view-rule": "Виж правилото",
+ "r-delete-rule": "Изтрий правилото",
+ "r-new-rule-name": "Заглавие за новото правило",
+ "r-no-rules": "Няма правила",
+ "r-when-a-card": "Когато карта",
+ "r-is": "е",
+ "r-is-moved": "преместена",
+ "r-added-to": "добавена в",
+ "r-removed-from": "премахната от",
+ "r-the-board": "таблото",
+ "r-list": "списък",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Преместено в Архива",
+ "r-unarchived": "Възстановено от Архива",
+ "r-a-card": "карта",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "име",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Премести картата в",
+ "r-top-of": "началото на",
+ "r-bottom-of": "края на",
+ "r-its-list": "списъка й",
+ "r-archive": "Премести в Архива",
+ "r-unarchive": "Възстанови от Архива",
+ "r-card": "карта",
+ "r-add": "Добави",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Детайли за правилото",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Премести картата в Архива",
+ "r-d-unarchive": "Възстанови картата от Архива",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Добави чеклист",
+ "r-d-remove-checklist": "Премахни чеклист",
+ "r-by": "by",
+ "r-add-checklist": "Добави чеклист",
+ "r-with-items": "с точки",
+ "r-items-list": "точка1,точка2,точка3",
+ "r-add-swimlane": "Добави коридор",
+ "r-swimlane-name": "име на коридора",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json
index 0d41840f..9335eec4 100644
--- a/i18n/br.i18n.json
+++ b/i18n/br.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Asantiñ",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Oberoù",
- "activities": "Oberiantizoù",
- "activity": "Oberiantiz",
- "activity-added": "%s ouzhpennet da %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "%s liammet ouzh %s",
- "activity-created": "%s krouet",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "%s enporzhiet eus %s da %s",
- "activity-imported-board": "%s enporzhiet da %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Ouzhpenn",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Ouzphenn ur golo",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Ouzhpenn izili",
- "added": "Ouzhpennet",
- "addMemberPopup-title": "Izili",
- "admin": "Merour",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Back",
- "board-change-color": "Kemmañ al liv",
- "board-nb-stars": "%s stered",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Diverkañ ar gartenn ?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Izili",
- "cardMorePopup-title": "Muioc’h",
- "cardTemplatePopup-title": "Create template",
- "cards": "Kartennoù",
- "cards-count": "Kartennoù",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Kemmañ ger-tremen",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Kemmañ ger-tremen",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "du",
- "color-blue": "glas",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "gwer",
- "color-indigo": "indigo",
- "color-lime": "melen sitroñs",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orañjez",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "roz",
- "color-plum": "plum",
- "color-purple": "mouk",
- "color-red": "ruz",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "pers",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "melen",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Krouiñ",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Diverkañ",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Graet",
- "download": "Download",
- "edit": "Kemmañ",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Yezh",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "Muioc’h",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Izili",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Ger-tremen",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Ger-tremen",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Ouzhpenn",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Asantiñ",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Oberoù",
+ "activities": "Oberiantizoù",
+ "activity": "Oberiantiz",
+ "activity-added": "%s ouzhpennet da %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "%s liammet ouzh %s",
+ "activity-created": "%s krouet",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "%s enporzhiet eus %s da %s",
+ "activity-imported-board": "%s enporzhiet da %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Ouzhpenn",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Ouzphenn ur golo",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Ouzhpenn izili",
+ "added": "Ouzhpennet",
+ "addMemberPopup-title": "Izili",
+ "admin": "Merour",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Back",
+ "board-change-color": "Kemmañ al liv",
+ "board-nb-stars": "%s stered",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Diverkañ ar gartenn ?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Izili",
+ "cardMorePopup-title": "Muioc’h",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Kartennoù",
+ "cards-count": "Kartennoù",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Kemmañ ger-tremen",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Kemmañ ger-tremen",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "du",
+ "color-blue": "glas",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "gwer",
+ "color-indigo": "indigo",
+ "color-lime": "melen sitroñs",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orañjez",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "roz",
+ "color-plum": "plum",
+ "color-purple": "mouk",
+ "color-red": "ruz",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "pers",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "melen",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Krouiñ",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Diverkañ",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Graet",
+ "download": "Download",
+ "edit": "Kemmañ",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Yezh",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "Muioc’h",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Izili",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Ger-tremen",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Ger-tremen",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Ouzhpenn",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json
index 8f51b559..a7817249 100644
--- a/i18n/ca.i18n.json
+++ b/i18n/ca.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Accepta",
- "act-activity-notify": "Notificació d'activitat",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__tauler__",
- "act-withCardTitle": "[__tauler__] __fitxa__",
- "actions": "Accions",
- "activities": "Activitats",
- "activity": "Activitat",
- "activity-added": "ha afegit %s a %s",
- "activity-archived": "%s mogut al Arxiu",
- "activity-attached": "ha adjuntat %s a %s",
- "activity-created": "ha creat %s",
- "activity-customfield-created": "camp personalitzat creat %s",
- "activity-excluded": "ha exclòs %s de %s",
- "activity-imported": "importat %s dins %s des de %s",
- "activity-imported-board": "importat %s des de %s",
- "activity-joined": "s'ha unit a %s",
- "activity-moved": "ha mogut %s de %s a %s",
- "activity-on": "en %s",
- "activity-removed": "ha eliminat %s de %s",
- "activity-sent": "ha enviat %s %s",
- "activity-unjoined": "desassignat %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "Checklist afegida a %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "afegida entrada de checklist de '%s' a %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Afegeix",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Afegeix adjunt",
- "add-board": "Afegeix Tauler",
- "add-card": "Afegeix Fitxa",
- "add-swimlane": "Afegix Carril de Natació",
- "add-subtask": "Afegir Subtasca",
- "add-checklist": "Afegeix checklist",
- "add-checklist-item": "Afegeix un ítem al checklist",
- "add-cover": "Afegeix coberta",
- "add-label": "Afegeix etiqueta",
- "add-list": "Afegeix llista",
- "add-members": "Afegeix membres",
- "added": "Afegit",
- "addMemberPopup-title": "Membres",
- "admin": "Administrador",
- "admin-desc": "Pots veure i editar fitxes, eliminar usuaris, i canviar la configuració del tauler.",
- "admin-announcement": "Alertes",
- "admin-announcement-active": "Activar alertes del Sistema",
- "admin-announcement-title": "Alertes d'administració",
- "all-boards": "Tots els taulers",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Aplica",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Moure al arxiu",
- "archive-all": "Moure tot al arxiu",
- "archive-board": "Moure Tauler al Arxiu",
- "archive-card": "Moure Fitxa al Arxiu",
- "archive-list": "Moure Llista al Arxiu",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Moure selecció al Arxiu",
- "archiveBoardPopup-title": "Moure el Tauler al Arxiu?",
- "archived-items": "Desa",
- "archived-boards": "Taulers al Arxiu",
- "restore-board": "Restaura Tauler",
- "no-archived-boards": "No hi han Taulers al Arxiu.",
- "archives": "Desa",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assignar membre",
- "attached": "adjuntat",
- "attachment": "Adjunt",
- "attachment-delete-pop": "L'esborrat d'un arxiu adjunt és permanent. No es pot desfer.",
- "attachmentDeletePopup-title": "Esborrar adjunt?",
- "attachments": "Adjunts",
- "auto-watch": "Segueix automàticament el taulers quan són creats",
- "avatar-too-big": "L'avatar es massa gran (70KM max)",
- "back": "Enrere",
- "board-change-color": "Canvia el color",
- "board-nb-stars": "%s estrelles",
- "board-not-found": "No s'ha trobat el tauler",
- "board-private-info": "Aquest tauler serà <strong> privat.",
- "board-public-info": "Aquest tauler serà <strong> públic.",
- "boardChangeColorPopup-title": "Canvia fons del tauler",
- "boardChangeTitlePopup-title": "Canvia el nom tauler",
- "boardChangeVisibilityPopup-title": "Canvia visibilitat",
- "boardChangeWatchPopup-title": "Canvia seguiment",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Taulers",
- "board-view": "Visió del tauler",
- "board-view-cal": "Calendari",
- "board-view-swimlanes": "Carrils de Natació",
- "board-view-lists": "Llistes",
- "bucket-example": "Igual que “Bucket List”, per exemple",
- "cancel": "Cancel·la",
- "card-archived": "Aquesta fitxa ha estat moguda al Arxiu.",
- "board-archived": "Aquest tauler s'ha mogut al arxiu",
- "card-comments-title": "Aquesta fitxa té %s comentaris.",
- "card-delete-notice": "L'esborrat és permanent. Perdreu totes les accions associades a aquesta fitxa.",
- "card-delete-pop": "Totes les accions s'eliminaran de l'activitat i no podreu tornar a obrir la fitxa. No es pot desfer.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Finalitza",
- "card-due-on": "Finalitza a",
- "card-spent": "Temps Dedicat",
- "card-edit-attachments": "Edita arxius adjunts",
- "card-edit-custom-fields": "Editar camps personalitzats",
- "card-edit-labels": "Edita etiquetes",
- "card-edit-members": "Edita membres",
- "card-labels-title": "Canvia les etiquetes de la fitxa",
- "card-members-title": "Afegeix o eliminar membres del tauler des de la fitxa.",
- "card-start": "Comença",
- "card-start-on": "Comença a",
- "cardAttachmentsPopup-title": "Adjunta des de",
- "cardCustomField-datePopup-title": "Canviar data",
- "cardCustomFieldsPopup-title": "Editar camps personalitzats",
- "cardDeletePopup-title": "Esborrar fitxa?",
- "cardDetailsActionsPopup-title": "Accions de fitxes",
- "cardLabelsPopup-title": "Etiquetes",
- "cardMembersPopup-title": "Membres",
- "cardMorePopup-title": "Més",
- "cardTemplatePopup-title": "Create template",
- "cards": "Fitxes",
- "cards-count": "Fitxes",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Fitxa",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Canvia",
- "change-avatar": "Canvia Avatar",
- "change-password": "Canvia la clau",
- "change-permissions": "Canvia permisos",
- "change-settings": "Canvia configuració",
- "changeAvatarPopup-title": "Canvia Avatar",
- "changeLanguagePopup-title": "Canvia idioma",
- "changePasswordPopup-title": "Canvia la contrasenya",
- "changePermissionsPopup-title": "Canvia permisos",
- "changeSettingsPopup-title": "Canvia configuració",
- "subtasks": "Subtasca",
- "checklists": "Checklists",
- "click-to-star": "Fes clic per destacar aquest tauler.",
- "click-to-unstar": "Fes clic per deixar de destacar aquest tauler.",
- "clipboard": "Portaretalls o estirar i amollar",
- "close": "Tanca",
- "close-board": "Tanca tauler",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "negre",
- "color-blue": "blau",
- "color-crimson": "carmesí",
- "color-darkgreen": "verd fosc",
- "color-gold": "daurat",
- "color-gray": "gris",
- "color-green": "verd",
- "color-indigo": "índigo",
- "color-lime": "llima",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "marina",
- "color-orange": "taronja",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "rosa",
- "color-plum": "pruna",
- "color-purple": "púrpura",
- "color-red": "vermell",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "plata",
- "color-sky": "cel",
- "color-slateblue": "slateblue",
- "color-white": "blanc",
- "color-yellow": "groc",
- "unset-color": "Unset",
- "comment": "Comentari",
- "comment-placeholder": "Escriu un comentari",
- "comment-only": "Només comentaris",
- "comment-only-desc": "Només pots fer comentaris a les fitxes",
- "no-comments": "Sense comentaris",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Ordinador",
- "confirm-subtask-delete-dialog": "Esteu segur que voleu eliminar la subtasca?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copia l'enllaç de la ftixa al porta-retalls",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Cerca",
- "copyCardPopup-title": "Copia la fitxa",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Títols de fitxa i Descripcions de destí en aquest format JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Títol de la primera fitxa\", \"description\":\"Descripció de la primera fitxa\"}, {\"title\":\"Títol de la segona fitxa\",\"description\":\"Descripció de la segona fitxa\"},{\"title\":\"Títol de l'última fitxa\",\"description\":\"Descripció de l'última fitxa\"} ]",
- "create": "Crea",
- "createBoardPopup-title": "Crea tauler",
- "chooseBoardSourcePopup-title": "Importa Tauler",
- "createLabelPopup-title": "Crea etiqueta",
- "createCustomField": "Crear camp",
- "createCustomFieldPopup-title": "Crear camp",
- "current": "Actual",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "Llista d'opcions",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Camps Personalitzats",
- "date": "Data",
- "decline": "Declina",
- "default-avatar": "Avatar per defecte",
- "delete": "Esborra",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Esborra etiqueta",
- "description": "Descripció",
- "disambiguateMultiLabelPopup-title": "Desfe l'ambigüitat en les etiquetes",
- "disambiguateMultiMemberPopup-title": "Desfe l'ambigüitat en els membres",
- "discard": "Descarta",
- "done": "Fet",
- "download": "Descarrega",
- "edit": "Edita",
- "edit-avatar": "Canvia Avatar",
- "edit-profile": "Edita el teu Perfil",
- "edit-wip-limit": "Edita el Límit de Treball en Progrès",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Canvia data d'inici",
- "editCardDueDatePopup-title": "Canvia data de finalització",
- "editCustomFieldPopup-title": "Modificar camp",
- "editCardSpentTimePopup-title": "Canvia temps dedicat",
- "editLabelPopup-title": "Canvia etiqueta",
- "editNotificationPopup-title": "Edita la notificació",
- "editProfilePopup-title": "Edita teu Perfil",
- "email": "Correu electrònic",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hola __user__,\n\nPer començar a utilitzar el servei, segueix l'enllaç següent.\n\n__url__\n\nGràcies.",
- "email-fail": "Error enviant el correu",
- "email-fail-text": "Error en intentar enviar e-mail",
- "email-invalid": "Adreça de correu invàlida",
- "email-invite": "Convida mitjançant correu electrònic",
- "email-invite-subject": "__inviter__ t'ha convidat",
- "email-invite-text": "Benvolgut __user__,\n\n __inviter__ t'ha convidat a participar al tauler \"__board__\" per col·laborar-hi.\n\nSegueix l'enllaç següent:\n\n __url__\n\n Gràcies.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hola __user__,\n \n per resetejar la teva contrasenya, segueix l'enllaç següent.\n \n __url__\n \n Gràcies.",
- "email-sent": "Correu enviat",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hola __user__, \n\n per verificar el teu correu, segueix l'enllaç següent.\n\n __url__\n\n Gràcies.",
- "enable-wip-limit": "Activa e Límit de Treball en Progrès",
- "error-board-doesNotExist": "Aquest tauler no existeix",
- "error-board-notAdmin": "Necessites ser administrador d'aquest tauler per dur a lloc aquest acció",
- "error-board-notAMember": "Necessites ser membre d'aquest tauler per dur a terme aquesta acció",
- "error-json-malformed": "El text no és JSON vàlid",
- "error-json-schema": "La dades JSON no contenen la informació en el format correcte",
- "error-list-doesNotExist": "La llista no existeix",
- "error-user-doesNotExist": "L'usuari no existeix",
- "error-user-notAllowSelf": "No et pots convidar a tu mateix",
- "error-user-notCreated": "L'usuari no s'ha creat",
- "error-username-taken": "Aquest usuari ja existeix",
- "error-email-taken": "L'adreça de correu electrònic ja és en ús",
- "export-board": "Exporta tauler",
- "filter": "Filtre",
- "filter-cards": "Fitxes de filtre",
- "filter-clear": "Elimina filtre",
- "filter-no-label": "Sense etiqueta",
- "filter-no-member": "Sense membres",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filtra per",
- "filter-on-desc": "Estau filtrant fitxes en aquest tauler. Feu clic aquí per editar el filtre.",
- "filter-to-selection": "Filtra selecció",
- "advanced-filter-label": "Filtre avançat",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Nom complet",
- "header-logo-title": "Torna a la teva pàgina de taulers",
- "hide-system-messages": "Oculta missatges del sistema",
- "headerBarCreateBoardPopup-title": "Crea tauler",
- "home": "Inici",
- "import": "importa",
- "link": "Enllaç",
- "import-board": "Importa tauler",
- "import-board-c": "Importa tauler",
- "import-board-title-trello": "Importa tauler des de Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Estau segur que voleu esborrar aquesta checklist?",
- "from-trello": "Des de Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "En el teu tauler Trello, ves a 'Menú', 'Més'.' Imprimir i Exportar', 'Exportar JSON', i copia el text resultant.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Aferra codi JSON vàlid aquí",
- "import-map-members": "Mapeja el membres",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Revisa l'assignació de membres",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Selecciona un usuari",
- "info": "Versió",
- "initials": "Inicials",
- "invalid-date": "Data invàlida",
- "invalid-time": "Temps Invàlid",
- "invalid-user": "Usuari invàlid",
- "joined": "s'ha unit",
- "just-invited": "Has estat convidat a aquest tauler",
- "keyboard-shortcuts": "Dreceres de teclat",
- "label-create": "Crea etiqueta",
- "label-default": "%s etiqueta (per defecte)",
- "label-delete-pop": "No es pot desfer. Això eliminarà aquesta etiqueta de totes les fitxes i destruirà la seva història.",
- "labels": "Etiquetes",
- "language": "Idioma",
- "last-admin-desc": "No podeu canviar rols perquè ha d'haver-hi almenys un administrador.",
- "leave-board": "Abandona tauler",
- "leave-board-pop": "De debò voleu abandonar __boardTitle__? Se us eliminarà de totes les fitxes d'aquest tauler.",
- "leaveBoardPopup-title": "Abandonar Tauler?",
- "link-card": "Enllaç a aquesta fitxa",
- "list-archive-cards": "Moure totes les fitxes en aquesta llista al Arxiu",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Mou totes les fitxes d'aquesta llista",
- "list-select-cards": "Selecciona totes les fitxes d'aquesta llista",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Accions de la llista",
- "swimlaneActionPopup-title": "Accions de Carril de Natació",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "importa una fitxa de Trello",
- "listMorePopup-title": "Més",
- "link-list": "Enllaça a aquesta llista",
- "list-delete-pop": "Totes les accions seran esborrades de la llista d'activitats i no serà possible recuperar la llista",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Llistes",
- "swimlanes": "Carrils de Natació",
- "log-out": "Finalitza la sessió",
- "log-in": "Ingresa",
- "loginPopup-title": "Inicia sessió",
- "memberMenuPopup-title": "Configura membres",
- "members": "Membres",
- "menu": "Menú",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Moure fitxa",
- "moveCardToBottom-title": "Mou a la part inferior",
- "moveCardToTop-title": "Mou a la part superior",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selecció",
- "multi-selection-on": "Multi-Selecció està activada",
- "muted": "En silenci",
- "muted-info": "No seràs notificat dels canvis en aquest tauler",
- "my-boards": "Els meus taulers",
- "name": "Nom",
- "no-archived-cards": "No hi ha fitxes a l'arxiu.",
- "no-archived-lists": "No hi ha llistes al arxiu.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Sense resultats",
- "normal": "Normal",
- "normal-desc": "Podeu veure i editar fitxes. No podeu canviar la configuració.",
- "not-accepted-yet": "La invitació no ha esta acceptada encara",
- "notify-participate": "Rebre actualitzacions per a cada fitxa de la qual n'ets creador o membre",
- "notify-watch": "Rebre actualitzacions per qualsevol tauler, llista o fitxa en observació",
- "optional": "opcional",
- "or": "o",
- "page-maybe-private": "Aquesta pàgina és privada. Per veure-la <a href='%s'> entra </a>.",
- "page-not-found": "Pàgina no trobada.",
- "password": "Contrasenya",
- "paste-or-dragdrop": "aferra, o estira i amolla la imatge (només imatge)",
- "participating": "Participant",
- "preview": "Vista prèvia",
- "previewAttachedImagePopup-title": "Vista prèvia",
- "previewClipboardImagePopup-title": "Vista prèvia",
- "private": "Privat",
- "private-desc": "Aquest tauler és privat. Només les persones afegides al tauler poden veure´l i editar-lo.",
- "profile": "Perfil",
- "public": "Públic",
- "public-desc": "Aquest tauler és públic. És visible per a qualsevol persona amb l'enllaç i es mostrarà en els motors de cerca com Google. Només persones afegides al tauler poden editar-lo.",
- "quick-access-description": "Inicia un tauler per afegir un accés directe en aquest barra",
- "remove-cover": "Elimina coberta",
- "remove-from-board": "Elimina del tauler",
- "remove-label": "Elimina l'etiqueta",
- "listDeletePopup-title": "Esborrar la llista?",
- "remove-member": "Elimina membre",
- "remove-member-from-card": "Elimina de la fitxa",
- "remove-member-pop": "Eliminar __name__ (__username__) de __boardTitle__ ? El membre serà eliminat de totes les fitxes d'aquest tauler. Ells rebran una notificació.",
- "removeMemberPopup-title": "Vols suprimir el membre?",
- "rename": "Canvia el nom",
- "rename-board": "Canvia el nom del tauler",
- "restore": "Restaura",
- "save": "Desa",
- "search": "Cerca",
- "rules": "Regles",
- "search-cards": "Cerca títols de fitxa i descripcions en aquest tauler",
- "search-example": "Text que cercar?",
- "select-color": "Selecciona color",
- "set-wip-limit-value": "Limita el màxim nombre de tasques en aquesta llista",
- "setWipLimitPopup-title": "Configura el Límit de Treball en Progrès",
- "shortcut-assign-self": "Assigna't la ftixa actual",
- "shortcut-autocomplete-emoji": "Autocompleta emoji",
- "shortcut-autocomplete-members": "Autocompleta membres",
- "shortcut-clear-filters": "Elimina tots els filters",
- "shortcut-close-dialog": "Tanca el diàleg",
- "shortcut-filter-my-cards": "Filtra les meves fitxes",
- "shortcut-show-shortcuts": "Mostra aquesta lista d'accessos directes",
- "shortcut-toggle-filterbar": "Canvia la barra lateral del tauler",
- "shortcut-toggle-sidebar": "Canvia Sidebar del Tauler",
- "show-cards-minimum-count": "Mostra contador de fitxes si la llista en conté més de",
- "sidebar-open": "Mostra barra lateral",
- "sidebar-close": "Amaga barra lateral",
- "signupPopup-title": "Crea un compte",
- "star-board-title": "Fes clic per destacar aquest tauler. Es mostrarà a la part superior de la llista de taulers.",
- "starred-boards": "Taulers destacats",
- "starred-boards-description": "Els taulers destacats es mostraran a la part superior de la llista de taulers.",
- "subscribe": "Subscriure",
- "team": "Equip",
- "this-board": "aquest tauler",
- "this-card": "aquesta fitxa",
- "spent-time-hours": "Temps dedicat (hores)",
- "overtime-hours": "Temps de més (hores)",
- "overtime": "Temps de més",
- "has-overtime-cards": "Té fitxes amb temps de més",
- "has-spenttime-cards": "Té fitxes amb temps dedicat",
- "time": "Hora",
- "title": "Títol",
- "tracking": "En seguiment",
- "tracking-info": "Seràs notificat per cada canvi a aquelles fitxes de les que n'eres creador o membre",
- "type": "Tipus",
- "unassign-member": "Desassignar membre",
- "unsaved-description": "Tens una descripció sense desar.",
- "unwatch": "Suprimeix observació",
- "upload": "Puja",
- "upload-avatar": "Actualitza avatar",
- "uploaded-avatar": "Avatar actualitzat",
- "username": "Nom d'Usuari",
- "view-it": "Vist",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Observa",
- "watching": "En observació",
- "watching-info": "Seràs notificat de cada canvi en aquest tauler",
- "welcome-board": "Tauler de benvinguda",
- "welcome-swimlane": "Objectiu 1",
- "welcome-list1": "Bàsics",
- "welcome-list2": "Avançades",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Què vols fer?",
- "wipLimitErrorPopup-title": "Límit de Treball en Progrès invàlid",
- "wipLimitErrorPopup-dialog-pt1": "El nombre de tasques en esta llista és superior al límit de Treball en Progrès que heu definit.",
- "wipLimitErrorPopup-dialog-pt2": "Si us plau mogui algunes taques fora d'aquesta llista, o configuri un límit de Treball en Progrès superior.",
- "admin-panel": "Tauler d'administració",
- "settings": "Configuració",
- "people": "Persones",
- "registration": "Registre",
- "disable-self-registration": "Deshabilita Auto-Registre",
- "invite": "Convida",
- "invite-people": "Convida a persones",
- "to-boards": "Al tauler(s)",
- "email-addresses": "Adreça de correu",
- "smtp-host-description": "L'adreça del vostre servidor SMTP.",
- "smtp-port-description": "El port del vostre servidor SMTP.",
- "smtp-tls-description": "Activa suport TLS pel servidor SMTP",
- "smtp-host": "Servidor SMTP",
- "smtp-port": "Port SMTP",
- "smtp-username": "Nom d'usuari",
- "smtp-password": "Contrasenya",
- "smtp-tls": "Suport TLS",
- "send-from": "De",
- "send-smtp-test": "Envia't un correu electrònic de prova",
- "invitation-code": "Codi d'invitació",
- "email-invite-register-subject": "__inviter__ t'ha convidat",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Has enviat un missatge satisfactòriament",
- "error-invitation-code-not-exist": "El codi d'invitació no existeix",
- "error-notAuthorized": "No estau autoritzats per veure aquesta pàgina",
- "outgoing-webhooks": "Webhooks sortints",
- "outgoingWebhooksPopup-title": "Webhooks sortints",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "Nou Webook sortint",
- "no-name": "Importa tauler des de Wekan",
- "Node_version": "Versió Node",
- "OS_Arch": "Arquitectura SO",
- "OS_Cpus": "Plataforma SO",
- "OS_Freemem": "Memòria lliure",
- "OS_Loadavg": "Carrega de SO",
- "OS_Platform": "Plataforma de SO",
- "OS_Release": "Versió SO",
- "OS_Totalmem": "Memòria total",
- "OS_Type": "Tipus de SO",
- "OS_Uptime": "Temps d'activitat",
- "days": "days",
- "hours": "hores",
- "minutes": "minuts",
- "seconds": "segons",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Si",
- "no": "No",
- "accounts": "Comptes",
- "accounts-allowEmailChange": "Permet modificar correu electrònic",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Creat ",
- "verified": "Verificat",
- "active": "Actiu",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assignat Per",
- "requested-by": "Demanat Per",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Regles del tauler",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No hi han regles",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Moure al arxiu",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Afegeix",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Accepta",
+ "act-activity-notify": "Notificació d'activitat",
+ "act-addAttachment": "afegit l'adjunt __attachment__ a la targeta __card__ en la llista __list__ al canal __swimlane__ al tauler __tauler__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__tauler__",
+ "act-withCardTitle": "[__tauler__] __fitxa__",
+ "actions": "Accions",
+ "activities": "Activitats",
+ "activity": "Activitat",
+ "activity-added": "ha afegit %s a %s",
+ "activity-archived": "%s mogut al Arxiu",
+ "activity-attached": "ha adjuntat %s a %s",
+ "activity-created": "ha creat %s",
+ "activity-customfield-created": "camp personalitzat creat %s",
+ "activity-excluded": "ha exclòs %s de %s",
+ "activity-imported": "importat %s dins %s des de %s",
+ "activity-imported-board": "importat %s des de %s",
+ "activity-joined": "s'ha unit a %s",
+ "activity-moved": "ha mogut %s de %s a %s",
+ "activity-on": "en %s",
+ "activity-removed": "ha eliminat %s de %s",
+ "activity-sent": "ha enviat %s %s",
+ "activity-unjoined": "desassignat %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "Checklist afegida a %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "afegida entrada de checklist de '%s' a %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Afegeix",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Afegeix adjunt",
+ "add-board": "Afegeix Tauler",
+ "add-card": "Afegeix Fitxa",
+ "add-swimlane": "Afegix Carril de Natació",
+ "add-subtask": "Afegir Subtasca",
+ "add-checklist": "Afegeix checklist",
+ "add-checklist-item": "Afegeix un ítem al checklist",
+ "add-cover": "Afegeix coberta",
+ "add-label": "Afegeix etiqueta",
+ "add-list": "Afegeix llista",
+ "add-members": "Afegeix membres",
+ "added": "Afegit",
+ "addMemberPopup-title": "Membres",
+ "admin": "Administrador",
+ "admin-desc": "Pots veure i editar fitxes, eliminar usuaris, i canviar la configuració del tauler.",
+ "admin-announcement": "Alertes",
+ "admin-announcement-active": "Activar alertes del Sistema",
+ "admin-announcement-title": "Alertes d'administració",
+ "all-boards": "Tots els taulers",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Aplica",
+ "app-is-offline": "Carregant. Per favor, espereu. Actualitzar la pàgina pot comportar pèrdua de dades. Si la càrrega no funciona, comproveu que el servidor no s'ha aturat. ",
+ "archive": "Moure al arxiu",
+ "archive-all": "Moure tot al arxiu",
+ "archive-board": "Moure Tauler al Arxiu",
+ "archive-card": "Moure Fitxa al Arxiu",
+ "archive-list": "Moure Llista al Arxiu",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Moure selecció al Arxiu",
+ "archiveBoardPopup-title": "Moure el Tauler al Arxiu?",
+ "archived-items": "Desa",
+ "archived-boards": "Taulers al Arxiu",
+ "restore-board": "Restaura Tauler",
+ "no-archived-boards": "No hi han Taulers al Arxiu.",
+ "archives": "Desa",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assignar membre",
+ "attached": "adjuntat",
+ "attachment": "Adjunt",
+ "attachment-delete-pop": "L'esborrat d'un arxiu adjunt és permanent. No es pot desfer.",
+ "attachmentDeletePopup-title": "Esborrar adjunt?",
+ "attachments": "Adjunts",
+ "auto-watch": "Segueix automàticament el taulers quan són creats",
+ "avatar-too-big": "L'avatar es massa gran (70KM max)",
+ "back": "Enrere",
+ "board-change-color": "Canvia el color",
+ "board-nb-stars": "%s estrelles",
+ "board-not-found": "No s'ha trobat el tauler",
+ "board-private-info": "Aquest tauler serà <strong> privat.",
+ "board-public-info": "Aquest tauler serà <strong> públic.",
+ "boardChangeColorPopup-title": "Canvia fons del tauler",
+ "boardChangeTitlePopup-title": "Canvia el nom tauler",
+ "boardChangeVisibilityPopup-title": "Canvia visibilitat",
+ "boardChangeWatchPopup-title": "Canvia seguiment",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Taulers",
+ "board-view": "Visió del tauler",
+ "board-view-cal": "Calendari",
+ "board-view-swimlanes": "Carrils de Natació",
+ "board-view-lists": "Llistes",
+ "bucket-example": "Igual que “Bucket List”, per exemple",
+ "cancel": "Cancel·la",
+ "card-archived": "Aquesta fitxa ha estat moguda al Arxiu.",
+ "board-archived": "Aquest tauler s'ha mogut al arxiu",
+ "card-comments-title": "Aquesta fitxa té %s comentaris.",
+ "card-delete-notice": "L'esborrat és permanent. Perdreu totes les accions associades a aquesta fitxa.",
+ "card-delete-pop": "Totes les accions s'eliminaran de l'activitat i no podreu tornar a obrir la fitxa. No es pot desfer.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Finalitza",
+ "card-due-on": "Finalitza a",
+ "card-spent": "Temps Dedicat",
+ "card-edit-attachments": "Edita arxius adjunts",
+ "card-edit-custom-fields": "Editar camps personalitzats",
+ "card-edit-labels": "Edita etiquetes",
+ "card-edit-members": "Edita membres",
+ "card-labels-title": "Canvia les etiquetes de la fitxa",
+ "card-members-title": "Afegeix o eliminar membres del tauler des de la fitxa.",
+ "card-start": "Comença",
+ "card-start-on": "Comença a",
+ "cardAttachmentsPopup-title": "Adjunta des de",
+ "cardCustomField-datePopup-title": "Canviar data",
+ "cardCustomFieldsPopup-title": "Editar camps personalitzats",
+ "cardDeletePopup-title": "Esborrar fitxa?",
+ "cardDetailsActionsPopup-title": "Accions de fitxes",
+ "cardLabelsPopup-title": "Etiquetes",
+ "cardMembersPopup-title": "Membres",
+ "cardMorePopup-title": "Més",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Fitxes",
+ "cards-count": "Fitxes",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Fitxa",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Canvia",
+ "change-avatar": "Canvia Avatar",
+ "change-password": "Canvia la clau",
+ "change-permissions": "Canvia permisos",
+ "change-settings": "Canvia configuració",
+ "changeAvatarPopup-title": "Canvia Avatar",
+ "changeLanguagePopup-title": "Canvia idioma",
+ "changePasswordPopup-title": "Canvia la contrasenya",
+ "changePermissionsPopup-title": "Canvia permisos",
+ "changeSettingsPopup-title": "Canvia configuració",
+ "subtasks": "Subtasca",
+ "checklists": "Checklists",
+ "click-to-star": "Fes clic per destacar aquest tauler.",
+ "click-to-unstar": "Fes clic per deixar de destacar aquest tauler.",
+ "clipboard": "Portaretalls o estirar i amollar",
+ "close": "Tanca",
+ "close-board": "Tanca tauler",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "negre",
+ "color-blue": "blau",
+ "color-crimson": "carmesí",
+ "color-darkgreen": "verd fosc",
+ "color-gold": "daurat",
+ "color-gray": "gris",
+ "color-green": "verd",
+ "color-indigo": "índigo",
+ "color-lime": "llima",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "marina",
+ "color-orange": "taronja",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "rosa",
+ "color-plum": "pruna",
+ "color-purple": "púrpura",
+ "color-red": "vermell",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "plata",
+ "color-sky": "cel",
+ "color-slateblue": "slateblue",
+ "color-white": "blanc",
+ "color-yellow": "groc",
+ "unset-color": "Unset",
+ "comment": "Comentari",
+ "comment-placeholder": "Escriu un comentari",
+ "comment-only": "Només comentaris",
+ "comment-only-desc": "Només pots fer comentaris a les fitxes",
+ "no-comments": "Sense comentaris",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Ordinador",
+ "confirm-subtask-delete-dialog": "Esteu segur que voleu eliminar la subtasca?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copia l'enllaç de la ftixa al porta-retalls",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Cerca",
+ "copyCardPopup-title": "Copia la fitxa",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Títols de fitxa i Descripcions de destí en aquest format JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Títol de la primera fitxa\", \"description\":\"Descripció de la primera fitxa\"}, {\"title\":\"Títol de la segona fitxa\",\"description\":\"Descripció de la segona fitxa\"},{\"title\":\"Títol de l'última fitxa\",\"description\":\"Descripció de l'última fitxa\"} ]",
+ "create": "Crea",
+ "createBoardPopup-title": "Crea tauler",
+ "chooseBoardSourcePopup-title": "Importa Tauler",
+ "createLabelPopup-title": "Crea etiqueta",
+ "createCustomField": "Crear camp",
+ "createCustomFieldPopup-title": "Crear camp",
+ "current": "Actual",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "Llista d'opcions",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Camps Personalitzats",
+ "date": "Data",
+ "decline": "Declina",
+ "default-avatar": "Avatar per defecte",
+ "delete": "Esborra",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Esborra etiqueta",
+ "description": "Descripció",
+ "disambiguateMultiLabelPopup-title": "Desfe l'ambigüitat en les etiquetes",
+ "disambiguateMultiMemberPopup-title": "Desfe l'ambigüitat en els membres",
+ "discard": "Descarta",
+ "done": "Fet",
+ "download": "Descarrega",
+ "edit": "Edita",
+ "edit-avatar": "Canvia Avatar",
+ "edit-profile": "Edita el teu Perfil",
+ "edit-wip-limit": "Edita el Límit de Treball en Progrès",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Canvia data d'inici",
+ "editCardDueDatePopup-title": "Canvia data de finalització",
+ "editCustomFieldPopup-title": "Modificar camp",
+ "editCardSpentTimePopup-title": "Canvia temps dedicat",
+ "editLabelPopup-title": "Canvia etiqueta",
+ "editNotificationPopup-title": "Edita la notificació",
+ "editProfilePopup-title": "Edita teu Perfil",
+ "email": "Correu electrònic",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hola __user__,\n\nPer començar a utilitzar el servei, segueix l'enllaç següent.\n\n__url__\n\nGràcies.",
+ "email-fail": "Error enviant el correu",
+ "email-fail-text": "Error en intentar enviar e-mail",
+ "email-invalid": "Adreça de correu invàlida",
+ "email-invite": "Convida mitjançant correu electrònic",
+ "email-invite-subject": "__inviter__ t'ha convidat",
+ "email-invite-text": "Benvolgut __user__,\n\n __inviter__ t'ha convidat a participar al tauler \"__board__\" per col·laborar-hi.\n\nSegueix l'enllaç següent:\n\n __url__\n\n Gràcies.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hola __user__,\n \n per resetejar la teva contrasenya, segueix l'enllaç següent.\n \n __url__\n \n Gràcies.",
+ "email-sent": "Correu enviat",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hola __user__, \n\n per verificar el teu correu, segueix l'enllaç següent.\n\n __url__\n\n Gràcies.",
+ "enable-wip-limit": "Activa e Límit de Treball en Progrès",
+ "error-board-doesNotExist": "Aquest tauler no existeix",
+ "error-board-notAdmin": "Necessites ser administrador d'aquest tauler per dur a lloc aquest acció",
+ "error-board-notAMember": "Necessites ser membre d'aquest tauler per dur a terme aquesta acció",
+ "error-json-malformed": "El text no és JSON vàlid",
+ "error-json-schema": "La dades JSON no contenen la informació en el format correcte",
+ "error-list-doesNotExist": "La llista no existeix",
+ "error-user-doesNotExist": "L'usuari no existeix",
+ "error-user-notAllowSelf": "No et pots convidar a tu mateix",
+ "error-user-notCreated": "L'usuari no s'ha creat",
+ "error-username-taken": "Aquest usuari ja existeix",
+ "error-email-taken": "L'adreça de correu electrònic ja és en ús",
+ "export-board": "Exporta tauler",
+ "filter": "Filtre",
+ "filter-cards": "Fitxes de filtre",
+ "filter-clear": "Elimina filtre",
+ "filter-no-label": "Sense etiqueta",
+ "filter-no-member": "Sense membres",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filtra per",
+ "filter-on-desc": "Estau filtrant fitxes en aquest tauler. Feu clic aquí per editar el filtre.",
+ "filter-to-selection": "Filtra selecció",
+ "advanced-filter-label": "Filtre avançat",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Nom complet",
+ "header-logo-title": "Torna a la teva pàgina de taulers",
+ "hide-system-messages": "Oculta missatges del sistema",
+ "headerBarCreateBoardPopup-title": "Crea tauler",
+ "home": "Inici",
+ "import": "importa",
+ "link": "Enllaç",
+ "import-board": "Importa tauler",
+ "import-board-c": "Importa tauler",
+ "import-board-title-trello": "Importa tauler des de Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Estau segur que voleu esborrar aquesta checklist?",
+ "from-trello": "Des de Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "En el teu tauler Trello, ves a 'Menú', 'Més'.' Imprimir i Exportar', 'Exportar JSON', i copia el text resultant.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Aferra codi JSON vàlid aquí",
+ "import-map-members": "Mapeja el membres",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Revisa l'assignació de membres",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Selecciona un usuari",
+ "info": "Versió",
+ "initials": "Inicials",
+ "invalid-date": "Data invàlida",
+ "invalid-time": "Temps Invàlid",
+ "invalid-user": "Usuari invàlid",
+ "joined": "s'ha unit",
+ "just-invited": "Has estat convidat a aquest tauler",
+ "keyboard-shortcuts": "Dreceres de teclat",
+ "label-create": "Crea etiqueta",
+ "label-default": "%s etiqueta (per defecte)",
+ "label-delete-pop": "No es pot desfer. Això eliminarà aquesta etiqueta de totes les fitxes i destruirà la seva història.",
+ "labels": "Etiquetes",
+ "language": "Idioma",
+ "last-admin-desc": "No podeu canviar rols perquè ha d'haver-hi almenys un administrador.",
+ "leave-board": "Abandona tauler",
+ "leave-board-pop": "De debò voleu abandonar __boardTitle__? Se us eliminarà de totes les fitxes d'aquest tauler.",
+ "leaveBoardPopup-title": "Abandonar Tauler?",
+ "link-card": "Enllaç a aquesta fitxa",
+ "list-archive-cards": "Moure totes les fitxes en aquesta llista al Arxiu",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Mou totes les fitxes d'aquesta llista",
+ "list-select-cards": "Selecciona totes les fitxes d'aquesta llista",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Accions de la llista",
+ "swimlaneActionPopup-title": "Accions de Carril de Natació",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "importa una fitxa de Trello",
+ "listMorePopup-title": "Més",
+ "link-list": "Enllaça a aquesta llista",
+ "list-delete-pop": "Totes les accions seran esborrades de la llista d'activitats i no serà possible recuperar la llista",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Llistes",
+ "swimlanes": "Carrils de Natació",
+ "log-out": "Finalitza la sessió",
+ "log-in": "Ingresa",
+ "loginPopup-title": "Inicia sessió",
+ "memberMenuPopup-title": "Configura membres",
+ "members": "Membres",
+ "menu": "Menú",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Moure fitxa",
+ "moveCardToBottom-title": "Mou a la part inferior",
+ "moveCardToTop-title": "Mou a la part superior",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selecció",
+ "multi-selection-on": "Multi-Selecció està activada",
+ "muted": "En silenci",
+ "muted-info": "No seràs notificat dels canvis en aquest tauler",
+ "my-boards": "Els meus taulers",
+ "name": "Nom",
+ "no-archived-cards": "No hi ha fitxes a l'arxiu.",
+ "no-archived-lists": "No hi ha llistes al arxiu.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Sense resultats",
+ "normal": "Normal",
+ "normal-desc": "Podeu veure i editar fitxes. No podeu canviar la configuració.",
+ "not-accepted-yet": "La invitació no ha esta acceptada encara",
+ "notify-participate": "Rebre actualitzacions per a cada fitxa de la qual n'ets creador o membre",
+ "notify-watch": "Rebre actualitzacions per qualsevol tauler, llista o fitxa en observació",
+ "optional": "opcional",
+ "or": "o",
+ "page-maybe-private": "Aquesta pàgina és privada. Per veure-la <a href='%s'> entra </a>.",
+ "page-not-found": "Pàgina no trobada.",
+ "password": "Contrasenya",
+ "paste-or-dragdrop": "aferra, o estira i amolla la imatge (només imatge)",
+ "participating": "Participant",
+ "preview": "Vista prèvia",
+ "previewAttachedImagePopup-title": "Vista prèvia",
+ "previewClipboardImagePopup-title": "Vista prèvia",
+ "private": "Privat",
+ "private-desc": "Aquest tauler és privat. Només les persones afegides al tauler poden veure´l i editar-lo.",
+ "profile": "Perfil",
+ "public": "Públic",
+ "public-desc": "Aquest tauler és públic. És visible per a qualsevol persona amb l'enllaç i es mostrarà en els motors de cerca com Google. Només persones afegides al tauler poden editar-lo.",
+ "quick-access-description": "Inicia un tauler per afegir un accés directe en aquest barra",
+ "remove-cover": "Elimina coberta",
+ "remove-from-board": "Elimina del tauler",
+ "remove-label": "Elimina l'etiqueta",
+ "listDeletePopup-title": "Esborrar la llista?",
+ "remove-member": "Elimina membre",
+ "remove-member-from-card": "Elimina de la fitxa",
+ "remove-member-pop": "Eliminar __name__ (__username__) de __boardTitle__ ? El membre serà eliminat de totes les fitxes d'aquest tauler. Ells rebran una notificació.",
+ "removeMemberPopup-title": "Vols suprimir el membre?",
+ "rename": "Canvia el nom",
+ "rename-board": "Canvia el nom del tauler",
+ "restore": "Restaura",
+ "save": "Desa",
+ "search": "Cerca",
+ "rules": "Regles",
+ "search-cards": "Cerca títols de fitxa i descripcions en aquest tauler",
+ "search-example": "Text que cercar?",
+ "select-color": "Selecciona color",
+ "set-wip-limit-value": "Limita el màxim nombre de tasques en aquesta llista",
+ "setWipLimitPopup-title": "Configura el Límit de Treball en Progrès",
+ "shortcut-assign-self": "Assigna't la ftixa actual",
+ "shortcut-autocomplete-emoji": "Autocompleta emoji",
+ "shortcut-autocomplete-members": "Autocompleta membres",
+ "shortcut-clear-filters": "Elimina tots els filters",
+ "shortcut-close-dialog": "Tanca el diàleg",
+ "shortcut-filter-my-cards": "Filtra les meves fitxes",
+ "shortcut-show-shortcuts": "Mostra aquesta lista d'accessos directes",
+ "shortcut-toggle-filterbar": "Canvia la barra lateral del tauler",
+ "shortcut-toggle-sidebar": "Canvia Sidebar del Tauler",
+ "show-cards-minimum-count": "Mostra contador de fitxes si la llista en conté més de",
+ "sidebar-open": "Mostra barra lateral",
+ "sidebar-close": "Amaga barra lateral",
+ "signupPopup-title": "Crea un compte",
+ "star-board-title": "Fes clic per destacar aquest tauler. Es mostrarà a la part superior de la llista de taulers.",
+ "starred-boards": "Taulers destacats",
+ "starred-boards-description": "Els taulers destacats es mostraran a la part superior de la llista de taulers.",
+ "subscribe": "Subscriure",
+ "team": "Equip",
+ "this-board": "aquest tauler",
+ "this-card": "aquesta fitxa",
+ "spent-time-hours": "Temps dedicat (hores)",
+ "overtime-hours": "Temps de més (hores)",
+ "overtime": "Temps de més",
+ "has-overtime-cards": "Té fitxes amb temps de més",
+ "has-spenttime-cards": "Té fitxes amb temps dedicat",
+ "time": "Hora",
+ "title": "Títol",
+ "tracking": "En seguiment",
+ "tracking-info": "Seràs notificat per cada canvi a aquelles fitxes de les que n'eres creador o membre",
+ "type": "Tipus",
+ "unassign-member": "Desassignar membre",
+ "unsaved-description": "Tens una descripció sense desar.",
+ "unwatch": "Suprimeix observació",
+ "upload": "Puja",
+ "upload-avatar": "Actualitza avatar",
+ "uploaded-avatar": "Avatar actualitzat",
+ "username": "Nom d'Usuari",
+ "view-it": "Vist",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Observa",
+ "watching": "En observació",
+ "watching-info": "Seràs notificat de cada canvi en aquest tauler",
+ "welcome-board": "Tauler de benvinguda",
+ "welcome-swimlane": "Objectiu 1",
+ "welcome-list1": "Bàsics",
+ "welcome-list2": "Avançades",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Què vols fer?",
+ "wipLimitErrorPopup-title": "Límit de Treball en Progrès invàlid",
+ "wipLimitErrorPopup-dialog-pt1": "El nombre de tasques en esta llista és superior al límit de Treball en Progrès que heu definit.",
+ "wipLimitErrorPopup-dialog-pt2": "Si us plau mogui algunes taques fora d'aquesta llista, o configuri un límit de Treball en Progrès superior.",
+ "admin-panel": "Tauler d'administració",
+ "settings": "Configuració",
+ "people": "Persones",
+ "registration": "Registre",
+ "disable-self-registration": "Deshabilita Auto-Registre",
+ "invite": "Convida",
+ "invite-people": "Convida a persones",
+ "to-boards": "Al tauler(s)",
+ "email-addresses": "Adreça de correu",
+ "smtp-host-description": "L'adreça del vostre servidor SMTP.",
+ "smtp-port-description": "El port del vostre servidor SMTP.",
+ "smtp-tls-description": "Activa suport TLS pel servidor SMTP",
+ "smtp-host": "Servidor SMTP",
+ "smtp-port": "Port SMTP",
+ "smtp-username": "Nom d'usuari",
+ "smtp-password": "Contrasenya",
+ "smtp-tls": "Suport TLS",
+ "send-from": "De",
+ "send-smtp-test": "Envia't un correu electrònic de prova",
+ "invitation-code": "Codi d'invitació",
+ "email-invite-register-subject": "__inviter__ t'ha convidat",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Has enviat un missatge satisfactòriament",
+ "error-invitation-code-not-exist": "El codi d'invitació no existeix",
+ "error-notAuthorized": "No estau autoritzats per veure aquesta pàgina",
+ "outgoing-webhooks": "Webhooks sortints",
+ "outgoingWebhooksPopup-title": "Webhooks sortints",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "Nou Webook sortint",
+ "no-name": "Importa tauler des de Wekan",
+ "Node_version": "Versió Node",
+ "OS_Arch": "Arquitectura SO",
+ "OS_Cpus": "Plataforma SO",
+ "OS_Freemem": "Memòria lliure",
+ "OS_Loadavg": "Carrega de SO",
+ "OS_Platform": "Plataforma de SO",
+ "OS_Release": "Versió SO",
+ "OS_Totalmem": "Memòria total",
+ "OS_Type": "Tipus de SO",
+ "OS_Uptime": "Temps d'activitat",
+ "days": "days",
+ "hours": "hores",
+ "minutes": "minuts",
+ "seconds": "segons",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Si",
+ "no": "No",
+ "accounts": "Comptes",
+ "accounts-allowEmailChange": "Permet modificar correu electrònic",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Creat ",
+ "verified": "Verificat",
+ "active": "Actiu",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assignat Per",
+ "requested-by": "Demanat Per",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Regles del tauler",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No hi han regles",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Moure al arxiu",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Afegeix",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json
index 62d7342d..347c02cb 100644
--- a/i18n/cs.i18n.json
+++ b/i18n/cs.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Přijmout",
- "act-activity-notify": "Notifikace aktivit",
- "act-addAttachment": "přidal(a) přílohu __attachment__ na kartu __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-deleteAttachment": "smazal(a) přílohu __attachment__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-addSubtask": "přidal(a) podúkol __subtask__ na kartu __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-addLabel": "Přídán štítek __label__ na kartu __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-addedLabel": "Přídán štítek __label__ na kartu __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-removeLabel": "Odstraněn štítek __label__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-removedLabel": "Odstraněn štítek __label__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-addChecklist": "přidal(a) zaškrtávací seznam __checklist__ na kartu __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-addChecklistItem": "přidal(a) položku zaškrtávacího seznamu __checklistItem__ do zaškrtávacího seznamu __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-removeChecklist": "smazal(a) zaškrtávací seznam __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-removeChecklistItem": "smazal(a) položku zaškrtávacího seznamu __checklistItem__ ze zaškrtávacího seznamu __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-checkedItem": "zaškrtl(a) __checklistItem__ na zaškrtávacím seznamu __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-uncheckedItem": "zrušil(a) zaškrtnutí __checklistItem__ na zaškrtávacím seznamu __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-completeChecklist": "dokončil(a) zaškrtávací seznam __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-uncompleteChecklist": "zrušil(a) dokončení zaškrtávacího seznamu __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-addComment": "přidal(a) komentář na kartě __card__: __comment__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "přidal(a) tablo __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "přidal(a) kartu __card__ do sloupce __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "přidal(a) sloupec __list__ do tabla __board__",
- "act-addBoardMember": "přidal(a) člena __member__ do tabla __board__",
- "act-archivedBoard": "Tablo __board__ přesunuto do Archivu",
- "act-archivedCard": "Karta __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__ přesunuta do Archivu",
- "act-archivedList": "Sloupec __list__ ve swimlane __swimlane__ na tablu __board__ přesunut do Archivu",
- "act-archivedSwimlane": "Swimlane __swimlane__ na tablu __board__ přesunut do Archivu",
- "act-importBoard": "importoval(a) tablo __board__",
- "act-importCard": "importoval(a) karta __card__ do sloupce __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-importList": "importoval(a) sloupec __list__ do swimlane __swimlane__ na tablu __board__",
- "act-joinMember": "přidal(a) člena __member__ na kartu __card__ v seznamu __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "přesunul(a) kartu __card__ ze sloupce __oldList__ ve swimlane __oldSwimlane__ na tablu __oldBoard__ do sloupce __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-removeBoardMember": "odstranil(a) člena __member__ z tabla __board__",
- "act-restoredCard": "obnovil(a) kartu __card__ do sloupce __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-unjoinMember": "odstranil(a) člena __member__ z karty __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Akce",
- "activities": "Aktivity",
- "activity": "Aktivita",
- "activity-added": "%s přidáno k %s",
- "activity-archived": "%s bylo přesunuto do archivu",
- "activity-attached": "přiloženo %s k %s",
- "activity-created": "%s vytvořeno",
- "activity-customfield-created": "vytvořeno vlastní pole %s",
- "activity-excluded": "%s vyjmuto z %s",
- "activity-imported": "importován %s do %s z %s",
- "activity-imported-board": "importován %s z %s",
- "activity-joined": "spojen %s",
- "activity-moved": "%s přesunuto z %s do %s",
- "activity-on": "na %s",
- "activity-removed": "odstraněn %s z %s",
- "activity-sent": "%s posláno na %s",
- "activity-unjoined": "odpojen %s",
- "activity-subtask-added": "podúkol přidán do %s",
- "activity-checked-item": "dokončen %s v seznamu %s z %s",
- "activity-unchecked-item": "nedokončen %s v seznamu %s z %s",
- "activity-checklist-added": "přidán checklist do %s",
- "activity-checklist-removed": "odstraněn checklist z %s",
- "activity-checklist-completed": "dokončil(a) zaškrtávací seznam __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "activity-checklist-uncompleted": "nedokončen seznam %s z %s",
- "activity-checklist-item-added": "přidána položka checklist do '%s' v %s",
- "activity-checklist-item-removed": "odstraněna položka seznamu do '%s' v %s",
- "add": "Přidat",
- "activity-checked-item-card": "dokončen %s v seznamu %s",
- "activity-unchecked-item-card": "nedokončen %s v seznamu %s",
- "activity-checklist-completed-card": "dokončil(a) zaškrtávací seznam __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
- "activity-checklist-uncompleted-card": "nedokončený seznam %s",
- "add-attachment": "Přidat přílohu",
- "add-board": "Přidat tablo",
- "add-card": "Přidat kartu",
- "add-swimlane": "Přidat Swimlane",
- "add-subtask": "Přidat Podúkol",
- "add-checklist": "Přidat zaškrtávací seznam",
- "add-checklist-item": "Přidat položku do zaškrtávacího seznamu",
- "add-cover": "Přidat obal",
- "add-label": "Přidat štítek",
- "add-list": "Přidat sloupec",
- "add-members": "Přidat členy",
- "added": "Přidán",
- "addMemberPopup-title": "Členové",
- "admin": "Administrátor",
- "admin-desc": "Může zobrazovat a upravovat karty, mazat členy a měnit nastavení tabla.",
- "admin-announcement": "Oznámení",
- "admin-announcement-active": "Aktivní oznámení v celém systému",
- "admin-announcement-title": "Oznámení od administrátora",
- "all-boards": "Všechna tabla",
- "and-n-other-card": "A __count__ další karta(y)",
- "and-n-other-card_plural": "A __count__ dalších karet",
- "apply": "Použít",
- "app-is-offline": "Načítá se, prosím čekejte. Obnovení stránky způsobí ztrátu dat. Pokud se načítání nedaří, zkontrolujte prosím server.",
- "archive": "Přesunout do archivu",
- "archive-all": "Přesunout vše do archivu",
- "archive-board": "Přesunout tablo do archivu",
- "archive-card": "Přesunout kartu do archivu",
- "archive-list": "Přesunout seznam do archivu",
- "archive-swimlane": "Přesunout swimlane do archivu",
- "archive-selection": "Přesunout výběr do archivu",
- "archiveBoardPopup-title": "Přesunout tablo do archivu?",
- "archived-items": "Archiv",
- "archived-boards": "Tabla v archivu",
- "restore-board": "Obnovit tablo",
- "no-archived-boards": "V archivu nejsou žádná tabla.",
- "archives": "Archiv",
- "template": "Šablona",
- "templates": "Šablony",
- "assign-member": "Přiřadit člena",
- "attached": "přiloženo",
- "attachment": "Příloha",
- "attachment-delete-pop": "Smazání přílohy je trvalé. Nejde vrátit zpět.",
- "attachmentDeletePopup-title": "Smazat přílohu?",
- "attachments": "Přílohy",
- "auto-watch": "Automaticky sleduj tabla když jsou vytvořena",
- "avatar-too-big": "Avatar obrázek je příliš velký (70KB max)",
- "back": "Zpět",
- "board-change-color": "Změnit barvu",
- "board-nb-stars": "%s hvězdiček",
- "board-not-found": "Tablo nenalezeno",
- "board-private-info": "Toto tablo bude <strong>soukromé</strong>.",
- "board-public-info": "Toto tablo bude <strong>veřejné</strong>.",
- "boardChangeColorPopup-title": "Změnit pozadí tabla",
- "boardChangeTitlePopup-title": "Přejmenovat tablo",
- "boardChangeVisibilityPopup-title": "Upravit viditelnost",
- "boardChangeWatchPopup-title": "Změnit sledování",
- "boardMenuPopup-title": "Nastavení Tabla",
- "boards": "Tabla",
- "board-view": "Náhled tabla",
- "board-view-cal": "Kalendář",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Sloupce",
- "bucket-example": "Například \"O čem sním\"",
- "cancel": "Zrušit",
- "card-archived": "Karta byla přesunuta do archivu.",
- "board-archived": "Toto tablo je přesunuto do archivu.",
- "card-comments-title": "Tato karta má %s komentářů.",
- "card-delete-notice": "Smazání je trvalé. Přijdete o všechny akce asociované s touto kartou.",
- "card-delete-pop": "Všechny akce budou odstraněny z kanálu aktivity a nebude možné kartu obnovit. Toto nelze vrátit zpět.",
- "card-delete-suggest-archive": "Můžete přesunout kartu do archivu pro odstranění z tabla a zachovat aktivitu.",
- "card-due": "Termín",
- "card-due-on": "Do",
- "card-spent": "Strávený čas",
- "card-edit-attachments": "Upravit přílohy",
- "card-edit-custom-fields": "Upravit vlastní pole",
- "card-edit-labels": "Upravit štítky",
- "card-edit-members": "Upravit členy",
- "card-labels-title": "Změnit štítky karty.",
- "card-members-title": "Přidat nebo odstranit členy tohoto tabla z karty.",
- "card-start": "Start",
- "card-start-on": "Začít dne",
- "cardAttachmentsPopup-title": "Přiložit formulář",
- "cardCustomField-datePopup-title": "Změnit datum",
- "cardCustomFieldsPopup-title": "Upravit vlastní pole",
- "cardDeletePopup-title": "Smazat kartu?",
- "cardDetailsActionsPopup-title": "Akce karty",
- "cardLabelsPopup-title": "Štítky",
- "cardMembersPopup-title": "Členové",
- "cardMorePopup-title": "Více",
- "cardTemplatePopup-title": "Vytvořit šablonu",
- "cards": "Karty",
- "cards-count": "Karty",
- "casSignIn": "Přihlásit pomocí CAS",
- "cardType-card": "Karta",
- "cardType-linkedCard": "Propojená karta",
- "cardType-linkedBoard": "Propojené tablo",
- "change": "Změnit",
- "change-avatar": "Změnit avatar",
- "change-password": "Změnit heslo",
- "change-permissions": "Změnit oprávnění",
- "change-settings": "Změnit nastavení",
- "changeAvatarPopup-title": "Změnit avatar",
- "changeLanguagePopup-title": "Změnit jazyk",
- "changePasswordPopup-title": "Změnit heslo",
- "changePermissionsPopup-title": "Změnit oprávnění",
- "changeSettingsPopup-title": "Změnit nastavení",
- "subtasks": "Podúkol",
- "checklists": "Checklisty",
- "click-to-star": "Kliknutím přidat hvězdičku tomuto tablu.",
- "click-to-unstar": "Kliknutím odebrat hvězdičku tomuto tablu.",
- "clipboard": "Schránka nebo potáhnout a pustit",
- "close": "Zavřít",
- "close-board": "Zavřít tablo",
- "close-board-pop": "Budete moci obnovit tablo kliknutím na tlačítko \"Archiv\" v hlavním menu.",
- "color-black": "černá",
- "color-blue": "modrá",
- "color-crimson": "karmínová",
- "color-darkgreen": "tmavě zelená",
- "color-gold": "zlatá",
- "color-gray": "šedá",
- "color-green": "zelená",
- "color-indigo": "indigo",
- "color-lime": "světlezelená",
- "color-magenta": "purpurová",
- "color-mistyrose": "mistyrose",
- "color-navy": "tmavě modrá",
- "color-orange": "oranžová",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "růžová",
- "color-plum": "švestková",
- "color-purple": "fialová",
- "color-red": "červená",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "stříbrná",
- "color-sky": "nebeská",
- "color-slateblue": "slateblue",
- "color-white": "bílá",
- "color-yellow": "žlutá",
- "unset-color": "Nenastaveno",
- "comment": "Komentář",
- "comment-placeholder": "Text komentáře",
- "comment-only": "Pouze komentáře",
- "comment-only-desc": "Může přidávat komentáře pouze do karet.",
- "no-comments": "Žádné komentáře",
- "no-comments-desc": "Nemůže vidět komentáře a aktivity",
- "computer": "Počítač",
- "confirm-subtask-delete-dialog": "Opravdu chcete smazat tento podúkol?",
- "confirm-checklist-delete-dialog": "Opravdu chcete smazat tento checklist?",
- "copy-card-link-to-clipboard": "Kopírovat adresu karty do mezipaměti",
- "linkCardPopup-title": "Propojit kartu",
- "searchElementPopup-title": "Hledat",
- "copyCardPopup-title": "Kopírovat kartu",
- "copyChecklistToManyCardsPopup-title": "Kopírovat checklist do více karet",
- "copyChecklistToManyCardsPopup-instructions": "Názvy a popisy cílové karty v tomto formátu JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Nadpis první karty\", \"description\":\"Popis druhé karty\"}, {\"title\":\"Nadpis druhé karty\",\"description\":\"Popis druhé karty\"},{\"title\":\"Nadpis poslední kary\",\"description\":\"Popis poslední karty\"} ]",
- "create": "Vytvořit",
- "createBoardPopup-title": "Vytvořit tablo",
- "chooseBoardSourcePopup-title": "Importovat tablo",
- "createLabelPopup-title": "Vytvořit štítek",
- "createCustomField": "Vytvořit pole",
- "createCustomFieldPopup-title": "Vytvořit pole",
- "current": "Aktuální",
- "custom-field-delete-pop": "Nelze vrátit zpět. Toto odebere toto vlastní pole ze všech karet a zničí jeho historii.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Datum",
- "custom-field-dropdown": "Rozbalovací seznam",
- "custom-field-dropdown-none": "(prázdné)",
- "custom-field-dropdown-options": "Seznam možností",
- "custom-field-dropdown-options-placeholder": "Stiskněte enter pro přidání více možností",
- "custom-field-dropdown-unknown": "(neznámé)",
- "custom-field-number": "Číslo",
- "custom-field-text": "Text",
- "custom-fields": "Vlastní pole",
- "date": "Datum",
- "decline": "Zamítnout",
- "default-avatar": "Výchozí avatar",
- "delete": "Smazat",
- "deleteCustomFieldPopup-title": "Smazat vlastní pole",
- "deleteLabelPopup-title": "Smazat štítek?",
- "description": "Popis",
- "disambiguateMultiLabelPopup-title": "Dvojznačný štítek akce",
- "disambiguateMultiMemberPopup-title": "Dvojznačná akce člena",
- "discard": "Zahodit",
- "done": "Hotovo",
- "download": "Stáhnout",
- "edit": "Upravit",
- "edit-avatar": "Změnit avatar",
- "edit-profile": "Upravit profil",
- "edit-wip-limit": "Upravit WIP Limit",
- "soft-wip-limit": "Mírný WIP limit",
- "editCardStartDatePopup-title": "Změnit datum startu úkolu",
- "editCardDueDatePopup-title": "Změnit datum dokončení úkolu",
- "editCustomFieldPopup-title": "Upravit pole",
- "editCardSpentTimePopup-title": "Změnit strávený čas",
- "editLabelPopup-title": "Změnit štítek",
- "editNotificationPopup-title": "Změnit notifikace",
- "editProfilePopup-title": "Upravit profil",
- "email": "Email",
- "email-enrollAccount-subject": "Byl vytvořen účet na __siteName__",
- "email-enrollAccount-text": "Ahoj __user__,\n\nMůžeš začít používat službu kliknutím na odkaz níže.\n\n__url__\n\nDěkujeme.",
- "email-fail": "Odeslání emailu selhalo",
- "email-fail-text": "Chyba při pokusu o odeslání emailu",
- "email-invalid": "Neplatný email",
- "email-invite": "Pozvat pomocí emailu",
- "email-invite-subject": "__inviter__ odeslal pozvánku",
- "email-invite-text": "Ahoj __user__,\n\n__inviter__ tě přizval ke spolupráci na tablu \"__board__\".\n\nNásleduj prosím odkaz níže:\n\n__url__\n\nDěkujeme.",
- "email-resetPassword-subject": "Změň své heslo na __siteName__",
- "email-resetPassword-text": "Ahoj __user__,\n\nPro změnu hesla klikni na odkaz níže.\n\n__url__\n\nDěkujeme.",
- "email-sent": "Email byl odeslán",
- "email-verifyEmail-subject": "Ověř svou emailovou adresu na",
- "email-verifyEmail-text": "Ahoj __user__,\n\nPro ověření emailové adresy klikni na odkaz níže.\n\n__url__\n\nDěkujeme.",
- "enable-wip-limit": "Povolit WIP Limit",
- "error-board-doesNotExist": "Toto tablo neexistuje",
- "error-board-notAdmin": "K provedení změny musíš být administrátor tohoto tabla",
- "error-board-notAMember": "K provedení změny musíš být členem tohoto tabla",
- "error-json-malformed": "Tvůj text není validní JSON",
- "error-json-schema": "Tato JSON data neobsahují správné informace v platném formátu",
- "error-list-doesNotExist": "Tento sloupec ;neexistuje",
- "error-user-doesNotExist": "Tento uživatel neexistuje",
- "error-user-notAllowSelf": "Nemůžeš pozvat sám sebe",
- "error-user-notCreated": "Tento uživatel není vytvořen",
- "error-username-taken": "Toto uživatelské jméno již existuje",
- "error-email-taken": "Tento email byl již použit",
- "export-board": "Exportovat tablo",
- "filter": "Filtr",
- "filter-cards": "Filtrovat karty",
- "filter-clear": "Vyčistit filtr",
- "filter-no-label": "Žádný štítek",
- "filter-no-member": "Žádný člen",
- "filter-no-custom-fields": "Žádné vlastní pole",
- "filter-on": "Filtr je zapnut",
- "filter-on-desc": "Filtrujete karty tohoto tabla. Pro úpravu filtru klikni sem.",
- "filter-to-selection": "Filtrovat výběr",
- "advanced-filter-label": "Pokročilý filtr",
- "advanced-filter-description": "Pokročilý filtr dovoluje zapsat řetězec následujících operátorů: == != <= >= && || () Operátory jsou odděleny mezerou. Můžete filtrovat všechny vlastní pole zadáním jejich názvů nebo hodnot. Například: Pole1 == Hodnota1. Poznámka: Pokud pole nebo hodnoty obsahují mezery, je potřeba je obalit v jednoduchých uvozovkách. Například: 'Pole 1' == 'Hodnota 1'. Pro ignorovaní kontrolních znaků (' \\ /) je možné použít \\. Například Pole1 == I\\'m. Můžete také kombinovat více podmínek. Například P1 == H1 || P1 == H2. Obvykle jsou operátory interpretovány zleva doprava. Jejich pořadí můžete měnit pomocí závorek. Například: P1 == H1 && ( P2 == H2 || P2 == H3 )",
- "fullname": "Celé jméno",
- "header-logo-title": "Jit zpět na stránku s tably.",
- "hide-system-messages": "Skrýt systémové zprávy",
- "headerBarCreateBoardPopup-title": "Vytvořit tablo",
- "home": "Domů",
- "import": "Import",
- "link": "Propojit",
- "import-board": "Importovat tablo",
- "import-board-c": "Importovat tablo",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Importovat tablo z předchozího exportu",
- "import-sandstorm-backup-warning": "Nemažte data, která importujete z původního exportovaného tabla nebo Trello předtím, nežli zkontrolujete, jestli lze tuto část zavřít a znovu otevřít nebo jestli se Vám nezobrazuje chyba tabla, což znamená ztrátu dat.",
- "import-sandstorm-warning": "Importované tablo spaže všechny existující data v tablu a nahradí je importovaným tablem.",
- "from-trello": "Z Trella",
- "from-wekan": "Z předchozího exportu",
- "import-board-instruction-trello": "Na svém Trello tablu, otevři 'Menu', pak 'More', 'Print and Export', 'Export JSON', a zkopíruj výsledný text",
- "import-board-instruction-wekan": "Ve vašem tablu jděte do 'Menu', klikněte na 'Exportovat tablo' a zkopírujte text ze staženého souboru.",
- "import-board-instruction-about-errors": "Někdy import funguje i přestože dostáváte chyby při importování tabla, které se zobrazí na stránce Všechna tabla.",
- "import-json-placeholder": "Sem vlož validní JSON data",
- "import-map-members": "Mapovat členy",
- "import-members-map": "Toto importované tablo obsahuje několik osob. Prosím namapujte osoby z importu na místní uživatelské účty.",
- "import-show-user-mapping": "Zkontrolovat namapování členů",
- "import-user-select": "Vyberte existující uživatelský účet, kterého chcete použít pro tuto osobu",
- "importMapMembersAddPopup-title": "Zvolte osobu",
- "info": "Verze",
- "initials": "Iniciály",
- "invalid-date": "Neplatné datum",
- "invalid-time": "Neplatný čas",
- "invalid-user": "Neplatný uživatel",
- "joined": "spojeno",
- "just-invited": "Právě jsi byl pozván(a) do tohoto tabla",
- "keyboard-shortcuts": "Klávesové zkratky",
- "label-create": "Vytvořit štítek",
- "label-default": "%s štítek (výchozí)",
- "label-delete-pop": "Nelze vrátit zpět. Toto odebere tento štítek ze všech karet a zničí jeho historii.",
- "labels": "Štítky",
- "language": "Jazyk",
- "last-admin-desc": "Nelze změnit role, protože musí existovat alespoň jeden administrátor.",
- "leave-board": "Opustit tablo",
- "leave-board-pop": "Opravdu chcete opustit tablo __boardTitle__? Odstraníte se tím i ze všech karet v tomto tablu.",
- "leaveBoardPopup-title": "Opustit tablo?",
- "link-card": "Odkázat na tuto kartu",
- "list-archive-cards": "Přesunout všechny karty v tomto seznamu do archivu.",
- "list-archive-cards-pop": "Toto odstraní z tabla všechny karty z tohoto seznamu. Pro zobrazení karet v Archivu a jejich opětovné obnovení, klikni v \"Menu\" > \"Archiv\".",
- "list-move-cards": "Přesunout všechny karty v tomto sloupci",
- "list-select-cards": "Vybrat všechny karty v tomto sloupci",
- "set-color-list": "Nastavit barvu",
- "listActionPopup-title": "Vypsat akce",
- "swimlaneActionPopup-title": "Akce swimlane",
- "swimlaneAddPopup-title": "Přidat swimlane dolů",
- "listImportCardPopup-title": "Importovat Trello kartu",
- "listMorePopup-title": "Více",
- "link-list": "Odkaz na tento sloupec",
- "list-delete-pop": "Všechny akce budou odstraněny z kanálu aktivity a nebude možné sloupec obnovit. Toto nelze vrátit zpět.",
- "list-delete-suggest-archive": "Seznam můžete přesunout do archivu, abyste jej odstranili z tabla a zachovali si svou aktivitu.",
- "lists": "Sloupce",
- "swimlanes": "Swimlanes",
- "log-out": "Odhlásit",
- "log-in": "Přihlásit",
- "loginPopup-title": "Přihlásit",
- "memberMenuPopup-title": "Nastavení uživatele",
- "members": "Členové",
- "menu": "Menu",
- "move-selection": "Přesunout výběr",
- "moveCardPopup-title": "Přesunout kartu",
- "moveCardToBottom-title": "Přesunout dolu",
- "moveCardToTop-title": "Přesunout nahoru",
- "moveSelectionPopup-title": "Přesunout výběr",
- "multi-selection": "Multi-výběr",
- "multi-selection-on": "Multi-výběr je zapnut",
- "muted": "Umlčeno",
- "muted-info": "Nikdy nedostanete oznámení o změně v tomto tablu.",
- "my-boards": "Moje tabla",
- "name": "Jméno",
- "no-archived-cards": "V archivu nejsou žádné karty.",
- "no-archived-lists": "V archivu nejsou žádné seznamy.",
- "no-archived-swimlanes": "V archivu nejsou žádné swimlanes.",
- "no-results": "Žádné výsledky",
- "normal": "Normální",
- "normal-desc": "Může zobrazovat a upravovat karty. Nemůže měnit nastavení.",
- "not-accepted-yet": "Pozvánka ještě nebyla přijmuta",
- "notify-participate": "Dostane aktualizace do všech karet, ve kterých se účastní jako tvůrce nebo člen",
- "notify-watch": "Dostane aktualitace to všech tabel, sloupců nebo karet, které sledujete",
- "optional": "volitelný",
- "or": "nebo",
- "page-maybe-private": "Tato stránka může být soukromá. Můžete ji zobrazit po <a href='%s'>přihlášení</a>.",
- "page-not-found": "Stránka nenalezena.",
- "password": "Heslo",
- "paste-or-dragdrop": "vložit, nebo přetáhnout a pustit soubor obrázku (pouze obrázek)",
- "participating": "Zúčastnění",
- "preview": "Náhled",
- "previewAttachedImagePopup-title": "Náhled",
- "previewClipboardImagePopup-title": "Náhled",
- "private": "Soukromý",
- "private-desc": "Toto tablo je soukromé. Pouze vybraní uživatelé ho mohou zobrazit a upravovat.",
- "profile": "Profil",
- "public": "Veřejný",
- "public-desc": "Toto tablo je veřejné. Je viditelné pro každého, kdo na něj má odkaz a bude zobrazeno ve vyhledávačích jako je Google. Pouze vybraní uživatelé ho mohou upravovat.",
- "quick-access-description": "Pro přidání odkazu do této lišty označ tablo hvězdičkou.",
- "remove-cover": "Odstranit obal",
- "remove-from-board": "Odstranit z tabla",
- "remove-label": "Odstranit štítek",
- "listDeletePopup-title": "Smazat sloupec?",
- "remove-member": "Odebrat uživatele",
- "remove-member-from-card": "Odstranit z karty",
- "remove-member-pop": "Odstranit __name__ (__username__) z __boardTitle__? Uživatel bude odebrán ze všech karet na tomto tablu. Na tuto skutečnost bude upozorněn.",
- "removeMemberPopup-title": "Odstranit člena?",
- "rename": "Přejmenovat",
- "rename-board": "Přejmenovat tablo",
- "restore": "Obnovit",
- "save": "Uložit",
- "search": "Hledat",
- "rules": "Pravidla",
- "search-cards": "Hledat nadpisy a popisy karet v tomto tablu",
- "search-example": "Hledaný text",
- "select-color": "Vybrat barvu",
- "set-wip-limit-value": "Nastaví limit pro maximální počet úkolů ve sloupci.",
- "setWipLimitPopup-title": "Nastavit WIP Limit",
- "shortcut-assign-self": "Přiřadit sebe k aktuální kartě",
- "shortcut-autocomplete-emoji": "Automatické dokončování emoji",
- "shortcut-autocomplete-members": "Automatický výběr uživatel",
- "shortcut-clear-filters": "Vyčistit všechny filtry",
- "shortcut-close-dialog": "Zavřít dialog",
- "shortcut-filter-my-cards": "Filtrovat mé karty",
- "shortcut-show-shortcuts": "Otevřít tento seznam odkazů",
- "shortcut-toggle-filterbar": "Přepnout lištu filtrování",
- "shortcut-toggle-sidebar": "Přepnout lištu tabla",
- "show-cards-minimum-count": "Zobrazit počet karet pokud sloupec obsahuje více než",
- "sidebar-open": "Otevřít boční panel",
- "sidebar-close": "Zavřít boční panel",
- "signupPopup-title": "Vytvořit účet",
- "star-board-title": "Kliknutím přidat tablu hvězdičku. Poté bude zobrazeno nahoře.",
- "starred-boards": "Tabla s hvězdičkou",
- "starred-boards-description": "Tabla s hvězdičkou jsou zobrazena nahoře.",
- "subscribe": "Odebírat",
- "team": "Tým",
- "this-board": "toto tablo",
- "this-card": "tuto kartu",
- "spent-time-hours": "Strávený čas (hodiny)",
- "overtime-hours": "Přesčas (hodiny)",
- "overtime": "Přesčas",
- "has-overtime-cards": "Obsahuje karty s přesčasy",
- "has-spenttime-cards": "Obsahuje karty se stráveným časem",
- "time": "Čas",
- "title": "Název",
- "tracking": "Pozorující",
- "tracking-info": "Budete informováni o všech změnách v kartách, u kterých jste tvůrce nebo člen.",
- "type": "Typ",
- "unassign-member": "Vyřadit člena",
- "unsaved-description": "Popis neni uložen.",
- "unwatch": "Přestat sledovat",
- "upload": "Nahrát",
- "upload-avatar": "Nahrát avatar",
- "uploaded-avatar": "Avatar nahrán",
- "username": "Uživatelské jméno",
- "view-it": "Zobrazit",
- "warn-list-archived": "varování: tato karta je v seznamu v Archivu",
- "watch": "Sledovat",
- "watching": "Sledující",
- "watching-info": "Bude vám oznámena každá změna v tomto tablu",
- "welcome-board": "Uvítací tablo",
- "welcome-swimlane": "Milník 1",
- "welcome-list1": "Základní",
- "welcome-list2": "Pokročilé",
- "card-templates-swimlane": "Šablony Karty",
- "list-templates-swimlane": "Šablony Sloupce",
- "board-templates-swimlane": "Šablony Tabla",
- "what-to-do": "Co chcete dělat?",
- "wipLimitErrorPopup-title": "Neplatný WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "Počet úkolů v tomto sloupci je vyšší než definovaný WIP limit.",
- "wipLimitErrorPopup-dialog-pt2": "Přesuňte prosím některé úkoly mimo tento sloupec, nebo nastavte vyšší WIP limit.",
- "admin-panel": "Administrátorský panel",
- "settings": "Nastavení",
- "people": "Lidé",
- "registration": "Registrace",
- "disable-self-registration": "Vypnout svévolnou registraci",
- "invite": "Pozvánka",
- "invite-people": "Pozvat lidi",
- "to-boards": "Do tabel",
- "email-addresses": "Emailové adresy",
- "smtp-host-description": "Adresa SMTP serveru, který zpracovává vaše emaily.",
- "smtp-port-description": "Port, který používá Váš SMTP server pro odchozí emaily.",
- "smtp-tls-description": "Zapnout TLS podporu pro SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Uživatelské jméno",
- "smtp-password": "Heslo",
- "smtp-tls": "podpora TLS",
- "send-from": "Od",
- "send-smtp-test": "Poslat si zkušební email.",
- "invitation-code": "Kód pozvánky",
- "email-invite-register-subject": "__inviter__ odeslal pozvánku",
- "email-invite-register-text": "Ahoj __user__,\n\n__inviter__ tě přizval do kanban boardu ke spolupráci.\n\nNásleduj prosím odkaz níže:\n\n__url__\n\nKód Tvé pozvánky je: __icode__\n\nDěkujeme.",
- "email-smtp-test-subject": "E-mail testující SMTP",
- "email-smtp-test-text": "Email byl úspěšně odeslán",
- "error-invitation-code-not-exist": "Kód pozvánky neexistuje.",
- "error-notAuthorized": "Nejste autorizován k prohlížení této stránky.",
- "outgoing-webhooks": "Odchozí Webhooky",
- "outgoingWebhooksPopup-title": "Odchozí Webhooky",
- "boardCardTitlePopup-title": "Filtr názvů karet",
- "new-outgoing-webhook": "Nové odchozí Webhooky",
- "no-name": "(Neznámé)",
- "Node_version": "Node verze",
- "OS_Arch": "OS Architektura",
- "OS_Cpus": "OS Počet CPU",
- "OS_Freemem": "OS Volná paměť",
- "OS_Loadavg": "OS Průměrná zátěž systém",
- "OS_Platform": "Platforma OS",
- "OS_Release": "Verze OS",
- "OS_Totalmem": "OS Celková paměť",
- "OS_Type": "Typ OS",
- "OS_Uptime": "OS Doba běhu systému",
- "days": "dní",
- "hours": "hodin",
- "minutes": "minut",
- "seconds": "sekund",
- "show-field-on-card": "Ukázat toto pole na kartě",
- "automatically-field-on-card": "Automaticky vytvořit pole na všech kartách",
- "showLabel-field-on-card": "Ukázat štítek pole na minikartě",
- "yes": "Ano",
- "no": "Ne",
- "accounts": "Účty",
- "accounts-allowEmailChange": "Povolit změnu Emailu",
- "accounts-allowUserNameChange": "Povolit změnu uživatelského jména",
- "createdAt": "Vytvořeno v",
- "verified": "Ověřen",
- "active": "Aktivní",
- "card-received": "Přijato",
- "card-received-on": "Přijaté v",
- "card-end": "Konec",
- "card-end-on": "Končí v",
- "editCardReceivedDatePopup-title": "Změnit datum přijetí",
- "editCardEndDatePopup-title": "Změnit datum konce",
- "setCardColorPopup-title": "Nastav barvu",
- "setCardActionsColorPopup-title": "Vyber barvu",
- "setSwimlaneColorPopup-title": "Vyber barvu",
- "setListColorPopup-title": "Vyber barvu",
- "assigned-by": "Přidělil(a)",
- "requested-by": "Vyžádal(a)",
- "board-delete-notice": "Smazání je trvalé. Přijdete o všechny sloupce, karty a akce spojené s tímto tablem.",
- "delete-board-confirm-popup": "Všechny sloupce, štítky a aktivity budou smazány a obsah tabla nebude možné obnovit. Toto nelze vrátit zpět.",
- "boardDeletePopup-title": "Smazat tablo?",
- "delete-board": "Smazat tablo",
- "default-subtasks-board": "Podúkoly pro tablo __board__",
- "default": "Výchozí",
- "queue": "Fronta",
- "subtask-settings": "Nastavení podúkolů",
- "boardSubtaskSettingsPopup-title": "Nastavení podúkolů tabla",
- "show-subtasks-field": "Karty mohou mít podúkoly",
- "deposit-subtasks-board": "Vložit podúkoly do tohoto tabla",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Ukázat předka na minikartě",
- "prefix-with-full-path": "Prefix s celou cestou",
- "prefix-with-parent": "Prefix s předkem",
- "subtext-with-full-path": "Podtext s celou cestou",
- "subtext-with-parent": "Podtext s předkem",
- "change-card-parent": "Změnit rodiče karty",
- "parent-card": "Rodičovská karta",
- "source-board": "Zdrojové tablo",
- "no-parent": "Nezobrazovat rodiče",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "přidán štítek '%s'",
- "activity-removed-label-card": "odstraněn štítek '%s'",
- "activity-delete-attach-card": "odstraněna příloha",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Pravidlo",
- "r-add-trigger": "Přidat spoštěč",
- "r-add-action": "Přidat akci",
- "r-board-rules": "Pravidla Tabla",
- "r-add-rule": "Přidat pravidlo",
- "r-view-rule": "Zobrazit pravidlo",
- "r-delete-rule": "Smazat pravidlo",
- "r-new-rule-name": "Nový název pravidla",
- "r-no-rules": "Žádná pravidla",
- "r-when-a-card": "Pokud karta",
- "r-is": "je",
- "r-is-moved": "je přesunuto",
- "r-added-to": "přidáno do",
- "r-removed-from": "Odstraněno z",
- "r-the-board": "tablo",
- "r-list": "sloupce",
- "set-filter": "Nastavit filtr",
- "r-moved-to": "Přesunuto do",
- "r-moved-from": "Přesunuto z",
- "r-archived": "Přesunuto do archivu",
- "r-unarchived": "Obnoveno z archivu",
- "r-a-card": "karta",
- "r-when-a-label-is": "Pokud nějaký štítek je",
- "r-when-the-label": "Pokud tento štítek je",
- "r-list-name": "název seznamu",
- "r-when-a-member": "Pokud nějaký člen je",
- "r-when-the-member": "Pokud tento člen je",
- "r-name": "jméno",
- "r-when-a-attach": "Pokud je nějaká příloha",
- "r-when-a-checklist": "Když zaškrtávací seznam je",
- "r-when-the-checklist": "Když zaškrtávací seznam",
- "r-completed": "Dokončeno",
- "r-made-incomplete": "Vytvořeno nehotové",
- "r-when-a-item": "Když položka zaškrtávacího seznamu je",
- "r-when-the-item": "Když položka zaškrtávacího seznamu",
- "r-checked": "Zaškrtnuto",
- "r-unchecked": "Odškrtnuto",
- "r-move-card-to": "Přesunout kartu do",
- "r-top-of": "Začátek",
- "r-bottom-of": "Spodek",
- "r-its-list": "toho sloupce",
- "r-archive": "Přesunout do archivu",
- "r-unarchive": "Obnovit z archivu",
- "r-card": "karta",
- "r-add": "Přidat",
- "r-remove": "Odstranit",
- "r-label": "štítek",
- "r-member": "člen",
- "r-remove-all": "Odstranit všechny členy z této karty",
- "r-set-color": "Nastav barvu na",
- "r-checklist": "zaškrtávací seznam",
- "r-check-all": "Zaškrtnout vše",
- "r-uncheck-all": "Odškrtnout vše",
- "r-items-check": "položky zaškrtávacího seznamu",
- "r-check": "Označit",
- "r-uncheck": "Odznačit",
- "r-item": "Položka",
- "r-of-checklist": "ze zaškrtávacího seznamu",
- "r-send-email": "Odeslat e-mail",
- "r-to": "komu",
- "r-subject": "předmět",
- "r-rule-details": "Podrobnosti pravidla",
- "r-d-move-to-top-gen": "Přesunout kartu na začátek toho sloupce",
- "r-d-move-to-top-spec": "Přesunout kartu na začátek sloupce",
- "r-d-move-to-bottom-gen": "Přesunout kartu na konec sloupce",
- "r-d-move-to-bottom-spec": "Přesunout kartu na konec sloupce",
- "r-d-send-email": "Odeslat email",
- "r-d-send-email-to": "komu",
- "r-d-send-email-subject": "předmět",
- "r-d-send-email-message": "zpráva",
- "r-d-archive": "Přesunout kartu do archivu",
- "r-d-unarchive": "Obnovit kartu z archivu",
- "r-d-add-label": "Přidat štítek",
- "r-d-remove-label": "Odstranit štítek",
- "r-create-card": "Vytvořit novou kartu",
- "r-in-list": "v seznamu",
- "r-in-swimlane": "ve swimlane",
- "r-d-add-member": "Přidat člena",
- "r-d-remove-member": "Odstranit člena",
- "r-d-remove-all-member": "Odstranit všechny členy",
- "r-d-check-all": "Označit všechny položky na seznamu",
- "r-d-uncheck-all": "Odznačit všechny položky na seznamu",
- "r-d-check-one": "Označit položku",
- "r-d-uncheck-one": "Odznačit položku",
- "r-d-check-of-list": "ze zaškrtávacího seznamu",
- "r-d-add-checklist": "Přidat zaškrtávací seznam",
- "r-d-remove-checklist": "Odstranit zaškrtávací seznam",
- "r-by": "by",
- "r-add-checklist": "Přidat zaškrtávací seznam",
- "r-with-items": "s položkami",
- "r-items-list": "položka1,položka2,položka3",
- "r-add-swimlane": "Přidat swimlane",
- "r-swimlane-name": "Název swimlane",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "Když je karta přesunuta do jiného sloupce",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Metoda autentizace",
- "authentication-type": "Typ autentizace",
- "custom-product-name": "Vlastní název produktu",
- "layout": "Uspořádání",
- "hide-logo": "Skrýt logo",
- "add-custom-html-after-body-start": "Přidej vlastní HTML za <body>",
- "add-custom-html-before-body-end": "Přidej vlastní HTML před </body>",
- "error-undefined": "Něco se pokazilo",
- "error-ldap-login": "Během přihlašování nastala chyba",
- "display-authentication-method": "Zobraz způsob ověřování",
- "default-authentication-method": "Zobraz způsob ověřování",
- "duplicate-board": "Duplikovat tablo",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Přijmout",
+ "act-activity-notify": "Notifikace aktivit",
+ "act-addAttachment": "přidal(a) přílohu __attachment__ na kartu __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-deleteAttachment": "smazal(a) přílohu __attachment__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-addSubtask": "přidal(a) podúkol __subtask__ na kartu __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-addLabel": "Přídán štítek __label__ na kartu __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-addedLabel": "Přídán štítek __label__ na kartu __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-removeLabel": "Odstraněn štítek __label__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-removedLabel": "Odstraněn štítek __label__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-addChecklist": "přidal(a) zaškrtávací seznam __checklist__ na kartu __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-addChecklistItem": "přidal(a) položku zaškrtávacího seznamu __checklistItem__ do zaškrtávacího seznamu __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-removeChecklist": "smazal(a) zaškrtávací seznam __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-removeChecklistItem": "smazal(a) položku zaškrtávacího seznamu __checklistItem__ ze zaškrtávacího seznamu __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-checkedItem": "zaškrtl(a) __checklistItem__ na zaškrtávacím seznamu __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-uncheckedItem": "zrušil(a) zaškrtnutí __checklistItem__ na zaškrtávacím seznamu __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-completeChecklist": "dokončil(a) zaškrtávací seznam __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-uncompleteChecklist": "zrušil(a) dokončení zaškrtávacího seznamu __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-addComment": "přidal(a) komentář na kartě __card__: __comment__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "přidal(a) tablo __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "přidal(a) kartu __card__ do sloupce __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "přidal(a) sloupec __list__ do tabla __board__",
+ "act-addBoardMember": "přidal(a) člena __member__ do tabla __board__",
+ "act-archivedBoard": "Tablo __board__ přesunuto do Archivu",
+ "act-archivedCard": "Karta __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__ přesunuta do Archivu",
+ "act-archivedList": "Sloupec __list__ ve swimlane __swimlane__ na tablu __board__ přesunut do Archivu",
+ "act-archivedSwimlane": "Swimlane __swimlane__ na tablu __board__ přesunut do Archivu",
+ "act-importBoard": "importoval(a) tablo __board__",
+ "act-importCard": "importoval(a) karta __card__ do sloupce __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-importList": "importoval(a) sloupec __list__ do swimlane __swimlane__ na tablu __board__",
+ "act-joinMember": "přidal(a) člena __member__ na kartu __card__ v seznamu __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "přesunul(a) kartu __card__ ze sloupce __oldList__ ve swimlane __oldSwimlane__ na tablu __oldBoard__ do sloupce __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-removeBoardMember": "odstranil(a) člena __member__ z tabla __board__",
+ "act-restoredCard": "obnovil(a) kartu __card__ do sloupce __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-unjoinMember": "odstranil(a) člena __member__ z karty __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Akce",
+ "activities": "Aktivity",
+ "activity": "Aktivita",
+ "activity-added": "%s přidáno k %s",
+ "activity-archived": "%s bylo přesunuto do archivu",
+ "activity-attached": "přiloženo %s k %s",
+ "activity-created": "%s vytvořeno",
+ "activity-customfield-created": "vytvořeno vlastní pole %s",
+ "activity-excluded": "%s vyjmuto z %s",
+ "activity-imported": "importován %s do %s z %s",
+ "activity-imported-board": "importován %s z %s",
+ "activity-joined": "spojen %s",
+ "activity-moved": "%s přesunuto z %s do %s",
+ "activity-on": "na %s",
+ "activity-removed": "odstraněn %s z %s",
+ "activity-sent": "%s posláno na %s",
+ "activity-unjoined": "odpojen %s",
+ "activity-subtask-added": "podúkol přidán do %s",
+ "activity-checked-item": "dokončen %s v seznamu %s z %s",
+ "activity-unchecked-item": "nedokončen %s v seznamu %s z %s",
+ "activity-checklist-added": "přidán checklist do %s",
+ "activity-checklist-removed": "odstraněn checklist z %s",
+ "activity-checklist-completed": "dokončil(a) zaškrtávací seznam __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "activity-checklist-uncompleted": "nedokončen seznam %s z %s",
+ "activity-checklist-item-added": "přidána položka checklist do '%s' v %s",
+ "activity-checklist-item-removed": "odstraněna položka seznamu do '%s' v %s",
+ "add": "Přidat",
+ "activity-checked-item-card": "dokončen %s v seznamu %s",
+ "activity-unchecked-item-card": "nedokončen %s v seznamu %s",
+ "activity-checklist-completed-card": "dokončil(a) zaškrtávací seznam __checklist__ na kartě __card__ ve sloupci __list__ ve swimlane __swimlane__ na tablu __board__",
+ "activity-checklist-uncompleted-card": "nedokončený seznam %s",
+ "add-attachment": "Přidat přílohu",
+ "add-board": "Přidat tablo",
+ "add-card": "Přidat kartu",
+ "add-swimlane": "Přidat Swimlane",
+ "add-subtask": "Přidat Podúkol",
+ "add-checklist": "Přidat zaškrtávací seznam",
+ "add-checklist-item": "Přidat položku do zaškrtávacího seznamu",
+ "add-cover": "Přidat obal",
+ "add-label": "Přidat štítek",
+ "add-list": "Přidat sloupec",
+ "add-members": "Přidat členy",
+ "added": "Přidán",
+ "addMemberPopup-title": "Členové",
+ "admin": "Administrátor",
+ "admin-desc": "Může zobrazovat a upravovat karty, mazat členy a měnit nastavení tabla.",
+ "admin-announcement": "Oznámení",
+ "admin-announcement-active": "Aktivní oznámení v celém systému",
+ "admin-announcement-title": "Oznámení od administrátora",
+ "all-boards": "Všechna tabla",
+ "and-n-other-card": "A __count__ další karta(y)",
+ "and-n-other-card_plural": "A __count__ dalších karet",
+ "apply": "Použít",
+ "app-is-offline": "Načítá se, prosím čekejte. Obnovení stránky způsobí ztrátu dat. Pokud se načítání nedaří, zkontrolujte prosím server.",
+ "archive": "Přesunout do archivu",
+ "archive-all": "Přesunout vše do archivu",
+ "archive-board": "Přesunout tablo do archivu",
+ "archive-card": "Přesunout kartu do archivu",
+ "archive-list": "Přesunout seznam do archivu",
+ "archive-swimlane": "Přesunout swimlane do archivu",
+ "archive-selection": "Přesunout výběr do archivu",
+ "archiveBoardPopup-title": "Přesunout tablo do archivu?",
+ "archived-items": "Archiv",
+ "archived-boards": "Tabla v archivu",
+ "restore-board": "Obnovit tablo",
+ "no-archived-boards": "V archivu nejsou žádná tabla.",
+ "archives": "Archiv",
+ "template": "Šablona",
+ "templates": "Šablony",
+ "assign-member": "Přiřadit člena",
+ "attached": "přiloženo",
+ "attachment": "Příloha",
+ "attachment-delete-pop": "Smazání přílohy je trvalé. Nejde vrátit zpět.",
+ "attachmentDeletePopup-title": "Smazat přílohu?",
+ "attachments": "Přílohy",
+ "auto-watch": "Automaticky sleduj tabla když jsou vytvořena",
+ "avatar-too-big": "Avatar obrázek je příliš velký (70KB max)",
+ "back": "Zpět",
+ "board-change-color": "Změnit barvu",
+ "board-nb-stars": "%s hvězdiček",
+ "board-not-found": "Tablo nenalezeno",
+ "board-private-info": "Toto tablo bude <strong>soukromé</strong>.",
+ "board-public-info": "Toto tablo bude <strong>veřejné</strong>.",
+ "boardChangeColorPopup-title": "Změnit pozadí tabla",
+ "boardChangeTitlePopup-title": "Přejmenovat tablo",
+ "boardChangeVisibilityPopup-title": "Upravit viditelnost",
+ "boardChangeWatchPopup-title": "Změnit sledování",
+ "boardMenuPopup-title": "Nastavení Tabla",
+ "boards": "Tabla",
+ "board-view": "Náhled tabla",
+ "board-view-cal": "Kalendář",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Sloupce",
+ "bucket-example": "Například \"O čem sním\"",
+ "cancel": "Zrušit",
+ "card-archived": "Karta byla přesunuta do archivu.",
+ "board-archived": "Toto tablo je přesunuto do archivu.",
+ "card-comments-title": "Tato karta má %s komentářů.",
+ "card-delete-notice": "Smazání je trvalé. Přijdete o všechny akce asociované s touto kartou.",
+ "card-delete-pop": "Všechny akce budou odstraněny z kanálu aktivity a nebude možné kartu obnovit. Toto nelze vrátit zpět.",
+ "card-delete-suggest-archive": "Můžete přesunout kartu do archivu pro odstranění z tabla a zachovat aktivitu.",
+ "card-due": "Termín",
+ "card-due-on": "Do",
+ "card-spent": "Strávený čas",
+ "card-edit-attachments": "Upravit přílohy",
+ "card-edit-custom-fields": "Upravit vlastní pole",
+ "card-edit-labels": "Upravit štítky",
+ "card-edit-members": "Upravit členy",
+ "card-labels-title": "Změnit štítky karty.",
+ "card-members-title": "Přidat nebo odstranit členy tohoto tabla z karty.",
+ "card-start": "Start",
+ "card-start-on": "Začít dne",
+ "cardAttachmentsPopup-title": "Přiložit formulář",
+ "cardCustomField-datePopup-title": "Změnit datum",
+ "cardCustomFieldsPopup-title": "Upravit vlastní pole",
+ "cardDeletePopup-title": "Smazat kartu?",
+ "cardDetailsActionsPopup-title": "Akce karty",
+ "cardLabelsPopup-title": "Štítky",
+ "cardMembersPopup-title": "Členové",
+ "cardMorePopup-title": "Více",
+ "cardTemplatePopup-title": "Vytvořit šablonu",
+ "cards": "Karty",
+ "cards-count": "Karty",
+ "casSignIn": "Přihlásit pomocí CAS",
+ "cardType-card": "Karta",
+ "cardType-linkedCard": "Propojená karta",
+ "cardType-linkedBoard": "Propojené tablo",
+ "change": "Změnit",
+ "change-avatar": "Změnit avatar",
+ "change-password": "Změnit heslo",
+ "change-permissions": "Změnit oprávnění",
+ "change-settings": "Změnit nastavení",
+ "changeAvatarPopup-title": "Změnit avatar",
+ "changeLanguagePopup-title": "Změnit jazyk",
+ "changePasswordPopup-title": "Změnit heslo",
+ "changePermissionsPopup-title": "Změnit oprávnění",
+ "changeSettingsPopup-title": "Změnit nastavení",
+ "subtasks": "Podúkol",
+ "checklists": "Checklisty",
+ "click-to-star": "Kliknutím přidat hvězdičku tomuto tablu.",
+ "click-to-unstar": "Kliknutím odebrat hvězdičku tomuto tablu.",
+ "clipboard": "Schránka nebo potáhnout a pustit",
+ "close": "Zavřít",
+ "close-board": "Zavřít tablo",
+ "close-board-pop": "Budete moci obnovit tablo kliknutím na tlačítko \"Archiv\" v hlavním menu.",
+ "color-black": "černá",
+ "color-blue": "modrá",
+ "color-crimson": "karmínová",
+ "color-darkgreen": "tmavě zelená",
+ "color-gold": "zlatá",
+ "color-gray": "šedá",
+ "color-green": "zelená",
+ "color-indigo": "indigo",
+ "color-lime": "světlezelená",
+ "color-magenta": "purpurová",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "tmavě modrá",
+ "color-orange": "oranžová",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "růžová",
+ "color-plum": "švestková",
+ "color-purple": "fialová",
+ "color-red": "červená",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "stříbrná",
+ "color-sky": "nebeská",
+ "color-slateblue": "slateblue",
+ "color-white": "bílá",
+ "color-yellow": "žlutá",
+ "unset-color": "Nenastaveno",
+ "comment": "Komentář",
+ "comment-placeholder": "Text komentáře",
+ "comment-only": "Pouze komentáře",
+ "comment-only-desc": "Může přidávat komentáře pouze do karet.",
+ "no-comments": "Žádné komentáře",
+ "no-comments-desc": "Nemůže vidět komentáře a aktivity",
+ "computer": "Počítač",
+ "confirm-subtask-delete-dialog": "Opravdu chcete smazat tento podúkol?",
+ "confirm-checklist-delete-dialog": "Opravdu chcete smazat tento checklist?",
+ "copy-card-link-to-clipboard": "Kopírovat adresu karty do mezipaměti",
+ "linkCardPopup-title": "Propojit kartu",
+ "searchElementPopup-title": "Hledat",
+ "copyCardPopup-title": "Kopírovat kartu",
+ "copyChecklistToManyCardsPopup-title": "Kopírovat checklist do více karet",
+ "copyChecklistToManyCardsPopup-instructions": "Názvy a popisy cílové karty v tomto formátu JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Nadpis první karty\", \"description\":\"Popis druhé karty\"}, {\"title\":\"Nadpis druhé karty\",\"description\":\"Popis druhé karty\"},{\"title\":\"Nadpis poslední kary\",\"description\":\"Popis poslední karty\"} ]",
+ "create": "Vytvořit",
+ "createBoardPopup-title": "Vytvořit tablo",
+ "chooseBoardSourcePopup-title": "Importovat tablo",
+ "createLabelPopup-title": "Vytvořit štítek",
+ "createCustomField": "Vytvořit pole",
+ "createCustomFieldPopup-title": "Vytvořit pole",
+ "current": "Aktuální",
+ "custom-field-delete-pop": "Nelze vrátit zpět. Toto odebere toto vlastní pole ze všech karet a zničí jeho historii.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Datum",
+ "custom-field-dropdown": "Rozbalovací seznam",
+ "custom-field-dropdown-none": "(prázdné)",
+ "custom-field-dropdown-options": "Seznam možností",
+ "custom-field-dropdown-options-placeholder": "Stiskněte enter pro přidání více možností",
+ "custom-field-dropdown-unknown": "(neznámé)",
+ "custom-field-number": "Číslo",
+ "custom-field-text": "Text",
+ "custom-fields": "Vlastní pole",
+ "date": "Datum",
+ "decline": "Zamítnout",
+ "default-avatar": "Výchozí avatar",
+ "delete": "Smazat",
+ "deleteCustomFieldPopup-title": "Smazat vlastní pole",
+ "deleteLabelPopup-title": "Smazat štítek?",
+ "description": "Popis",
+ "disambiguateMultiLabelPopup-title": "Dvojznačný štítek akce",
+ "disambiguateMultiMemberPopup-title": "Dvojznačná akce člena",
+ "discard": "Zahodit",
+ "done": "Hotovo",
+ "download": "Stáhnout",
+ "edit": "Upravit",
+ "edit-avatar": "Změnit avatar",
+ "edit-profile": "Upravit profil",
+ "edit-wip-limit": "Upravit WIP Limit",
+ "soft-wip-limit": "Mírný WIP limit",
+ "editCardStartDatePopup-title": "Změnit datum startu úkolu",
+ "editCardDueDatePopup-title": "Změnit datum dokončení úkolu",
+ "editCustomFieldPopup-title": "Upravit pole",
+ "editCardSpentTimePopup-title": "Změnit strávený čas",
+ "editLabelPopup-title": "Změnit štítek",
+ "editNotificationPopup-title": "Změnit notifikace",
+ "editProfilePopup-title": "Upravit profil",
+ "email": "Email",
+ "email-enrollAccount-subject": "Byl vytvořen účet na __siteName__",
+ "email-enrollAccount-text": "Ahoj __user__,\n\nMůžeš začít používat službu kliknutím na odkaz níže.\n\n__url__\n\nDěkujeme.",
+ "email-fail": "Odeslání emailu selhalo",
+ "email-fail-text": "Chyba při pokusu o odeslání emailu",
+ "email-invalid": "Neplatný email",
+ "email-invite": "Pozvat pomocí emailu",
+ "email-invite-subject": "__inviter__ odeslal pozvánku",
+ "email-invite-text": "Ahoj __user__,\n\n__inviter__ tě přizval ke spolupráci na tablu \"__board__\".\n\nNásleduj prosím odkaz níže:\n\n__url__\n\nDěkujeme.",
+ "email-resetPassword-subject": "Změň své heslo na __siteName__",
+ "email-resetPassword-text": "Ahoj __user__,\n\nPro změnu hesla klikni na odkaz níže.\n\n__url__\n\nDěkujeme.",
+ "email-sent": "Email byl odeslán",
+ "email-verifyEmail-subject": "Ověř svou emailovou adresu na",
+ "email-verifyEmail-text": "Ahoj __user__,\n\nPro ověření emailové adresy klikni na odkaz níže.\n\n__url__\n\nDěkujeme.",
+ "enable-wip-limit": "Povolit WIP Limit",
+ "error-board-doesNotExist": "Toto tablo neexistuje",
+ "error-board-notAdmin": "K provedení změny musíš být administrátor tohoto tabla",
+ "error-board-notAMember": "K provedení změny musíš být členem tohoto tabla",
+ "error-json-malformed": "Tvůj text není validní JSON",
+ "error-json-schema": "Tato JSON data neobsahují správné informace v platném formátu",
+ "error-list-doesNotExist": "Tento sloupec ;neexistuje",
+ "error-user-doesNotExist": "Tento uživatel neexistuje",
+ "error-user-notAllowSelf": "Nemůžeš pozvat sám sebe",
+ "error-user-notCreated": "Tento uživatel není vytvořen",
+ "error-username-taken": "Toto uživatelské jméno již existuje",
+ "error-email-taken": "Tento email byl již použit",
+ "export-board": "Exportovat tablo",
+ "filter": "Filtr",
+ "filter-cards": "Filtrovat karty",
+ "filter-clear": "Vyčistit filtr",
+ "filter-no-label": "Žádný štítek",
+ "filter-no-member": "Žádný člen",
+ "filter-no-custom-fields": "Žádné vlastní pole",
+ "filter-on": "Filtr je zapnut",
+ "filter-on-desc": "Filtrujete karty tohoto tabla. Pro úpravu filtru klikni sem.",
+ "filter-to-selection": "Filtrovat výběr",
+ "advanced-filter-label": "Pokročilý filtr",
+ "advanced-filter-description": "Pokročilý filtr dovoluje zapsat řetězec následujících operátorů: == != <= >= && || () Operátory jsou odděleny mezerou. Můžete filtrovat všechny vlastní pole zadáním jejich názvů nebo hodnot. Například: Pole1 == Hodnota1. Poznámka: Pokud pole nebo hodnoty obsahují mezery, je potřeba je obalit v jednoduchých uvozovkách. Například: 'Pole 1' == 'Hodnota 1'. Pro ignorovaní kontrolních znaků (' \\ /) je možné použít \\. Například Pole1 == I\\'m. Můžete také kombinovat více podmínek. Například P1 == H1 || P1 == H2. Obvykle jsou operátory interpretovány zleva doprava. Jejich pořadí můžete měnit pomocí závorek. Například: P1 == H1 && ( P2 == H2 || P2 == H3 )",
+ "fullname": "Celé jméno",
+ "header-logo-title": "Jit zpět na stránku s tably.",
+ "hide-system-messages": "Skrýt systémové zprávy",
+ "headerBarCreateBoardPopup-title": "Vytvořit tablo",
+ "home": "Domů",
+ "import": "Import",
+ "link": "Propojit",
+ "import-board": "Importovat tablo",
+ "import-board-c": "Importovat tablo",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Importovat tablo z předchozího exportu",
+ "import-sandstorm-backup-warning": "Nemažte data, která importujete z původního exportovaného tabla nebo Trello předtím, nežli zkontrolujete, jestli lze tuto část zavřít a znovu otevřít nebo jestli se Vám nezobrazuje chyba tabla, což znamená ztrátu dat.",
+ "import-sandstorm-warning": "Importované tablo spaže všechny existující data v tablu a nahradí je importovaným tablem.",
+ "from-trello": "Z Trella",
+ "from-wekan": "Z předchozího exportu",
+ "import-board-instruction-trello": "Na svém Trello tablu, otevři 'Menu', pak 'More', 'Print and Export', 'Export JSON', a zkopíruj výsledný text",
+ "import-board-instruction-wekan": "Ve vašem tablu jděte do 'Menu', klikněte na 'Exportovat tablo' a zkopírujte text ze staženého souboru.",
+ "import-board-instruction-about-errors": "Někdy import funguje i přestože dostáváte chyby při importování tabla, které se zobrazí na stránce Všechna tabla.",
+ "import-json-placeholder": "Sem vlož validní JSON data",
+ "import-map-members": "Mapovat členy",
+ "import-members-map": "Toto importované tablo obsahuje několik osob. Prosím namapujte osoby z importu na místní uživatelské účty.",
+ "import-show-user-mapping": "Zkontrolovat namapování členů",
+ "import-user-select": "Vyberte existující uživatelský účet, kterého chcete použít pro tuto osobu",
+ "importMapMembersAddPopup-title": "Zvolte osobu",
+ "info": "Verze",
+ "initials": "Iniciály",
+ "invalid-date": "Neplatné datum",
+ "invalid-time": "Neplatný čas",
+ "invalid-user": "Neplatný uživatel",
+ "joined": "spojeno",
+ "just-invited": "Právě jsi byl pozván(a) do tohoto tabla",
+ "keyboard-shortcuts": "Klávesové zkratky",
+ "label-create": "Vytvořit štítek",
+ "label-default": "%s štítek (výchozí)",
+ "label-delete-pop": "Nelze vrátit zpět. Toto odebere tento štítek ze všech karet a zničí jeho historii.",
+ "labels": "Štítky",
+ "language": "Jazyk",
+ "last-admin-desc": "Nelze změnit role, protože musí existovat alespoň jeden administrátor.",
+ "leave-board": "Opustit tablo",
+ "leave-board-pop": "Opravdu chcete opustit tablo __boardTitle__? Odstraníte se tím i ze všech karet v tomto tablu.",
+ "leaveBoardPopup-title": "Opustit tablo?",
+ "link-card": "Odkázat na tuto kartu",
+ "list-archive-cards": "Přesunout všechny karty v tomto seznamu do archivu.",
+ "list-archive-cards-pop": "Toto odstraní z tabla všechny karty z tohoto seznamu. Pro zobrazení karet v Archivu a jejich opětovné obnovení, klikni v \"Menu\" > \"Archiv\".",
+ "list-move-cards": "Přesunout všechny karty v tomto sloupci",
+ "list-select-cards": "Vybrat všechny karty v tomto sloupci",
+ "set-color-list": "Nastavit barvu",
+ "listActionPopup-title": "Vypsat akce",
+ "swimlaneActionPopup-title": "Akce swimlane",
+ "swimlaneAddPopup-title": "Přidat swimlane dolů",
+ "listImportCardPopup-title": "Importovat Trello kartu",
+ "listMorePopup-title": "Více",
+ "link-list": "Odkaz na tento sloupec",
+ "list-delete-pop": "Všechny akce budou odstraněny z kanálu aktivity a nebude možné sloupec obnovit. Toto nelze vrátit zpět.",
+ "list-delete-suggest-archive": "Seznam můžete přesunout do archivu, abyste jej odstranili z tabla a zachovali si svou aktivitu.",
+ "lists": "Sloupce",
+ "swimlanes": "Swimlanes",
+ "log-out": "Odhlásit",
+ "log-in": "Přihlásit",
+ "loginPopup-title": "Přihlásit",
+ "memberMenuPopup-title": "Nastavení uživatele",
+ "members": "Členové",
+ "menu": "Menu",
+ "move-selection": "Přesunout výběr",
+ "moveCardPopup-title": "Přesunout kartu",
+ "moveCardToBottom-title": "Přesunout dolu",
+ "moveCardToTop-title": "Přesunout nahoru",
+ "moveSelectionPopup-title": "Přesunout výběr",
+ "multi-selection": "Multi-výběr",
+ "multi-selection-on": "Multi-výběr je zapnut",
+ "muted": "Umlčeno",
+ "muted-info": "Nikdy nedostanete oznámení o změně v tomto tablu.",
+ "my-boards": "Moje tabla",
+ "name": "Jméno",
+ "no-archived-cards": "V archivu nejsou žádné karty.",
+ "no-archived-lists": "V archivu nejsou žádné seznamy.",
+ "no-archived-swimlanes": "V archivu nejsou žádné swimlanes.",
+ "no-results": "Žádné výsledky",
+ "normal": "Normální",
+ "normal-desc": "Může zobrazovat a upravovat karty. Nemůže měnit nastavení.",
+ "not-accepted-yet": "Pozvánka ještě nebyla přijmuta",
+ "notify-participate": "Dostane aktualizace do všech karet, ve kterých se účastní jako tvůrce nebo člen",
+ "notify-watch": "Dostane aktualitace to všech tabel, sloupců nebo karet, které sledujete",
+ "optional": "volitelný",
+ "or": "nebo",
+ "page-maybe-private": "Tato stránka může být soukromá. Můžete ji zobrazit po <a href='%s'>přihlášení</a>.",
+ "page-not-found": "Stránka nenalezena.",
+ "password": "Heslo",
+ "paste-or-dragdrop": "vložit, nebo přetáhnout a pustit soubor obrázku (pouze obrázek)",
+ "participating": "Zúčastnění",
+ "preview": "Náhled",
+ "previewAttachedImagePopup-title": "Náhled",
+ "previewClipboardImagePopup-title": "Náhled",
+ "private": "Soukromý",
+ "private-desc": "Toto tablo je soukromé. Pouze vybraní uživatelé ho mohou zobrazit a upravovat.",
+ "profile": "Profil",
+ "public": "Veřejný",
+ "public-desc": "Toto tablo je veřejné. Je viditelné pro každého, kdo na něj má odkaz a bude zobrazeno ve vyhledávačích jako je Google. Pouze vybraní uživatelé ho mohou upravovat.",
+ "quick-access-description": "Pro přidání odkazu do této lišty označ tablo hvězdičkou.",
+ "remove-cover": "Odstranit obal",
+ "remove-from-board": "Odstranit z tabla",
+ "remove-label": "Odstranit štítek",
+ "listDeletePopup-title": "Smazat sloupec?",
+ "remove-member": "Odebrat uživatele",
+ "remove-member-from-card": "Odstranit z karty",
+ "remove-member-pop": "Odstranit __name__ (__username__) z __boardTitle__? Uživatel bude odebrán ze všech karet na tomto tablu. Na tuto skutečnost bude upozorněn.",
+ "removeMemberPopup-title": "Odstranit člena?",
+ "rename": "Přejmenovat",
+ "rename-board": "Přejmenovat tablo",
+ "restore": "Obnovit",
+ "save": "Uložit",
+ "search": "Hledat",
+ "rules": "Pravidla",
+ "search-cards": "Hledat nadpisy a popisy karet v tomto tablu",
+ "search-example": "Hledaný text",
+ "select-color": "Vybrat barvu",
+ "set-wip-limit-value": "Nastaví limit pro maximální počet úkolů ve sloupci.",
+ "setWipLimitPopup-title": "Nastavit WIP Limit",
+ "shortcut-assign-self": "Přiřadit sebe k aktuální kartě",
+ "shortcut-autocomplete-emoji": "Automatické dokončování emoji",
+ "shortcut-autocomplete-members": "Automatický výběr uživatel",
+ "shortcut-clear-filters": "Vyčistit všechny filtry",
+ "shortcut-close-dialog": "Zavřít dialog",
+ "shortcut-filter-my-cards": "Filtrovat mé karty",
+ "shortcut-show-shortcuts": "Otevřít tento seznam odkazů",
+ "shortcut-toggle-filterbar": "Přepnout lištu filtrování",
+ "shortcut-toggle-sidebar": "Přepnout lištu tabla",
+ "show-cards-minimum-count": "Zobrazit počet karet pokud sloupec obsahuje více než",
+ "sidebar-open": "Otevřít boční panel",
+ "sidebar-close": "Zavřít boční panel",
+ "signupPopup-title": "Vytvořit účet",
+ "star-board-title": "Kliknutím přidat tablu hvězdičku. Poté bude zobrazeno nahoře.",
+ "starred-boards": "Tabla s hvězdičkou",
+ "starred-boards-description": "Tabla s hvězdičkou jsou zobrazena nahoře.",
+ "subscribe": "Odebírat",
+ "team": "Tým",
+ "this-board": "toto tablo",
+ "this-card": "tuto kartu",
+ "spent-time-hours": "Strávený čas (hodiny)",
+ "overtime-hours": "Přesčas (hodiny)",
+ "overtime": "Přesčas",
+ "has-overtime-cards": "Obsahuje karty s přesčasy",
+ "has-spenttime-cards": "Obsahuje karty se stráveným časem",
+ "time": "Čas",
+ "title": "Název",
+ "tracking": "Pozorující",
+ "tracking-info": "Budete informováni o všech změnách v kartách, u kterých jste tvůrce nebo člen.",
+ "type": "Typ",
+ "unassign-member": "Vyřadit člena",
+ "unsaved-description": "Popis neni uložen.",
+ "unwatch": "Přestat sledovat",
+ "upload": "Nahrát",
+ "upload-avatar": "Nahrát avatar",
+ "uploaded-avatar": "Avatar nahrán",
+ "username": "Uživatelské jméno",
+ "view-it": "Zobrazit",
+ "warn-list-archived": "varování: tato karta je v seznamu v Archivu",
+ "watch": "Sledovat",
+ "watching": "Sledující",
+ "watching-info": "Bude vám oznámena každá změna v tomto tablu",
+ "welcome-board": "Uvítací tablo",
+ "welcome-swimlane": "Milník 1",
+ "welcome-list1": "Základní",
+ "welcome-list2": "Pokročilé",
+ "card-templates-swimlane": "Šablony Karty",
+ "list-templates-swimlane": "Šablony Sloupce",
+ "board-templates-swimlane": "Šablony Tabla",
+ "what-to-do": "Co chcete dělat?",
+ "wipLimitErrorPopup-title": "Neplatný WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "Počet úkolů v tomto sloupci je vyšší než definovaný WIP limit.",
+ "wipLimitErrorPopup-dialog-pt2": "Přesuňte prosím některé úkoly mimo tento sloupec, nebo nastavte vyšší WIP limit.",
+ "admin-panel": "Administrátorský panel",
+ "settings": "Nastavení",
+ "people": "Lidé",
+ "registration": "Registrace",
+ "disable-self-registration": "Vypnout svévolnou registraci",
+ "invite": "Pozvánka",
+ "invite-people": "Pozvat lidi",
+ "to-boards": "Do tabel",
+ "email-addresses": "Emailové adresy",
+ "smtp-host-description": "Adresa SMTP serveru, který zpracovává vaše emaily.",
+ "smtp-port-description": "Port, který používá Váš SMTP server pro odchozí emaily.",
+ "smtp-tls-description": "Zapnout TLS podporu pro SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Uživatelské jméno",
+ "smtp-password": "Heslo",
+ "smtp-tls": "podpora TLS",
+ "send-from": "Od",
+ "send-smtp-test": "Poslat si zkušební email.",
+ "invitation-code": "Kód pozvánky",
+ "email-invite-register-subject": "__inviter__ odeslal pozvánku",
+ "email-invite-register-text": "Ahoj __user__,\n\n__inviter__ tě přizval do kanban boardu ke spolupráci.\n\nNásleduj prosím odkaz níže:\n\n__url__\n\nKód Tvé pozvánky je: __icode__\n\nDěkujeme.",
+ "email-smtp-test-subject": "E-mail testující SMTP",
+ "email-smtp-test-text": "Email byl úspěšně odeslán",
+ "error-invitation-code-not-exist": "Kód pozvánky neexistuje.",
+ "error-notAuthorized": "Nejste autorizován k prohlížení této stránky.",
+ "outgoing-webhooks": "Odchozí Webhooky",
+ "outgoingWebhooksPopup-title": "Odchozí Webhooky",
+ "boardCardTitlePopup-title": "Filtr názvů karet",
+ "new-outgoing-webhook": "Nové odchozí Webhooky",
+ "no-name": "(Neznámé)",
+ "Node_version": "Node verze",
+ "OS_Arch": "OS Architektura",
+ "OS_Cpus": "OS Počet CPU",
+ "OS_Freemem": "OS Volná paměť",
+ "OS_Loadavg": "OS Průměrná zátěž systém",
+ "OS_Platform": "Platforma OS",
+ "OS_Release": "Verze OS",
+ "OS_Totalmem": "OS Celková paměť",
+ "OS_Type": "Typ OS",
+ "OS_Uptime": "OS Doba běhu systému",
+ "days": "dní",
+ "hours": "hodin",
+ "minutes": "minut",
+ "seconds": "sekund",
+ "show-field-on-card": "Ukázat toto pole na kartě",
+ "automatically-field-on-card": "Automaticky vytvořit pole na všech kartách",
+ "showLabel-field-on-card": "Ukázat štítek pole na minikartě",
+ "yes": "Ano",
+ "no": "Ne",
+ "accounts": "Účty",
+ "accounts-allowEmailChange": "Povolit změnu Emailu",
+ "accounts-allowUserNameChange": "Povolit změnu uživatelského jména",
+ "createdAt": "Vytvořeno v",
+ "verified": "Ověřen",
+ "active": "Aktivní",
+ "card-received": "Přijato",
+ "card-received-on": "Přijaté v",
+ "card-end": "Konec",
+ "card-end-on": "Končí v",
+ "editCardReceivedDatePopup-title": "Změnit datum přijetí",
+ "editCardEndDatePopup-title": "Změnit datum konce",
+ "setCardColorPopup-title": "Nastav barvu",
+ "setCardActionsColorPopup-title": "Vyber barvu",
+ "setSwimlaneColorPopup-title": "Vyber barvu",
+ "setListColorPopup-title": "Vyber barvu",
+ "assigned-by": "Přidělil(a)",
+ "requested-by": "Vyžádal(a)",
+ "board-delete-notice": "Smazání je trvalé. Přijdete o všechny sloupce, karty a akce spojené s tímto tablem.",
+ "delete-board-confirm-popup": "Všechny sloupce, štítky a aktivity budou smazány a obsah tabla nebude možné obnovit. Toto nelze vrátit zpět.",
+ "boardDeletePopup-title": "Smazat tablo?",
+ "delete-board": "Smazat tablo",
+ "default-subtasks-board": "Podúkoly pro tablo __board__",
+ "default": "Výchozí",
+ "queue": "Fronta",
+ "subtask-settings": "Nastavení podúkolů",
+ "boardSubtaskSettingsPopup-title": "Nastavení podúkolů tabla",
+ "show-subtasks-field": "Karty mohou mít podúkoly",
+ "deposit-subtasks-board": "Vložit podúkoly do tohoto tabla",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Ukázat předka na minikartě",
+ "prefix-with-full-path": "Prefix s celou cestou",
+ "prefix-with-parent": "Prefix s předkem",
+ "subtext-with-full-path": "Podtext s celou cestou",
+ "subtext-with-parent": "Podtext s předkem",
+ "change-card-parent": "Změnit rodiče karty",
+ "parent-card": "Rodičovská karta",
+ "source-board": "Zdrojové tablo",
+ "no-parent": "Nezobrazovat rodiče",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "přidán štítek '%s'",
+ "activity-removed-label-card": "odstraněn štítek '%s'",
+ "activity-delete-attach-card": "odstraněna příloha",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Pravidlo",
+ "r-add-trigger": "Přidat spoštěč",
+ "r-add-action": "Přidat akci",
+ "r-board-rules": "Pravidla Tabla",
+ "r-add-rule": "Přidat pravidlo",
+ "r-view-rule": "Zobrazit pravidlo",
+ "r-delete-rule": "Smazat pravidlo",
+ "r-new-rule-name": "Nový název pravidla",
+ "r-no-rules": "Žádná pravidla",
+ "r-when-a-card": "Pokud karta",
+ "r-is": "je",
+ "r-is-moved": "je přesunuto",
+ "r-added-to": "přidáno do",
+ "r-removed-from": "Odstraněno z",
+ "r-the-board": "tablo",
+ "r-list": "sloupce",
+ "set-filter": "Nastavit filtr",
+ "r-moved-to": "Přesunuto do",
+ "r-moved-from": "Přesunuto z",
+ "r-archived": "Přesunuto do archivu",
+ "r-unarchived": "Obnoveno z archivu",
+ "r-a-card": "karta",
+ "r-when-a-label-is": "Pokud nějaký štítek je",
+ "r-when-the-label": "Pokud tento štítek je",
+ "r-list-name": "název seznamu",
+ "r-when-a-member": "Pokud nějaký člen je",
+ "r-when-the-member": "Pokud tento člen je",
+ "r-name": "jméno",
+ "r-when-a-attach": "Pokud je nějaká příloha",
+ "r-when-a-checklist": "Když zaškrtávací seznam je",
+ "r-when-the-checklist": "Když zaškrtávací seznam",
+ "r-completed": "Dokončeno",
+ "r-made-incomplete": "Vytvořeno nehotové",
+ "r-when-a-item": "Když položka zaškrtávacího seznamu je",
+ "r-when-the-item": "Když položka zaškrtávacího seznamu",
+ "r-checked": "Zaškrtnuto",
+ "r-unchecked": "Odškrtnuto",
+ "r-move-card-to": "Přesunout kartu do",
+ "r-top-of": "Začátek",
+ "r-bottom-of": "Spodek",
+ "r-its-list": "toho sloupce",
+ "r-archive": "Přesunout do archivu",
+ "r-unarchive": "Obnovit z archivu",
+ "r-card": "karta",
+ "r-add": "Přidat",
+ "r-remove": "Odstranit",
+ "r-label": "štítek",
+ "r-member": "člen",
+ "r-remove-all": "Odstranit všechny členy z této karty",
+ "r-set-color": "Nastav barvu na",
+ "r-checklist": "zaškrtávací seznam",
+ "r-check-all": "Zaškrtnout vše",
+ "r-uncheck-all": "Odškrtnout vše",
+ "r-items-check": "položky zaškrtávacího seznamu",
+ "r-check": "Označit",
+ "r-uncheck": "Odznačit",
+ "r-item": "Položka",
+ "r-of-checklist": "ze zaškrtávacího seznamu",
+ "r-send-email": "Odeslat e-mail",
+ "r-to": "komu",
+ "r-subject": "předmět",
+ "r-rule-details": "Podrobnosti pravidla",
+ "r-d-move-to-top-gen": "Přesunout kartu na začátek toho sloupce",
+ "r-d-move-to-top-spec": "Přesunout kartu na začátek sloupce",
+ "r-d-move-to-bottom-gen": "Přesunout kartu na konec sloupce",
+ "r-d-move-to-bottom-spec": "Přesunout kartu na konec sloupce",
+ "r-d-send-email": "Odeslat email",
+ "r-d-send-email-to": "komu",
+ "r-d-send-email-subject": "předmět",
+ "r-d-send-email-message": "zpráva",
+ "r-d-archive": "Přesunout kartu do archivu",
+ "r-d-unarchive": "Obnovit kartu z archivu",
+ "r-d-add-label": "Přidat štítek",
+ "r-d-remove-label": "Odstranit štítek",
+ "r-create-card": "Vytvořit novou kartu",
+ "r-in-list": "v seznamu",
+ "r-in-swimlane": "ve swimlane",
+ "r-d-add-member": "Přidat člena",
+ "r-d-remove-member": "Odstranit člena",
+ "r-d-remove-all-member": "Odstranit všechny členy",
+ "r-d-check-all": "Označit všechny položky na seznamu",
+ "r-d-uncheck-all": "Odznačit všechny položky na seznamu",
+ "r-d-check-one": "Označit položku",
+ "r-d-uncheck-one": "Odznačit položku",
+ "r-d-check-of-list": "ze zaškrtávacího seznamu",
+ "r-d-add-checklist": "Přidat zaškrtávací seznam",
+ "r-d-remove-checklist": "Odstranit zaškrtávací seznam",
+ "r-by": "by",
+ "r-add-checklist": "Přidat zaškrtávací seznam",
+ "r-with-items": "s položkami",
+ "r-items-list": "položka1,položka2,položka3",
+ "r-add-swimlane": "Přidat swimlane",
+ "r-swimlane-name": "Název swimlane",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "Když je karta přesunuta do jiného sloupce",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Metoda autentizace",
+ "authentication-type": "Typ autentizace",
+ "custom-product-name": "Vlastní název produktu",
+ "layout": "Uspořádání",
+ "hide-logo": "Skrýt logo",
+ "add-custom-html-after-body-start": "Přidej vlastní HTML za <body>",
+ "add-custom-html-before-body-end": "Přidej vlastní HTML před </body>",
+ "error-undefined": "Něco se pokazilo",
+ "error-ldap-login": "Během přihlašování nastala chyba",
+ "display-authentication-method": "Zobraz způsob ověřování",
+ "default-authentication-method": "Zobraz způsob ověřování",
+ "duplicate-board": "Duplikovat tablo",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/da.i18n.json b/i18n/da.i18n.json
index 1ad266fc..45cecb81 100644
--- a/i18n/da.i18n.json
+++ b/i18n/da.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Accepter",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Accepter",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json
index 725d945a..8eff3a1d 100644
--- a/i18n/de.i18n.json
+++ b/i18n/de.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Akzeptieren",
- "act-activity-notify": "Aktivitätsbenachrichtigung",
- "act-addAttachment": "hat Anhang __attachment__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-deleteAttachment": "hat Anhang __attachment__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ gelöscht",
- "act-addSubtask": "hat Teilaufgabe __subtask__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-addLabel": "hat Label __label__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-addedLabel": "hat Label __label__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-removeLabel": "hat Label __label__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-removedLabel": "hat Label __label__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-addChecklist": "hat Checkliste __checklist__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-addChecklistItem": "hat Checklistenposition __checklistItem__ zu Checkliste __checkList__ auf der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-removeChecklist": "hat Checkliste __checklist__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-removeChecklistItem": "hat Checklistenposition __checklistItem__ von Checkliste __checkList__ auf der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-checkedItem": "hat __checklistItem__ der Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ abgehakt",
- "act-uncheckedItem": "hat Haken von __checklistItem__ der Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-completeChecklist": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ vervollständigt",
- "act-uncompleteChecklist": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ unvervollständigt",
- "act-addComment": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ kommentiert: __comment__",
- "act-editComment": "hat den Kommentar auf Karte __card__: __comment__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ bearbeitet",
- "act-deleteComment": "hat den Kommentar von Karte __card__: __comment__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ gelöscht",
- "act-createBoard": "hat Board __board__ erstellt",
- "act-createSwimlane": "hat Swimlane __swimlane__ in Board __board__ erstellt",
- "act-createCard": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ erstellt",
- "act-createCustomField": "hat benutzerdefiniertes Feld __customField__ in Board __board__ angelegt",
- "act-deleteCustomField": "hat benutzerdefiniertes Feld __customField__ in Board __board__ gelöscht",
- "act-setCustomField": "hat benutzerdefiniertes Feld __customField__: __customFieldValue__ auf Karte __card__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ bearbeitet",
- "act-createList": "hat Liste __list__ zu Board __board__ hinzugefügt",
- "act-addBoardMember": "hat Mitglied __member__ zu Board __board__ hinzugefügt",
- "act-archivedBoard": "hat Board __board__ ins Archiv verschoben",
- "act-archivedCard": "hat Karte __card__ von der Liste __list__ in Swimlane __swimlane__ in Board __board__ ins Archiv verschoben",
- "act-archivedList": "hat Liste __list__ in Swimlane __swimlane__ in Board __board__ ins Archiv verschoben",
- "act-archivedSwimlane": "hat Swimlane __swimlane__ von Board __board__ ins Archiv verschoben",
- "act-importBoard": "hat Board __board__ importiert",
- "act-importCard": "hat Karte __card__ in Liste __list__ in Swimlane __swimlane__ in Board __board__ importiert",
- "act-importList": "hat Liste __list__ in Swimlane __swimlane__ in Board __board__ importiert",
- "act-joinMember": "hat Mitglied __member__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
- "act-moveCard": "hat Karte __card__ in Board __board__ von Liste __oldList__ in Swimlane __oldSwimlane__ zu Liste __list__ in Swimlane __swimlane__ verschoben",
- "act-moveCardToOtherBoard": "hat Karte __card__ von Liste __oldList__ in Swimlane __oldSwimlane__ in Board __oldBoard__ zu Liste __list__ in Swimlane __swimlane__ in Board __board__ verschoben",
- "act-removeBoardMember": "hat Mitglied __member__ von Board __board__ entfernt",
- "act-restoredCard": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ wiederhergestellt",
- "act-unjoinMember": "hat Mitglied __member__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Aktionen",
- "activities": "Aktivitäten",
- "activity": "Aktivität",
- "activity-added": "hat %s zu %s hinzugefügt",
- "activity-archived": "hat %s ins Archiv verschoben",
- "activity-attached": "hat %s an %s angehängt",
- "activity-created": "hat %s erstellt",
- "activity-customfield-created": "hat das benutzerdefinierte Feld %s erstellt",
- "activity-excluded": "hat %s von %s ausgeschlossen",
- "activity-imported": "hat %s in %s von %s importiert",
- "activity-imported-board": "hat %s von %s importiert",
- "activity-joined": "ist %s beigetreten",
- "activity-moved": "hat %s von %s nach %s verschoben",
- "activity-on": "in %s",
- "activity-removed": "hat %s von %s entfernt",
- "activity-sent": "hat %s an %s gesendet",
- "activity-unjoined": "hat %s verlassen",
- "activity-subtask-added": "Teilaufgabe zu %s hinzugefügt",
- "activity-checked-item": "markierte %s in Checkliste %s von %s",
- "activity-unchecked-item": "hat %s in Checkliste %s von %s abgewählt",
- "activity-checklist-added": "hat eine Checkliste zu %s hinzugefügt",
- "activity-checklist-removed": "entfernte eine Checkliste von %s",
- "activity-checklist-completed": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ vervollständigt",
- "activity-checklist-uncompleted": "unvervollständigte die Checkliste %s von %s",
- "activity-checklist-item-added": "hat ein Checklistenelement zu '%s' in %s hinzugefügt",
- "activity-checklist-item-removed": "hat ein Checklistenelement von '%s' in %s entfernt",
- "add": "Hinzufügen",
- "activity-checked-item-card": "markiere %s in Checkliste %s",
- "activity-unchecked-item-card": "hat %s in Checkliste %s abgewählt",
- "activity-checklist-completed-card": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ vervollständigt",
- "activity-checklist-uncompleted-card": "unvervollständigte die Checkliste %s",
- "add-attachment": "Datei anhängen",
- "add-board": "neues Board",
- "add-card": "Karte hinzufügen",
- "add-swimlane": "Swimlane hinzufügen",
- "add-subtask": "Teilaufgabe hinzufügen",
- "add-checklist": "Checkliste hinzufügen",
- "add-checklist-item": "Element zu Checkliste hinzufügen",
- "add-cover": "Cover hinzufügen",
- "add-label": "Label hinzufügen",
- "add-list": "Liste hinzufügen",
- "add-members": "Mitglieder hinzufügen",
- "added": "Hinzugefügt",
- "addMemberPopup-title": "Mitglieder",
- "admin": "Admin",
- "admin-desc": "Kann Karten anzeigen und bearbeiten, Mitglieder entfernen und Boardeinstellungen ändern.",
- "admin-announcement": "Ankündigung",
- "admin-announcement-active": "Aktive systemweite Ankündigungen",
- "admin-announcement-title": "Ankündigung des Administrators",
- "all-boards": "Alle Boards",
- "and-n-other-card": "und eine andere Karte",
- "and-n-other-card_plural": "und __count__ andere Karten",
- "apply": "Übernehmen",
- "app-is-offline": "Laden, bitte warten. Das Aktualisieren der Seite führt zu Datenverlust. Wenn das Laden nicht funktioniert, überprüfen Sie bitte, ob der Server nicht angehalten wurde.",
- "archive": "Ins Archiv verschieben",
- "archive-all": "Alles ins Archiv verschieben",
- "archive-board": "Board ins Archiv verschieben",
- "archive-card": "Karte ins Archiv verschieben",
- "archive-list": "Liste ins Archiv verschieben",
- "archive-swimlane": "Swimlane ins Archiv verschieben",
- "archive-selection": "Auswahl ins Archiv verschieben",
- "archiveBoardPopup-title": "Board ins Archiv verschieben?",
- "archived-items": "Archiv",
- "archived-boards": "Boards im Archiv",
- "restore-board": "Board wiederherstellen",
- "no-archived-boards": "Keine Boards im Archiv.",
- "archives": "Archiv",
- "template": "Vorlage",
- "templates": "Vorlagen",
- "assign-member": "Mitglied zuweisen",
- "attached": "angehängt",
- "attachment": "Anhang",
- "attachment-delete-pop": "Das Löschen eines Anhangs kann nicht rückgängig gemacht werden.",
- "attachmentDeletePopup-title": "Anhang löschen?",
- "attachments": "Anhänge",
- "auto-watch": "Neue Boards nach Erstellung automatisch beobachten",
- "avatar-too-big": "Das Profilbild ist zu groß (max. 70KB)",
- "back": "Zurück",
- "board-change-color": "Farbe ändern",
- "board-nb-stars": "%s Sterne",
- "board-not-found": "Board nicht gefunden",
- "board-private-info": "Dieses Board wird <strong>privat</strong> sein.",
- "board-public-info": "Dieses Board wird <strong>öffentlich</strong> sein.",
- "boardChangeColorPopup-title": "Farbe des Boards ändern",
- "boardChangeTitlePopup-title": "Board umbenennen",
- "boardChangeVisibilityPopup-title": "Sichtbarkeit ändern",
- "boardChangeWatchPopup-title": "Beobachtung ändern",
- "boardMenuPopup-title": "Boardeinstellungen",
- "boards": "Boards",
- "board-view": "Boardansicht",
- "board-view-cal": "Kalender",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Listen",
- "bucket-example": "z.B. \"Löffelliste\"",
- "cancel": "Abbrechen",
- "card-archived": "Diese Karte wurde ins Archiv verschoben",
- "board-archived": "Dieses Board wurde ins Archiv verschoben.",
- "card-comments-title": "Diese Karte hat %s Kommentar(e).",
- "card-delete-notice": "Löschen kann nicht rückgängig gemacht werden. Alle Aktionen, die dieser Karte zugeordnet sind, werden ebenfalls gelöscht.",
- "card-delete-pop": "Alle Aktionen werden aus dem Aktivitätsfeed entfernt und die Karte kann nicht wiedereröffnet werden. Die Aktion kann nicht rückgängig gemacht werden.",
- "card-delete-suggest-archive": "Sie können eine Karte ins Archiv verschieben, um sie vom Board zu entfernen und die Aktivitäten zu behalten.",
- "card-due": "Fällig",
- "card-due-on": "Fällig am",
- "card-spent": "Aufgewendete Zeit",
- "card-edit-attachments": "Anhänge ändern",
- "card-edit-custom-fields": "Benutzerdefinierte Felder editieren",
- "card-edit-labels": "Labels ändern",
- "card-edit-members": "Mitglieder ändern",
- "card-labels-title": "Labels für diese Karte ändern.",
- "card-members-title": "Der Karte Board-Mitglieder hinzufügen oder entfernen.",
- "card-start": "Start",
- "card-start-on": "Start am",
- "cardAttachmentsPopup-title": "Anhängen von",
- "cardCustomField-datePopup-title": "Datum ändern",
- "cardCustomFieldsPopup-title": "Benutzerdefinierte Felder editieren",
- "cardDeletePopup-title": "Karte löschen?",
- "cardDetailsActionsPopup-title": "Kartenaktionen",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Mitglieder",
- "cardMorePopup-title": "Mehr",
- "cardTemplatePopup-title": "Vorlage erstellen",
- "cards": "Karten",
- "cards-count": "Karten",
- "casSignIn": "Mit CAS anmelden",
- "cardType-card": "Karte",
- "cardType-linkedCard": "Verknüpfte Karte",
- "cardType-linkedBoard": "Verknüpftes Board",
- "change": "Ändern",
- "change-avatar": "Profilbild ändern",
- "change-password": "Passwort ändern",
- "change-permissions": "Berechtigungen ändern",
- "change-settings": "Einstellungen ändern",
- "changeAvatarPopup-title": "Profilbild ändern",
- "changeLanguagePopup-title": "Sprache ändern",
- "changePasswordPopup-title": "Passwort ändern",
- "changePermissionsPopup-title": "Berechtigungen ändern",
- "changeSettingsPopup-title": "Einstellungen ändern",
- "subtasks": "Teilaufgaben",
- "checklists": "Checklisten",
- "click-to-star": "Klicken Sie, um das Board mit einem Stern zu markieren.",
- "click-to-unstar": "Klicken Sie, um den Stern vom Board zu entfernen.",
- "clipboard": "Zwischenablage oder Drag & Drop",
- "close": "Schließen",
- "close-board": "Board schließen",
- "close-board-pop": "Sie können das Board wiederherstellen, indem Sie die Schaltfläche \"Archiv\" in der Kopfzeile der Startseite anklicken.",
- "color-black": "schwarz",
- "color-blue": "blau",
- "color-crimson": "Karminrot",
- "color-darkgreen": "Dunkelgrün",
- "color-gold": "Gold",
- "color-gray": "Grau",
- "color-green": "grün",
- "color-indigo": "Indigo",
- "color-lime": "hellgrün",
- "color-magenta": "Magentarot",
- "color-mistyrose": "Altrosa",
- "color-navy": "Marineblau",
- "color-orange": "orange",
- "color-paleturquoise": "Blasses Türkis",
- "color-peachpuff": "Pfirsich",
- "color-pink": "pink",
- "color-plum": "Pflaume",
- "color-purple": "lila",
- "color-red": "rot",
- "color-saddlebrown": "Sattelbraun",
- "color-silver": "Silber",
- "color-sky": "himmelblau",
- "color-slateblue": "Schieferblau",
- "color-white": "Weiß",
- "color-yellow": "gelb",
- "unset-color": "Nicht festgelegt",
- "comment": "Kommentar",
- "comment-placeholder": "Kommentar schreiben",
- "comment-only": "Nur Kommentare",
- "comment-only-desc": "Kann Karten nur kommentieren.",
- "no-comments": "Keine Kommentare",
- "no-comments-desc": "Kann keine Kommentare und Aktivitäten sehen.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Wollen Sie die Teilaufgabe wirklich löschen?",
- "confirm-checklist-delete-dialog": "Wollen Sie die Checkliste wirklich löschen?",
- "copy-card-link-to-clipboard": "Kopiere Link zur Karte in die Zwischenablage",
- "linkCardPopup-title": "Karte verknüpfen",
- "searchElementPopup-title": "Suche",
- "copyCardPopup-title": "Karte kopieren",
- "copyChecklistToManyCardsPopup-title": "Checklistenvorlage in mehrere Karten kopieren",
- "copyChecklistToManyCardsPopup-instructions": "Titel und Beschreibungen der Zielkarten im folgenden JSON-Format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titel der ersten Karte\", \"description\":\"Beschreibung der ersten Karte\"}, {\"title\":\"Titel der zweiten Karte\",\"description\":\"Beschreibung der zweiten Karte\"},{\"title\":\"Titel der letzten Karte\",\"description\":\"Beschreibung der letzten Karte\"} ]",
- "create": "Erstellen",
- "createBoardPopup-title": "Board erstellen",
- "chooseBoardSourcePopup-title": "Board importieren",
- "createLabelPopup-title": "Label erstellen",
- "createCustomField": "Feld erstellen",
- "createCustomFieldPopup-title": "Feld erstellen",
- "current": "aktuell",
- "custom-field-delete-pop": "Dies wird das Feld aus allen Karten entfernen und den dazugehörigen Verlauf löschen. Die Aktion kann nicht rückgängig gemacht werden.",
- "custom-field-checkbox": "Kontrollkästchen",
- "custom-field-date": "Datum",
- "custom-field-dropdown": "Dropdownliste",
- "custom-field-dropdown-none": "(keiner)",
- "custom-field-dropdown-options": "Listenoptionen",
- "custom-field-dropdown-options-placeholder": "Drücken Sie die Eingabetaste, um weitere Optionen hinzuzufügen",
- "custom-field-dropdown-unknown": "(unbekannt)",
- "custom-field-number": "Zahl",
- "custom-field-text": "Text",
- "custom-fields": "Benutzerdefinierte Felder",
- "date": "Datum",
- "decline": "Ablehnen",
- "default-avatar": "Standard Profilbild",
- "delete": "Löschen",
- "deleteCustomFieldPopup-title": "Benutzerdefiniertes Feld löschen?",
- "deleteLabelPopup-title": "Label löschen?",
- "description": "Beschreibung",
- "disambiguateMultiLabelPopup-title": "Labels vereinheitlichen",
- "disambiguateMultiMemberPopup-title": "Mitglieder vereinheitlichen",
- "discard": "Verwerfen",
- "done": "Erledigt",
- "download": "Herunterladen",
- "edit": "Bearbeiten",
- "edit-avatar": "Profilbild ändern",
- "edit-profile": "Profil ändern",
- "edit-wip-limit": "WIP-Limit bearbeiten",
- "soft-wip-limit": "Soft WIP-Limit",
- "editCardStartDatePopup-title": "Startdatum ändern",
- "editCardDueDatePopup-title": "Fälligkeitsdatum ändern",
- "editCustomFieldPopup-title": "Feld bearbeiten",
- "editCardSpentTimePopup-title": "Aufgewendete Zeit ändern",
- "editLabelPopup-title": "Label ändern",
- "editNotificationPopup-title": "Benachrichtigung ändern",
- "editProfilePopup-title": "Profil ändern",
- "email": "E-Mail",
- "email-enrollAccount-subject": "Ihr Benutzerkonto auf __siteName__ wurde erstellt",
- "email-enrollAccount-text": "Hallo __user__,\n\num den Dienst nutzen zu können, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
- "email-fail": "Senden der E-Mail fehlgeschlagen",
- "email-fail-text": "Fehler beim Senden der E-Mail",
- "email-invalid": "Ungültige E-Mail-Adresse",
- "email-invite": "per E-Mail einladen",
- "email-invite-subject": "__inviter__ hat Ihnen eine Einladung geschickt",
- "email-invite-text": "Hallo __user__,\n\n__inviter__ hat Sie zu dem Board \"__board__\" eingeladen.\n\nBitte klicken Sie auf folgenden Link:\n\n__url__\n\nDanke.",
- "email-resetPassword-subject": "Setzten Sie ihr Passwort auf __siteName__ zurück",
- "email-resetPassword-text": "Hallo __user__,\n\num ihr Passwort zurückzusetzen, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
- "email-sent": "E-Mail gesendet",
- "email-verifyEmail-subject": "Bestätigen Sie ihre E-Mail-Adresse auf __siteName__",
- "email-verifyEmail-text": "Hallo __user__,\n\num ihre E-Mail-Adresse zu bestätigen, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
- "enable-wip-limit": "WIP-Limit einschalten",
- "error-board-doesNotExist": "Dieses Board existiert nicht",
- "error-board-notAdmin": "Um das zu tun, müssen Sie Administrator dieses Boards sein",
- "error-board-notAMember": "Um das zu tun, müssen Sie Mitglied dieses Boards sein",
- "error-json-malformed": "Ihre Eingabe ist kein gültiges JSON",
- "error-json-schema": "Ihre JSON-Daten enthalten nicht die gewünschten Informationen im richtigen Format",
- "error-list-doesNotExist": "Diese Liste existiert nicht",
- "error-user-doesNotExist": "Dieser Nutzer existiert nicht",
- "error-user-notAllowSelf": "Sie können sich nicht selbst einladen.",
- "error-user-notCreated": "Dieser Nutzer ist nicht angelegt",
- "error-username-taken": "Dieser Benutzername ist bereits vergeben",
- "error-email-taken": "E-Mail wird schon verwendet",
- "export-board": "Board exportieren",
- "filter": "Filter",
- "filter-cards": "Karten filtern",
- "filter-clear": "Filter entfernen",
- "filter-no-label": "Kein Label",
- "filter-no-member": "Kein Mitglied",
- "filter-no-custom-fields": "Keine benutzerdefinierten Felder",
- "filter-on": "Filter ist aktiv",
- "filter-on-desc": "Sie filtern die Karten in diesem Board. Klicken Sie, um den Filter zu bearbeiten.",
- "filter-to-selection": "Ergebnisse auswählen",
- "advanced-filter-label": "Erweiterter Filter",
- "advanced-filter-description": "Der erweiterte Filter erlaubt die Eingabe von Zeichenfolgen, die folgende Operatoren enthalten: == != <= >= && || ( ). Ein Leerzeichen wird als Trennzeichen zwischen den Operatoren verwendet. Sie können nach allen benutzerdefinierten Feldern filtern, indem Sie deren Namen und Werte eingeben. Zum Beispiel: Feld1 == Wert1. Hinweis: Wenn Felder oder Werte Leerzeichen enthalten, müssen Sie sie in einfache Anführungszeichen setzen. Zum Beispiel: 'Feld 1' == 'Wert 1'. Um einzelne Steuerzeichen (' \\/) zu überspringen, können Sie \\ verwenden. Zum Beispiel: Feld1 == Ich bin\\'s. Sie können außerdem mehrere Bedingungen kombinieren. Zum Beispiel: F1 == W1 || F1 == W2. Normalerweise werden alle Operatoren von links nach rechts interpretiert. Sie können die Reihenfolge ändern, indem Sie Klammern setzen. Zum Beispiel: F1 == W1 && ( F2 == W2 || F2 == W3 ). Sie können Textfelder auch mithilfe regulärer Ausdrücke durchsuchen: F1 == /Tes.*/i",
- "fullname": "Vollständiger Name",
- "header-logo-title": "Zurück zur Board Seite.",
- "hide-system-messages": "Systemmeldungen ausblenden",
- "headerBarCreateBoardPopup-title": "Board erstellen",
- "home": "Home",
- "import": "Importieren",
- "link": "Verknüpfung",
- "import-board": "Board importieren",
- "import-board-c": "Board importieren",
- "import-board-title-trello": "Board von Trello importieren",
- "import-board-title-wekan": "Board aus vorherigem Export importieren",
- "import-sandstorm-backup-warning": "Löschen Sie keine Daten, die Sie aus einem ursprünglich exportierten oder Trelloboard importieren, bevor Sie geprüft haben, ob alles funktioniert. Andernfalls kann es zu Datenverlust kommen, falls es zu einem \"Board nicht gefunden\"-Fehler kommt.",
- "import-sandstorm-warning": "Das importierte Board wird alle bereits existierenden Daten löschen und mit den importierten Daten überschreiben.",
- "from-trello": "Von Trello",
- "from-wekan": "Aus vorherigem Export",
- "import-board-instruction-trello": "Gehen Sie in ihrem Trello-Board auf 'Menü', dann 'Mehr', 'Drucken und Exportieren', 'JSON-Export' und kopieren Sie den dort angezeigten Text",
- "import-board-instruction-wekan": "Gehen Sie in Ihrem Board auf 'Menü', danach auf 'Board exportieren' und kopieren Sie den Text aus der heruntergeladenen Datei.",
- "import-board-instruction-about-errors": "Treten beim importieren eines Board Fehler auf, so kann der Import dennoch erfolgreich abgeschlossen sein und das Board ist auf der Seite \"Alle Boards\" zusehen.",
- "import-json-placeholder": "Fügen Sie die korrekten JSON-Daten hier ein",
- "import-map-members": "Mitglieder zuordnen",
- "import-members-map": "Das importierte Board hat einige Mitglieder. Bitte ordnen sie die Mitglieder, die Sie importieren wollen, Ihren Benutzern zu.",
- "import-show-user-mapping": "Mitgliederzuordnung überprüfen",
- "import-user-select": "Wählen Sie den bestehenden Benutzer aus, den Sie für dieses Mitglied verwenden wollen.",
- "importMapMembersAddPopup-title": "Mitglied auswählen",
- "info": "Version",
- "initials": "Initialen",
- "invalid-date": "Ungültiges Datum",
- "invalid-time": "Ungültige Zeitangabe",
- "invalid-user": "Ungültiger Benutzer",
- "joined": "beigetreten",
- "just-invited": "Sie wurden soeben zu diesem Board eingeladen",
- "keyboard-shortcuts": "Tastaturkürzel",
- "label-create": "Label erstellen",
- "label-default": "%s Label (Standard)",
- "label-delete-pop": "Aktion kann nicht rückgängig gemacht werden. Das Label wird von allen Karten entfernt und seine Historie gelöscht.",
- "labels": "Labels",
- "language": "Sprache",
- "last-admin-desc": "Sie können keine Rollen ändern, weil es mindestens einen Administrator geben muss.",
- "leave-board": "Board verlassen",
- "leave-board-pop": "Sind Sie sicher, dass Sie __boardTitle__ verlassen möchten? Sie werden von allen Karten in diesem Board entfernt.",
- "leaveBoardPopup-title": "Board verlassen?",
- "link-card": "Link zu dieser Karte",
- "list-archive-cards": "Alle Karten dieser Liste ins Archiv verschieben",
- "list-archive-cards-pop": "Alle Karten dieser Liste werden vom Board entfernt. Um Karten im Papierkorb anzuzeigen und wiederherzustellen, klicken Sie auf \"Menü\" > \"Archiv\".",
- "list-move-cards": "Alle Karten in dieser Liste verschieben",
- "list-select-cards": "Alle Karten in dieser Liste auswählen",
- "set-color-list": "Lege Farbe fest",
- "listActionPopup-title": "Listenaktionen",
- "swimlaneActionPopup-title": "Swimlaneaktionen",
- "swimlaneAddPopup-title": "Swimlane unterhalb einfügen",
- "listImportCardPopup-title": "Eine Trello-Karte importieren",
- "listMorePopup-title": "Mehr",
- "link-list": "Link zu dieser Liste",
- "list-delete-pop": "Alle Aktionen werden aus dem Verlauf gelöscht und die Liste kann nicht wiederhergestellt werden.",
- "list-delete-suggest-archive": "Listen können ins Archiv verschoben werden, um sie aus dem Board zu entfernen und die Aktivitäten zu behalten.",
- "lists": "Listen",
- "swimlanes": "Swimlanes",
- "log-out": "Ausloggen",
- "log-in": "Einloggen",
- "loginPopup-title": "Einloggen",
- "memberMenuPopup-title": "Nutzereinstellungen",
- "members": "Mitglieder",
- "menu": "Menü",
- "move-selection": "Auswahl verschieben",
- "moveCardPopup-title": "Karte verschieben",
- "moveCardToBottom-title": "Ans Ende verschieben",
- "moveCardToTop-title": "Zum Anfang verschieben",
- "moveSelectionPopup-title": "Auswahl verschieben",
- "multi-selection": "Mehrfachauswahl",
- "multi-selection-on": "Mehrfachauswahl ist aktiv",
- "muted": "Stumm",
- "muted-info": "Sie werden nicht über Änderungen auf diesem Board benachrichtigt",
- "my-boards": "Meine Boards",
- "name": "Name",
- "no-archived-cards": "Keine Karten im Archiv.",
- "no-archived-lists": "Keine Listen im Archiv.",
- "no-archived-swimlanes": "Keine Swimlanes im Archiv.",
- "no-results": "Keine Ergebnisse",
- "normal": "Normal",
- "normal-desc": "Kann Karten anzeigen und bearbeiten, aber keine Einstellungen ändern.",
- "not-accepted-yet": "Die Einladung wurde noch nicht angenommen",
- "notify-participate": "Benachrichtigungen zu allen Karten erhalten, an denen Sie teilnehmen",
- "notify-watch": "Benachrichtigungen über alle Boards, Listen oder Karten erhalten, die Sie beobachten",
- "optional": "optional",
- "or": "oder",
- "page-maybe-private": "Diese Seite könnte privat sein. Vielleicht können Sie sie sehen, wenn Sie sich <a href='%s'>einloggen</a>.",
- "page-not-found": "Seite nicht gefunden.",
- "password": "Passwort",
- "paste-or-dragdrop": "Einfügen oder Datei mit Drag & Drop ablegen (nur Bilder)",
- "participating": "Teilnehmen",
- "preview": "Vorschau",
- "previewAttachedImagePopup-title": "Vorschau",
- "previewClipboardImagePopup-title": "Vorschau",
- "private": "Privat",
- "private-desc": "Dieses Board ist privat. Nur Nutzer, die zu dem Board gehören, können es anschauen und bearbeiten.",
- "profile": "Profil",
- "public": "Öffentlich",
- "public-desc": "Dieses Board ist öffentlich. Es ist für jeden, der den Link kennt, sichtbar und taucht in Suchmaschinen wie Google auf. Nur Nutzer, die zum Board hinzugefügt wurden, können es bearbeiten.",
- "quick-access-description": "Markieren Sie ein Board mit einem Stern, um dieser Leiste eine Verknüpfung hinzuzufügen.",
- "remove-cover": "Cover entfernen",
- "remove-from-board": "Von Board entfernen",
- "remove-label": "Label entfernen",
- "listDeletePopup-title": "Liste löschen?",
- "remove-member": "Nutzer entfernen",
- "remove-member-from-card": "Von Karte entfernen",
- "remove-member-pop": "__name__ (__username__) von __boardTitle__ entfernen? Das Mitglied wird von allen Karten auf diesem Board entfernt. Es erhält eine Benachrichtigung.",
- "removeMemberPopup-title": "Mitglied entfernen?",
- "rename": "Umbenennen",
- "rename-board": "Board umbenennen",
- "restore": "Wiederherstellen",
- "save": "Speichern",
- "search": "Suchen",
- "rules": "Regeln",
- "search-cards": "Suche nach Kartentiteln und Beschreibungen auf diesem Board",
- "search-example": "Suchbegriff",
- "select-color": "Farbe auswählen",
- "set-wip-limit-value": "Setzen Sie ein Limit für die maximale Anzahl von Aufgaben in dieser Liste",
- "setWipLimitPopup-title": "WIP-Limit setzen",
- "shortcut-assign-self": "Fügen Sie sich zur aktuellen Karte hinzu",
- "shortcut-autocomplete-emoji": "Emojis vervollständigen",
- "shortcut-autocomplete-members": "Mitglieder vervollständigen",
- "shortcut-clear-filters": "Alle Filter entfernen",
- "shortcut-close-dialog": "Dialog schließen",
- "shortcut-filter-my-cards": "Meine Karten filtern",
- "shortcut-show-shortcuts": "Liste der Tastaturkürzel anzeigen",
- "shortcut-toggle-filterbar": "Filter-Seitenleiste ein-/ausblenden",
- "shortcut-toggle-sidebar": "Seitenleiste ein-/ausblenden",
- "show-cards-minimum-count": "Zeigt die Kartenanzahl an, wenn die Liste mehr enthält als",
- "sidebar-open": "Seitenleiste öffnen",
- "sidebar-close": "Seitenleiste schließen",
- "signupPopup-title": "Benutzerkonto erstellen",
- "star-board-title": "Klicken Sie, um das Board mit einem Stern zu markieren. Es erscheint dann oben in ihrer Boardliste.",
- "starred-boards": "Markierte Boards",
- "starred-boards-description": "Markierte Boards erscheinen oben in ihrer Boardliste.",
- "subscribe": "Abonnieren",
- "team": "Team",
- "this-board": "diesem Board",
- "this-card": "diese Karte",
- "spent-time-hours": "Aufgewendete Zeit (Stunden)",
- "overtime-hours": "Mehrarbeit (Stunden)",
- "overtime": "Mehrarbeit",
- "has-overtime-cards": "Hat Karten mit Mehrarbeit",
- "has-spenttime-cards": "Hat Karten mit aufgewendeten Zeiten",
- "time": "Zeit",
- "title": "Titel",
- "tracking": "Folgen",
- "tracking-info": "Sie werden über alle Änderungen an Karten benachrichtigt, an denen Sie als Ersteller oder Mitglied beteiligt sind.",
- "type": "Typ",
- "unassign-member": "Mitglied entfernen",
- "unsaved-description": "Sie haben eine nicht gespeicherte Änderung.",
- "unwatch": "Beobachtung entfernen",
- "upload": "Upload",
- "upload-avatar": "Profilbild hochladen",
- "uploaded-avatar": "Profilbild hochgeladen",
- "username": "Benutzername",
- "view-it": "Ansehen",
- "warn-list-archived": "Warnung: Diese Karte befindet sich in einer Liste im Archiv",
- "watch": "Beobachten",
- "watching": "Beobachten",
- "watching-info": "Sie werden über alle Änderungen in diesem Board benachrichtigt",
- "welcome-board": "Willkommen-Board",
- "welcome-swimlane": "Meilenstein 1",
- "welcome-list1": "Grundlagen",
- "welcome-list2": "Fortgeschritten",
- "card-templates-swimlane": "Kartenvorlagen",
- "list-templates-swimlane": "Listenvorlagen",
- "board-templates-swimlane": "Boardvorlagen",
- "what-to-do": "Was wollen Sie tun?",
- "wipLimitErrorPopup-title": "Ungültiges WIP-Limit",
- "wipLimitErrorPopup-dialog-pt1": "Die Anzahl von Aufgaben in dieser Liste ist größer als das von Ihnen definierte WIP-Limit.",
- "wipLimitErrorPopup-dialog-pt2": "Bitte verschieben Sie einige Aufgaben aus dieser Liste oder setzen Sie ein grösseres WIP-Limit.",
- "admin-panel": "Administration",
- "settings": "Einstellungen",
- "people": "Nutzer",
- "registration": "Registrierung",
- "disable-self-registration": "Selbstregistrierung deaktivieren",
- "invite": "Einladen",
- "invite-people": "Nutzer einladen",
- "to-boards": "In Board(s)",
- "email-addresses": "E-Mail Adressen",
- "smtp-host-description": "Die Adresse Ihres SMTP-Servers für ausgehende E-Mails.",
- "smtp-port-description": "Der Port Ihres SMTP-Servers für ausgehende E-Mails.",
- "smtp-tls-description": "Aktiviere TLS Unterstützung für SMTP Server",
- "smtp-host": "SMTP-Server",
- "smtp-port": "SMTP-Port",
- "smtp-username": "Benutzername",
- "smtp-password": "Passwort",
- "smtp-tls": "TLS Unterstützung",
- "send-from": "Absender",
- "send-smtp-test": "Test-E-Mail an sich selbst schicken",
- "invitation-code": "Einladungscode",
- "email-invite-register-subject": "__inviter__ hat Ihnen eine Einladung geschickt",
- "email-invite-register-text": "Sehr geehrte(r) __user__,\n\n__inviter__ hat Sie zur Mitarbeit an einem Kanbanboard eingeladen.\n\nBitte klicken Sie auf folgenden Link:\n__url__\n\nIhr Einladungscode lautet: __icode__\n\nDanke.",
- "email-smtp-test-subject": "SMTP Test-E-Mail",
- "email-smtp-test-text": "Sie haben erfolgreich eine E-Mail versandt",
- "error-invitation-code-not-exist": "Ungültiger Einladungscode",
- "error-notAuthorized": "Sie sind nicht berechtigt diese Seite zu sehen.",
- "outgoing-webhooks": "Ausgehende Webhooks",
- "outgoingWebhooksPopup-title": "Ausgehende Webhooks",
- "boardCardTitlePopup-title": "Kartentitelfilter",
- "new-outgoing-webhook": "Neuer ausgehender Webhook",
- "no-name": "(Unbekannt)",
- "Node_version": "Node-Version",
- "OS_Arch": "Betriebssystem-Architektur",
- "OS_Cpus": "Anzahl Prozessoren",
- "OS_Freemem": "Freier Arbeitsspeicher",
- "OS_Loadavg": "Mittlere Systembelastung",
- "OS_Platform": "Plattform",
- "OS_Release": "Version des Betriebssystem",
- "OS_Totalmem": "Gesamter Arbeitsspeicher",
- "OS_Type": "Typ des Betriebssystems",
- "OS_Uptime": "Laufzeit des Systems",
- "days": "Tage",
- "hours": "Stunden",
- "minutes": "Minuten",
- "seconds": "Sekunden",
- "show-field-on-card": "Zeige dieses Feld auf der Karte",
- "automatically-field-on-card": "Automatisch Label für alle Karten erzeugen",
- "showLabel-field-on-card": "Feldbezeichnung auf Minikarte anzeigen",
- "yes": "Ja",
- "no": "Nein",
- "accounts": "Konten",
- "accounts-allowEmailChange": "Ändern der E-Mailadresse erlauben",
- "accounts-allowUserNameChange": "Ändern des Benutzernamens erlauben",
- "createdAt": "Erstellt am",
- "verified": "Geprüft",
- "active": "Aktiv",
- "card-received": "Empfangen",
- "card-received-on": "Empfangen am",
- "card-end": "Ende",
- "card-end-on": "Endet am",
- "editCardReceivedDatePopup-title": "Empfangsdatum ändern",
- "editCardEndDatePopup-title": "Enddatum ändern",
- "setCardColorPopup-title": "Farbe festlegen",
- "setCardActionsColorPopup-title": "Farbe wählen",
- "setSwimlaneColorPopup-title": "Farbe wählen",
- "setListColorPopup-title": "Farbe wählen",
- "assigned-by": "Zugewiesen von",
- "requested-by": "Angefordert von",
- "board-delete-notice": "Löschen kann nicht rückgängig gemacht werden. Sie werden alle Listen, Karten und Aktionen, die mit diesem Board verbunden sind, verlieren.",
- "delete-board-confirm-popup": "Alle Listen, Karten, Labels und Akivitäten werden gelöscht und Sie können die Inhalte des Boards nicht wiederherstellen! Die Aktion kann nicht rückgängig gemacht werden.",
- "boardDeletePopup-title": "Board löschen?",
- "delete-board": "Board löschen",
- "default-subtasks-board": "Teilaufgabe für __board__ Board",
- "default": "Standard",
- "queue": "Warteschlange",
- "subtask-settings": "Einstellungen für Teilaufgaben",
- "boardSubtaskSettingsPopup-title": "Boardeinstellungen für Teilaufgaben",
- "show-subtasks-field": "Karten können Teilaufgaben haben",
- "deposit-subtasks-board": "Teilaufgaben in diesem Board ablegen:",
- "deposit-subtasks-list": "Zielliste für hier abgelegte Teilaufgaben:",
- "show-parent-in-minicard": "Übergeordnetes Element auf Minikarte anzeigen:",
- "prefix-with-full-path": "Vollständiger Pfad über Titel",
- "prefix-with-parent": "Über Titel",
- "subtext-with-full-path": "Vollständiger Pfad unter Titel",
- "subtext-with-parent": "Unter Titel",
- "change-card-parent": "Übergeordnete Karte ändern",
- "parent-card": "Übergeordnete Karte",
- "source-board": "Quellboard",
- "no-parent": "Nicht anzeigen",
- "activity-added-label": "fügte Label '%s' zu %s hinzu",
- "activity-removed-label": "entfernte Label '%s' von %s",
- "activity-delete-attach": "löschte ein Anhang von %s",
- "activity-added-label-card": "Label hinzugefügt '%s'",
- "activity-removed-label-card": "Label entfernt '%s'",
- "activity-delete-attach-card": "hat einen Anhang gelöscht",
- "activity-set-customfield": "setze benutzerdefiniertes Feld '%s' zu '%s' in %s",
- "activity-unset-customfield": "entferne benutzerdefiniertes Feld '%s' in %s",
- "r-rule": "Regel",
- "r-add-trigger": "Auslöser hinzufügen",
- "r-add-action": "Aktion hinzufügen",
- "r-board-rules": "Boardregeln",
- "r-add-rule": "Regel hinzufügen",
- "r-view-rule": "Regel anzeigen",
- "r-delete-rule": "Regel löschen",
- "r-new-rule-name": "Neuer Regeltitel",
- "r-no-rules": "Keine Regeln",
- "r-when-a-card": "Wenn Karte",
- "r-is": "wird",
- "r-is-moved": "verschoben wird",
- "r-added-to": "hinzugefügt zu",
- "r-removed-from": "entfernt von",
- "r-the-board": "das Board",
- "r-list": "Liste",
- "set-filter": "Setze Filter",
- "r-moved-to": "verschoben nach",
- "r-moved-from": "verschoben von",
- "r-archived": "ins Archiv verschoben",
- "r-unarchived": "aus dem Archiv wiederhergestellt",
- "r-a-card": "einer Karte",
- "r-when-a-label-is": "Wenn ein Label",
- "r-when-the-label": "Wenn das Label",
- "r-list-name": "Listenname",
- "r-when-a-member": "Wenn ein Mitglied",
- "r-when-the-member": "Wenn das Mitglied",
- "r-name": "Name",
- "r-when-a-attach": "Wenn ein Anhang",
- "r-when-a-checklist": "Wenn eine Checkliste wird",
- "r-when-the-checklist": "Wenn die Checkliste",
- "r-completed": "abgeschlossen",
- "r-made-incomplete": "unvollständig gemacht",
- "r-when-a-item": "Wenn eine Checklistenposition",
- "r-when-the-item": "Wenn die Checklistenposition",
- "r-checked": "markiert wird",
- "r-unchecked": "abgewählt wird",
- "r-move-card-to": "Verschiebe Karte an",
- "r-top-of": "Anfang von",
- "r-bottom-of": "Ende von",
- "r-its-list": "seiner Liste",
- "r-archive": "Ins Archiv verschieben",
- "r-unarchive": "Aus dem Archiv wiederherstellen",
- "r-card": "Karte",
- "r-add": "Hinzufügen",
- "r-remove": "entfernen",
- "r-label": "Label",
- "r-member": "Mitglied",
- "r-remove-all": "Entferne alle Mitglieder von der Karte",
- "r-set-color": "Farbe festlegen auf",
- "r-checklist": "Checkliste",
- "r-check-all": "Alle markieren",
- "r-uncheck-all": "Alle abwählen",
- "r-items-check": "Elemente der Checkliste",
- "r-check": "Markieren",
- "r-uncheck": "Abwählen",
- "r-item": "Element",
- "r-of-checklist": "der Checkliste",
- "r-send-email": "Eine E-Mail senden",
- "r-to": "an",
- "r-subject": "Betreff",
- "r-rule-details": "Regeldetails",
- "r-d-move-to-top-gen": "Karte nach oben in die Liste verschieben",
- "r-d-move-to-top-spec": "Karte an den Anfang der Liste verschieben",
- "r-d-move-to-bottom-gen": "Karte nach unten in die Liste verschieben",
- "r-d-move-to-bottom-spec": "Karte an das Ende der Liste verschieben",
- "r-d-send-email": "E-Mail senden",
- "r-d-send-email-to": "an",
- "r-d-send-email-subject": "Betreff",
- "r-d-send-email-message": "Nachricht",
- "r-d-archive": "Karte ins Archiv verschieben",
- "r-d-unarchive": "Karte aus dem Archiv wiederherstellen",
- "r-d-add-label": "Label hinzufügen",
- "r-d-remove-label": "Label entfernen",
- "r-create-card": "Neue Karte erstellen",
- "r-in-list": "in der Liste",
- "r-in-swimlane": "in Swimlane",
- "r-d-add-member": "Mitglied hinzufügen",
- "r-d-remove-member": "Mitglied entfernen",
- "r-d-remove-all-member": "Entferne alle Mitglieder",
- "r-d-check-all": "Alle Elemente der Liste markieren",
- "r-d-uncheck-all": "Alle Element der Liste abwählen",
- "r-d-check-one": "Element auswählen",
- "r-d-uncheck-one": "Element abwählen",
- "r-d-check-of-list": "der Checkliste",
- "r-d-add-checklist": "Checkliste hinzufügen",
- "r-d-remove-checklist": "Checkliste entfernen",
- "r-by": "durch",
- "r-add-checklist": "Checkliste hinzufügen",
- "r-with-items": "mit Elementen",
- "r-items-list": "Element1,Element2,Element3",
- "r-add-swimlane": "Füge Swimlane hinzu",
- "r-swimlane-name": "Swimlanename",
- "r-board-note": "Hinweis: Lassen Sie ein Feld leer, um alle möglichen Werte zu finden.",
- "r-checklist-note": "Hinweis: Die Elemente der Checkliste müssen als kommagetrennte Werte geschrieben werden.",
- "r-when-a-card-is-moved": "Wenn eine Karte in eine andere Liste verschoben wird",
- "r-set": "Setze",
- "r-update": "Aktualisiere",
- "r-datefield": "Datumsfeld",
- "r-df-start-at": "Start",
- "r-df-due-at": "Fällig",
- "r-df-end-at": "Ende",
- "r-df-received-at": "Empfangen",
- "r-to-current-datetime": "auf das aktuelle Datum/Zeit",
- "r-remove-value-from": "Entferne Wert von",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentifizierungsmethode",
- "authentication-type": "Authentifizierungstyp",
- "custom-product-name": "Benutzerdefinierter Produktname",
- "layout": "Layout",
- "hide-logo": "Verstecke Logo",
- "add-custom-html-after-body-start": "Füge benutzerdefiniertes HTML nach <body> Anfang hinzu",
- "add-custom-html-before-body-end": "Füge benutzerdefiniertes HTML vor </body>Ende hinzu",
- "error-undefined": "Etwas ist schief gelaufen",
- "error-ldap-login": "Es ist ein Fehler beim Anmelden aufgetreten",
- "display-authentication-method": "Anzeige Authentifizierungsverfahren",
- "default-authentication-method": "Standardauthentifizierungsverfahren",
- "duplicate-board": "Board duplizieren",
- "people-number": "Anzahl der Personen:",
- "swimlaneDeletePopup-title": "Swimlane löschen?",
- "swimlane-delete-pop": "Alle Aktionen werden aus dem Aktivitätenfeed entfernt und die Swimlane kann nicht wiederhergestellt werden. Die Aktion kann nicht rückgängig gemacht werden.",
- "restore-all": "Alles wiederherstellen",
- "delete-all": "Alles löschen",
- "loading": "Laden, bitte warten.",
- "previous_as": "letzter Zeitpunkt war",
- "act-a-dueAt": "hat Fälligkeit geändert auf\nWann: __timeValue__\nWo: __card__\nvorheriger Fälligkeitszeitpunkt war __timeOldValue__",
- "act-a-endAt": "hat Ende auf __timeValue__ von (__timeOldValue__) geändert",
- "act-a-startAt": "hat Start auf __timeValue__ von (__timeOldValue__) geändert",
- "act-a-receivedAt": "hat Empfangszeit auf __timeValue__ von (__timeOldValue__) geändert",
- "a-dueAt": "hat Fälligkeit geändert auf",
- "a-endAt": "hat Ende geändert auf",
- "a-startAt": "hat Startzeit geändert auf",
- "a-receivedAt": "hat Empfangszeit geändert auf",
- "almostdue": "aktuelles Fälligkeitsdatum %s bevorstehend",
- "pastdue": "aktuelles Fälligkeitsdatum %s überschritten",
- "duenow": "aktuelles Fälligkeitsdatum %s heute",
- "act-withDue": "__card__ fällige Erinnerungen [__board__]",
- "act-almostdue": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist bevorstehend",
- "act-pastdue": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist vorbei",
- "act-duenow": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist jetzt",
- "act-atUserComment": "Du wurdest erwähnt in [__board__] __card__",
- "delete-user-confirm-popup": "Sind Sie sicher, dass Sie diesen Account löschen wollen? Die Aktion kann nicht rückgängig gemacht werden.",
- "accounts-allowUserDelete": "Erlaube Benutzern ihren eigenen Account zu löschen"
-} \ No newline at end of file
+ "accept": "Akzeptieren",
+ "act-activity-notify": "Aktivitätsbenachrichtigung",
+ "act-addAttachment": "hat Anhang __attachment__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-deleteAttachment": "hat Anhang __attachment__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ gelöscht",
+ "act-addSubtask": "hat Teilaufgabe __subtask__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-addLabel": "hat Label __label__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-addedLabel": "hat Label __label__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-removeLabel": "hat Label __label__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-removedLabel": "hat Label __label__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-addChecklist": "hat Checkliste __checklist__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-addChecklistItem": "hat Checklistenposition __checklistItem__ zu Checkliste __checkList__ auf der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-removeChecklist": "hat Checkliste __checklist__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-removeChecklistItem": "hat Checklistenposition __checklistItem__ von Checkliste __checkList__ auf der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-checkedItem": "hat __checklistItem__ der Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ abgehakt",
+ "act-uncheckedItem": "hat Haken von __checklistItem__ der Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-completeChecklist": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ vervollständigt",
+ "act-uncompleteChecklist": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ unvervollständigt",
+ "act-addComment": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ kommentiert: __comment__",
+ "act-editComment": "hat den Kommentar auf Karte __card__: __comment__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ bearbeitet",
+ "act-deleteComment": "hat den Kommentar von Karte __card__: __comment__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ gelöscht",
+ "act-createBoard": "hat Board __board__ erstellt",
+ "act-createSwimlane": "hat Swimlane __swimlane__ in Board __board__ erstellt",
+ "act-createCard": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ erstellt",
+ "act-createCustomField": "hat benutzerdefiniertes Feld __customField__ in Board __board__ angelegt",
+ "act-deleteCustomField": "hat benutzerdefiniertes Feld __customField__ in Board __board__ gelöscht",
+ "act-setCustomField": "hat benutzerdefiniertes Feld __customField__: __customFieldValue__ auf Karte __card__ auf Liste __list__ in Swimlane __swimlane__ in Board __board__ bearbeitet",
+ "act-createList": "hat Liste __list__ zu Board __board__ hinzugefügt",
+ "act-addBoardMember": "hat Mitglied __member__ zu Board __board__ hinzugefügt",
+ "act-archivedBoard": "hat Board __board__ ins Archiv verschoben",
+ "act-archivedCard": "hat Karte __card__ von der Liste __list__ in Swimlane __swimlane__ in Board __board__ ins Archiv verschoben",
+ "act-archivedList": "hat Liste __list__ in Swimlane __swimlane__ in Board __board__ ins Archiv verschoben",
+ "act-archivedSwimlane": "hat Swimlane __swimlane__ von Board __board__ ins Archiv verschoben",
+ "act-importBoard": "hat Board __board__ importiert",
+ "act-importCard": "hat Karte __card__ in Liste __list__ in Swimlane __swimlane__ in Board __board__ importiert",
+ "act-importList": "hat Liste __list__ in Swimlane __swimlane__ in Board __board__ importiert",
+ "act-joinMember": "hat Mitglied __member__ zur Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ hinzugefügt",
+ "act-moveCard": "hat Karte __card__ in Board __board__ von Liste __oldList__ in Swimlane __oldSwimlane__ zu Liste __list__ in Swimlane __swimlane__ verschoben",
+ "act-moveCardToOtherBoard": "hat Karte __card__ von Liste __oldList__ in Swimlane __oldSwimlane__ in Board __oldBoard__ zu Liste __list__ in Swimlane __swimlane__ in Board __board__ verschoben",
+ "act-removeBoardMember": "hat Mitglied __member__ von Board __board__ entfernt",
+ "act-restoredCard": "hat Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ wiederhergestellt",
+ "act-unjoinMember": "hat Mitglied __member__ von Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ entfernt",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Aktionen",
+ "activities": "Aktivitäten",
+ "activity": "Aktivität",
+ "activity-added": "hat %s zu %s hinzugefügt",
+ "activity-archived": "hat %s ins Archiv verschoben",
+ "activity-attached": "hat %s an %s angehängt",
+ "activity-created": "hat %s erstellt",
+ "activity-customfield-created": "hat das benutzerdefinierte Feld %s erstellt",
+ "activity-excluded": "hat %s von %s ausgeschlossen",
+ "activity-imported": "hat %s in %s von %s importiert",
+ "activity-imported-board": "hat %s von %s importiert",
+ "activity-joined": "ist %s beigetreten",
+ "activity-moved": "hat %s von %s nach %s verschoben",
+ "activity-on": "in %s",
+ "activity-removed": "hat %s von %s entfernt",
+ "activity-sent": "hat %s an %s gesendet",
+ "activity-unjoined": "hat %s verlassen",
+ "activity-subtask-added": "Teilaufgabe zu %s hinzugefügt",
+ "activity-checked-item": "markierte %s in Checkliste %s von %s",
+ "activity-unchecked-item": "hat %s in Checkliste %s von %s abgewählt",
+ "activity-checklist-added": "hat eine Checkliste zu %s hinzugefügt",
+ "activity-checklist-removed": "entfernte eine Checkliste von %s",
+ "activity-checklist-completed": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ vervollständigt",
+ "activity-checklist-uncompleted": "unvervollständigte die Checkliste %s von %s",
+ "activity-checklist-item-added": "hat ein Checklistenelement zu '%s' in %s hinzugefügt",
+ "activity-checklist-item-removed": "hat ein Checklistenelement von '%s' in %s entfernt",
+ "add": "Hinzufügen",
+ "activity-checked-item-card": "markiere %s in Checkliste %s",
+ "activity-unchecked-item-card": "hat %s in Checkliste %s abgewählt",
+ "activity-checklist-completed-card": "hat Checkliste __checklist__ der Karte __card__ auf der Liste __list__ in Swimlane __swimlane__ in Board __board__ vervollständigt",
+ "activity-checklist-uncompleted-card": "unvervollständigte die Checkliste %s",
+ "add-attachment": "Datei anhängen",
+ "add-board": "neues Board",
+ "add-card": "Karte hinzufügen",
+ "add-swimlane": "Swimlane hinzufügen",
+ "add-subtask": "Teilaufgabe hinzufügen",
+ "add-checklist": "Checkliste hinzufügen",
+ "add-checklist-item": "Element zu Checkliste hinzufügen",
+ "add-cover": "Cover hinzufügen",
+ "add-label": "Label hinzufügen",
+ "add-list": "Liste hinzufügen",
+ "add-members": "Mitglieder hinzufügen",
+ "added": "Hinzugefügt",
+ "addMemberPopup-title": "Mitglieder",
+ "admin": "Admin",
+ "admin-desc": "Kann Karten anzeigen und bearbeiten, Mitglieder entfernen und Boardeinstellungen ändern.",
+ "admin-announcement": "Ankündigung",
+ "admin-announcement-active": "Aktive systemweite Ankündigungen",
+ "admin-announcement-title": "Ankündigung des Administrators",
+ "all-boards": "Alle Boards",
+ "and-n-other-card": "und eine andere Karte",
+ "and-n-other-card_plural": "und __count__ andere Karten",
+ "apply": "Übernehmen",
+ "app-is-offline": "Laden, bitte warten. Das Aktualisieren der Seite führt zu Datenverlust. Wenn das Laden nicht funktioniert, überprüfen Sie bitte, ob der Server nicht angehalten wurde.",
+ "archive": "Ins Archiv verschieben",
+ "archive-all": "Alles ins Archiv verschieben",
+ "archive-board": "Board ins Archiv verschieben",
+ "archive-card": "Karte ins Archiv verschieben",
+ "archive-list": "Liste ins Archiv verschieben",
+ "archive-swimlane": "Swimlane ins Archiv verschieben",
+ "archive-selection": "Auswahl ins Archiv verschieben",
+ "archiveBoardPopup-title": "Board ins Archiv verschieben?",
+ "archived-items": "Archiv",
+ "archived-boards": "Boards im Archiv",
+ "restore-board": "Board wiederherstellen",
+ "no-archived-boards": "Keine Boards im Archiv.",
+ "archives": "Archiv",
+ "template": "Vorlage",
+ "templates": "Vorlagen",
+ "assign-member": "Mitglied zuweisen",
+ "attached": "angehängt",
+ "attachment": "Anhang",
+ "attachment-delete-pop": "Das Löschen eines Anhangs kann nicht rückgängig gemacht werden.",
+ "attachmentDeletePopup-title": "Anhang löschen?",
+ "attachments": "Anhänge",
+ "auto-watch": "Neue Boards nach Erstellung automatisch beobachten",
+ "avatar-too-big": "Das Profilbild ist zu groß (max. 70KB)",
+ "back": "Zurück",
+ "board-change-color": "Farbe ändern",
+ "board-nb-stars": "%s Sterne",
+ "board-not-found": "Board nicht gefunden",
+ "board-private-info": "Dieses Board wird <strong>privat</strong> sein.",
+ "board-public-info": "Dieses Board wird <strong>öffentlich</strong> sein.",
+ "boardChangeColorPopup-title": "Farbe des Boards ändern",
+ "boardChangeTitlePopup-title": "Board umbenennen",
+ "boardChangeVisibilityPopup-title": "Sichtbarkeit ändern",
+ "boardChangeWatchPopup-title": "Beobachtung ändern",
+ "boardMenuPopup-title": "Boardeinstellungen",
+ "boards": "Boards",
+ "board-view": "Boardansicht",
+ "board-view-cal": "Kalender",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Listen",
+ "bucket-example": "z.B. \"Löffelliste\"",
+ "cancel": "Abbrechen",
+ "card-archived": "Diese Karte wurde ins Archiv verschoben",
+ "board-archived": "Dieses Board wurde ins Archiv verschoben.",
+ "card-comments-title": "Diese Karte hat %s Kommentar(e).",
+ "card-delete-notice": "Löschen kann nicht rückgängig gemacht werden. Alle Aktionen, die dieser Karte zugeordnet sind, werden ebenfalls gelöscht.",
+ "card-delete-pop": "Alle Aktionen werden aus dem Aktivitätsfeed entfernt und die Karte kann nicht wiedereröffnet werden. Die Aktion kann nicht rückgängig gemacht werden.",
+ "card-delete-suggest-archive": "Sie können eine Karte ins Archiv verschieben, um sie vom Board zu entfernen und die Aktivitäten zu behalten.",
+ "card-due": "Fällig",
+ "card-due-on": "Fällig am",
+ "card-spent": "Aufgewendete Zeit",
+ "card-edit-attachments": "Anhänge ändern",
+ "card-edit-custom-fields": "Benutzerdefinierte Felder editieren",
+ "card-edit-labels": "Labels ändern",
+ "card-edit-members": "Mitglieder ändern",
+ "card-labels-title": "Labels für diese Karte ändern.",
+ "card-members-title": "Der Karte Board-Mitglieder hinzufügen oder entfernen.",
+ "card-start": "Start",
+ "card-start-on": "Start am",
+ "cardAttachmentsPopup-title": "Anhängen von",
+ "cardCustomField-datePopup-title": "Datum ändern",
+ "cardCustomFieldsPopup-title": "Benutzerdefinierte Felder editieren",
+ "cardDeletePopup-title": "Karte löschen?",
+ "cardDetailsActionsPopup-title": "Kartenaktionen",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Mitglieder",
+ "cardMorePopup-title": "Mehr",
+ "cardTemplatePopup-title": "Vorlage erstellen",
+ "cards": "Karten",
+ "cards-count": "Karten",
+ "casSignIn": "Mit CAS anmelden",
+ "cardType-card": "Karte",
+ "cardType-linkedCard": "Verknüpfte Karte",
+ "cardType-linkedBoard": "Verknüpftes Board",
+ "change": "Ändern",
+ "change-avatar": "Profilbild ändern",
+ "change-password": "Passwort ändern",
+ "change-permissions": "Berechtigungen ändern",
+ "change-settings": "Einstellungen ändern",
+ "changeAvatarPopup-title": "Profilbild ändern",
+ "changeLanguagePopup-title": "Sprache ändern",
+ "changePasswordPopup-title": "Passwort ändern",
+ "changePermissionsPopup-title": "Berechtigungen ändern",
+ "changeSettingsPopup-title": "Einstellungen ändern",
+ "subtasks": "Teilaufgaben",
+ "checklists": "Checklisten",
+ "click-to-star": "Klicken Sie, um das Board mit einem Stern zu markieren.",
+ "click-to-unstar": "Klicken Sie, um den Stern vom Board zu entfernen.",
+ "clipboard": "Zwischenablage oder Drag & Drop",
+ "close": "Schließen",
+ "close-board": "Board schließen",
+ "close-board-pop": "Sie können das Board wiederherstellen, indem Sie die Schaltfläche \"Archiv\" in der Kopfzeile der Startseite anklicken.",
+ "color-black": "schwarz",
+ "color-blue": "blau",
+ "color-crimson": "Karminrot",
+ "color-darkgreen": "Dunkelgrün",
+ "color-gold": "Gold",
+ "color-gray": "Grau",
+ "color-green": "grün",
+ "color-indigo": "Indigo",
+ "color-lime": "hellgrün",
+ "color-magenta": "Magentarot",
+ "color-mistyrose": "Altrosa",
+ "color-navy": "Marineblau",
+ "color-orange": "orange",
+ "color-paleturquoise": "Blasses Türkis",
+ "color-peachpuff": "Pfirsich",
+ "color-pink": "pink",
+ "color-plum": "Pflaume",
+ "color-purple": "lila",
+ "color-red": "rot",
+ "color-saddlebrown": "Sattelbraun",
+ "color-silver": "Silber",
+ "color-sky": "himmelblau",
+ "color-slateblue": "Schieferblau",
+ "color-white": "Weiß",
+ "color-yellow": "gelb",
+ "unset-color": "Nicht festgelegt",
+ "comment": "Kommentar",
+ "comment-placeholder": "Kommentar schreiben",
+ "comment-only": "Nur Kommentare",
+ "comment-only-desc": "Kann Karten nur kommentieren.",
+ "no-comments": "Keine Kommentare",
+ "no-comments-desc": "Kann keine Kommentare und Aktivitäten sehen.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Wollen Sie die Teilaufgabe wirklich löschen?",
+ "confirm-checklist-delete-dialog": "Wollen Sie die Checkliste wirklich löschen?",
+ "copy-card-link-to-clipboard": "Kopiere Link zur Karte in die Zwischenablage",
+ "linkCardPopup-title": "Karte verknüpfen",
+ "searchElementPopup-title": "Suche",
+ "copyCardPopup-title": "Karte kopieren",
+ "copyChecklistToManyCardsPopup-title": "Checklistenvorlage in mehrere Karten kopieren",
+ "copyChecklistToManyCardsPopup-instructions": "Titel und Beschreibungen der Zielkarten im folgenden JSON-Format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titel der ersten Karte\", \"description\":\"Beschreibung der ersten Karte\"}, {\"title\":\"Titel der zweiten Karte\",\"description\":\"Beschreibung der zweiten Karte\"},{\"title\":\"Titel der letzten Karte\",\"description\":\"Beschreibung der letzten Karte\"} ]",
+ "create": "Erstellen",
+ "createBoardPopup-title": "Board erstellen",
+ "chooseBoardSourcePopup-title": "Board importieren",
+ "createLabelPopup-title": "Label erstellen",
+ "createCustomField": "Feld erstellen",
+ "createCustomFieldPopup-title": "Feld erstellen",
+ "current": "aktuell",
+ "custom-field-delete-pop": "Dies wird das Feld aus allen Karten entfernen und den dazugehörigen Verlauf löschen. Die Aktion kann nicht rückgängig gemacht werden.",
+ "custom-field-checkbox": "Kontrollkästchen",
+ "custom-field-date": "Datum",
+ "custom-field-dropdown": "Dropdownliste",
+ "custom-field-dropdown-none": "(keiner)",
+ "custom-field-dropdown-options": "Listenoptionen",
+ "custom-field-dropdown-options-placeholder": "Drücken Sie die Eingabetaste, um weitere Optionen hinzuzufügen",
+ "custom-field-dropdown-unknown": "(unbekannt)",
+ "custom-field-number": "Zahl",
+ "custom-field-text": "Text",
+ "custom-fields": "Benutzerdefinierte Felder",
+ "date": "Datum",
+ "decline": "Ablehnen",
+ "default-avatar": "Standard Profilbild",
+ "delete": "Löschen",
+ "deleteCustomFieldPopup-title": "Benutzerdefiniertes Feld löschen?",
+ "deleteLabelPopup-title": "Label löschen?",
+ "description": "Beschreibung",
+ "disambiguateMultiLabelPopup-title": "Labels vereinheitlichen",
+ "disambiguateMultiMemberPopup-title": "Mitglieder vereinheitlichen",
+ "discard": "Verwerfen",
+ "done": "Erledigt",
+ "download": "Herunterladen",
+ "edit": "Bearbeiten",
+ "edit-avatar": "Profilbild ändern",
+ "edit-profile": "Profil ändern",
+ "edit-wip-limit": "WIP-Limit bearbeiten",
+ "soft-wip-limit": "Soft WIP-Limit",
+ "editCardStartDatePopup-title": "Startdatum ändern",
+ "editCardDueDatePopup-title": "Fälligkeitsdatum ändern",
+ "editCustomFieldPopup-title": "Feld bearbeiten",
+ "editCardSpentTimePopup-title": "Aufgewendete Zeit ändern",
+ "editLabelPopup-title": "Label ändern",
+ "editNotificationPopup-title": "Benachrichtigung ändern",
+ "editProfilePopup-title": "Profil ändern",
+ "email": "E-Mail",
+ "email-enrollAccount-subject": "Ihr Benutzerkonto auf __siteName__ wurde erstellt",
+ "email-enrollAccount-text": "Hallo __user__,\n\num den Dienst nutzen zu können, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
+ "email-fail": "Senden der E-Mail fehlgeschlagen",
+ "email-fail-text": "Fehler beim Senden der E-Mail",
+ "email-invalid": "Ungültige E-Mail-Adresse",
+ "email-invite": "per E-Mail einladen",
+ "email-invite-subject": "__inviter__ hat Ihnen eine Einladung geschickt",
+ "email-invite-text": "Hallo __user__,\n\n__inviter__ hat Sie zu dem Board \"__board__\" eingeladen.\n\nBitte klicken Sie auf folgenden Link:\n\n__url__\n\nDanke.",
+ "email-resetPassword-subject": "Setzten Sie ihr Passwort auf __siteName__ zurück",
+ "email-resetPassword-text": "Hallo __user__,\n\num ihr Passwort zurückzusetzen, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
+ "email-sent": "E-Mail gesendet",
+ "email-verifyEmail-subject": "Bestätigen Sie ihre E-Mail-Adresse auf __siteName__",
+ "email-verifyEmail-text": "Hallo __user__,\n\num ihre E-Mail-Adresse zu bestätigen, klicken Sie bitte auf folgenden Link:\n\n__url__\n\nDanke.",
+ "enable-wip-limit": "WIP-Limit einschalten",
+ "error-board-doesNotExist": "Dieses Board existiert nicht",
+ "error-board-notAdmin": "Um das zu tun, müssen Sie Administrator dieses Boards sein",
+ "error-board-notAMember": "Um das zu tun, müssen Sie Mitglied dieses Boards sein",
+ "error-json-malformed": "Ihre Eingabe ist kein gültiges JSON",
+ "error-json-schema": "Ihre JSON-Daten enthalten nicht die gewünschten Informationen im richtigen Format",
+ "error-list-doesNotExist": "Diese Liste existiert nicht",
+ "error-user-doesNotExist": "Dieser Nutzer existiert nicht",
+ "error-user-notAllowSelf": "Sie können sich nicht selbst einladen.",
+ "error-user-notCreated": "Dieser Nutzer ist nicht angelegt",
+ "error-username-taken": "Dieser Benutzername ist bereits vergeben",
+ "error-email-taken": "E-Mail wird schon verwendet",
+ "export-board": "Board exportieren",
+ "filter": "Filter",
+ "filter-cards": "Karten filtern",
+ "filter-clear": "Filter entfernen",
+ "filter-no-label": "Kein Label",
+ "filter-no-member": "Kein Mitglied",
+ "filter-no-custom-fields": "Keine benutzerdefinierten Felder",
+ "filter-on": "Filter ist aktiv",
+ "filter-on-desc": "Sie filtern die Karten in diesem Board. Klicken Sie, um den Filter zu bearbeiten.",
+ "filter-to-selection": "Ergebnisse auswählen",
+ "advanced-filter-label": "Erweiterter Filter",
+ "advanced-filter-description": "Der erweiterte Filter erlaubt die Eingabe von Zeichenfolgen, die folgende Operatoren enthalten: == != <= >= && || ( ). Ein Leerzeichen wird als Trennzeichen zwischen den Operatoren verwendet. Sie können nach allen benutzerdefinierten Feldern filtern, indem Sie deren Namen und Werte eingeben. Zum Beispiel: Feld1 == Wert1. Hinweis: Wenn Felder oder Werte Leerzeichen enthalten, müssen Sie sie in einfache Anführungszeichen setzen. Zum Beispiel: 'Feld 1' == 'Wert 1'. Um einzelne Steuerzeichen (' \\/) zu überspringen, können Sie \\ verwenden. Zum Beispiel: Feld1 == Ich bin\\'s. Sie können außerdem mehrere Bedingungen kombinieren. Zum Beispiel: F1 == W1 || F1 == W2. Normalerweise werden alle Operatoren von links nach rechts interpretiert. Sie können die Reihenfolge ändern, indem Sie Klammern setzen. Zum Beispiel: F1 == W1 && ( F2 == W2 || F2 == W3 ). Sie können Textfelder auch mithilfe regulärer Ausdrücke durchsuchen: F1 == /Tes.*/i",
+ "fullname": "Vollständiger Name",
+ "header-logo-title": "Zurück zur Board Seite.",
+ "hide-system-messages": "Systemmeldungen ausblenden",
+ "headerBarCreateBoardPopup-title": "Board erstellen",
+ "home": "Home",
+ "import": "Importieren",
+ "link": "Verknüpfung",
+ "import-board": "Board importieren",
+ "import-board-c": "Board importieren",
+ "import-board-title-trello": "Board von Trello importieren",
+ "import-board-title-wekan": "Board aus vorherigem Export importieren",
+ "import-sandstorm-backup-warning": "Löschen Sie keine Daten, die Sie aus einem ursprünglich exportierten oder Trelloboard importieren, bevor Sie geprüft haben, ob alles funktioniert. Andernfalls kann es zu Datenverlust kommen, falls es zu einem \"Board nicht gefunden\"-Fehler kommt.",
+ "import-sandstorm-warning": "Das importierte Board wird alle bereits existierenden Daten löschen und mit den importierten Daten überschreiben.",
+ "from-trello": "Von Trello",
+ "from-wekan": "Aus vorherigem Export",
+ "import-board-instruction-trello": "Gehen Sie in ihrem Trello-Board auf 'Menü', dann 'Mehr', 'Drucken und Exportieren', 'JSON-Export' und kopieren Sie den dort angezeigten Text",
+ "import-board-instruction-wekan": "Gehen Sie in Ihrem Board auf 'Menü', danach auf 'Board exportieren' und kopieren Sie den Text aus der heruntergeladenen Datei.",
+ "import-board-instruction-about-errors": "Treten beim importieren eines Board Fehler auf, so kann der Import dennoch erfolgreich abgeschlossen sein und das Board ist auf der Seite \"Alle Boards\" zusehen.",
+ "import-json-placeholder": "Fügen Sie die korrekten JSON-Daten hier ein",
+ "import-map-members": "Mitglieder zuordnen",
+ "import-members-map": "Das importierte Board hat einige Mitglieder. Bitte ordnen sie die Mitglieder, die Sie importieren wollen, Ihren Benutzern zu.",
+ "import-show-user-mapping": "Mitgliederzuordnung überprüfen",
+ "import-user-select": "Wählen Sie den bestehenden Benutzer aus, den Sie für dieses Mitglied verwenden wollen.",
+ "importMapMembersAddPopup-title": "Mitglied auswählen",
+ "info": "Version",
+ "initials": "Initialen",
+ "invalid-date": "Ungültiges Datum",
+ "invalid-time": "Ungültige Zeitangabe",
+ "invalid-user": "Ungültiger Benutzer",
+ "joined": "beigetreten",
+ "just-invited": "Sie wurden soeben zu diesem Board eingeladen",
+ "keyboard-shortcuts": "Tastaturkürzel",
+ "label-create": "Label erstellen",
+ "label-default": "%s Label (Standard)",
+ "label-delete-pop": "Aktion kann nicht rückgängig gemacht werden. Das Label wird von allen Karten entfernt und seine Historie gelöscht.",
+ "labels": "Labels",
+ "language": "Sprache",
+ "last-admin-desc": "Sie können keine Rollen ändern, weil es mindestens einen Administrator geben muss.",
+ "leave-board": "Board verlassen",
+ "leave-board-pop": "Sind Sie sicher, dass Sie __boardTitle__ verlassen möchten? Sie werden von allen Karten in diesem Board entfernt.",
+ "leaveBoardPopup-title": "Board verlassen?",
+ "link-card": "Link zu dieser Karte",
+ "list-archive-cards": "Alle Karten dieser Liste ins Archiv verschieben",
+ "list-archive-cards-pop": "Alle Karten dieser Liste werden vom Board entfernt. Um Karten im Papierkorb anzuzeigen und wiederherzustellen, klicken Sie auf \"Menü\" > \"Archiv\".",
+ "list-move-cards": "Alle Karten in dieser Liste verschieben",
+ "list-select-cards": "Alle Karten in dieser Liste auswählen",
+ "set-color-list": "Lege Farbe fest",
+ "listActionPopup-title": "Listenaktionen",
+ "swimlaneActionPopup-title": "Swimlaneaktionen",
+ "swimlaneAddPopup-title": "Swimlane unterhalb einfügen",
+ "listImportCardPopup-title": "Eine Trello-Karte importieren",
+ "listMorePopup-title": "Mehr",
+ "link-list": "Link zu dieser Liste",
+ "list-delete-pop": "Alle Aktionen werden aus dem Verlauf gelöscht und die Liste kann nicht wiederhergestellt werden.",
+ "list-delete-suggest-archive": "Listen können ins Archiv verschoben werden, um sie aus dem Board zu entfernen und die Aktivitäten zu behalten.",
+ "lists": "Listen",
+ "swimlanes": "Swimlanes",
+ "log-out": "Ausloggen",
+ "log-in": "Einloggen",
+ "loginPopup-title": "Einloggen",
+ "memberMenuPopup-title": "Nutzereinstellungen",
+ "members": "Mitglieder",
+ "menu": "Menü",
+ "move-selection": "Auswahl verschieben",
+ "moveCardPopup-title": "Karte verschieben",
+ "moveCardToBottom-title": "Ans Ende verschieben",
+ "moveCardToTop-title": "Zum Anfang verschieben",
+ "moveSelectionPopup-title": "Auswahl verschieben",
+ "multi-selection": "Mehrfachauswahl",
+ "multi-selection-on": "Mehrfachauswahl ist aktiv",
+ "muted": "Stumm",
+ "muted-info": "Sie werden nicht über Änderungen auf diesem Board benachrichtigt",
+ "my-boards": "Meine Boards",
+ "name": "Name",
+ "no-archived-cards": "Keine Karten im Archiv.",
+ "no-archived-lists": "Keine Listen im Archiv.",
+ "no-archived-swimlanes": "Keine Swimlanes im Archiv.",
+ "no-results": "Keine Ergebnisse",
+ "normal": "Normal",
+ "normal-desc": "Kann Karten anzeigen und bearbeiten, aber keine Einstellungen ändern.",
+ "not-accepted-yet": "Die Einladung wurde noch nicht angenommen",
+ "notify-participate": "Benachrichtigungen zu allen Karten erhalten, an denen Sie teilnehmen",
+ "notify-watch": "Benachrichtigungen über alle Boards, Listen oder Karten erhalten, die Sie beobachten",
+ "optional": "optional",
+ "or": "oder",
+ "page-maybe-private": "Diese Seite könnte privat sein. Vielleicht können Sie sie sehen, wenn Sie sich <a href='%s'>einloggen</a>.",
+ "page-not-found": "Seite nicht gefunden.",
+ "password": "Passwort",
+ "paste-or-dragdrop": "Einfügen oder Datei mit Drag & Drop ablegen (nur Bilder)",
+ "participating": "Teilnehmen",
+ "preview": "Vorschau",
+ "previewAttachedImagePopup-title": "Vorschau",
+ "previewClipboardImagePopup-title": "Vorschau",
+ "private": "Privat",
+ "private-desc": "Dieses Board ist privat. Nur Nutzer, die zu dem Board gehören, können es anschauen und bearbeiten.",
+ "profile": "Profil",
+ "public": "Öffentlich",
+ "public-desc": "Dieses Board ist öffentlich. Es ist für jeden, der den Link kennt, sichtbar und taucht in Suchmaschinen wie Google auf. Nur Nutzer, die zum Board hinzugefügt wurden, können es bearbeiten.",
+ "quick-access-description": "Markieren Sie ein Board mit einem Stern, um dieser Leiste eine Verknüpfung hinzuzufügen.",
+ "remove-cover": "Cover entfernen",
+ "remove-from-board": "Von Board entfernen",
+ "remove-label": "Label entfernen",
+ "listDeletePopup-title": "Liste löschen?",
+ "remove-member": "Nutzer entfernen",
+ "remove-member-from-card": "Von Karte entfernen",
+ "remove-member-pop": "__name__ (__username__) von __boardTitle__ entfernen? Das Mitglied wird von allen Karten auf diesem Board entfernt. Es erhält eine Benachrichtigung.",
+ "removeMemberPopup-title": "Mitglied entfernen?",
+ "rename": "Umbenennen",
+ "rename-board": "Board umbenennen",
+ "restore": "Wiederherstellen",
+ "save": "Speichern",
+ "search": "Suchen",
+ "rules": "Regeln",
+ "search-cards": "Suche nach Kartentiteln und Beschreibungen auf diesem Board",
+ "search-example": "Suchbegriff",
+ "select-color": "Farbe auswählen",
+ "set-wip-limit-value": "Setzen Sie ein Limit für die maximale Anzahl von Aufgaben in dieser Liste",
+ "setWipLimitPopup-title": "WIP-Limit setzen",
+ "shortcut-assign-self": "Fügen Sie sich zur aktuellen Karte hinzu",
+ "shortcut-autocomplete-emoji": "Emojis vervollständigen",
+ "shortcut-autocomplete-members": "Mitglieder vervollständigen",
+ "shortcut-clear-filters": "Alle Filter entfernen",
+ "shortcut-close-dialog": "Dialog schließen",
+ "shortcut-filter-my-cards": "Meine Karten filtern",
+ "shortcut-show-shortcuts": "Liste der Tastaturkürzel anzeigen",
+ "shortcut-toggle-filterbar": "Filter-Seitenleiste ein-/ausblenden",
+ "shortcut-toggle-sidebar": "Seitenleiste ein-/ausblenden",
+ "show-cards-minimum-count": "Zeigt die Kartenanzahl an, wenn die Liste mehr enthält als",
+ "sidebar-open": "Seitenleiste öffnen",
+ "sidebar-close": "Seitenleiste schließen",
+ "signupPopup-title": "Benutzerkonto erstellen",
+ "star-board-title": "Klicken Sie, um das Board mit einem Stern zu markieren. Es erscheint dann oben in ihrer Boardliste.",
+ "starred-boards": "Markierte Boards",
+ "starred-boards-description": "Markierte Boards erscheinen oben in ihrer Boardliste.",
+ "subscribe": "Abonnieren",
+ "team": "Team",
+ "this-board": "diesem Board",
+ "this-card": "diese Karte",
+ "spent-time-hours": "Aufgewendete Zeit (Stunden)",
+ "overtime-hours": "Mehrarbeit (Stunden)",
+ "overtime": "Mehrarbeit",
+ "has-overtime-cards": "Hat Karten mit Mehrarbeit",
+ "has-spenttime-cards": "Hat Karten mit aufgewendeten Zeiten",
+ "time": "Zeit",
+ "title": "Titel",
+ "tracking": "Folgen",
+ "tracking-info": "Sie werden über alle Änderungen an Karten benachrichtigt, an denen Sie als Ersteller oder Mitglied beteiligt sind.",
+ "type": "Typ",
+ "unassign-member": "Mitglied entfernen",
+ "unsaved-description": "Sie haben eine nicht gespeicherte Änderung.",
+ "unwatch": "Beobachtung entfernen",
+ "upload": "Upload",
+ "upload-avatar": "Profilbild hochladen",
+ "uploaded-avatar": "Profilbild hochgeladen",
+ "username": "Benutzername",
+ "view-it": "Ansehen",
+ "warn-list-archived": "Warnung: Diese Karte befindet sich in einer Liste im Archiv",
+ "watch": "Beobachten",
+ "watching": "Beobachten",
+ "watching-info": "Sie werden über alle Änderungen in diesem Board benachrichtigt",
+ "welcome-board": "Willkommen-Board",
+ "welcome-swimlane": "Meilenstein 1",
+ "welcome-list1": "Grundlagen",
+ "welcome-list2": "Fortgeschritten",
+ "card-templates-swimlane": "Kartenvorlagen",
+ "list-templates-swimlane": "Listenvorlagen",
+ "board-templates-swimlane": "Boardvorlagen",
+ "what-to-do": "Was wollen Sie tun?",
+ "wipLimitErrorPopup-title": "Ungültiges WIP-Limit",
+ "wipLimitErrorPopup-dialog-pt1": "Die Anzahl von Aufgaben in dieser Liste ist größer als das von Ihnen definierte WIP-Limit.",
+ "wipLimitErrorPopup-dialog-pt2": "Bitte verschieben Sie einige Aufgaben aus dieser Liste oder setzen Sie ein grösseres WIP-Limit.",
+ "admin-panel": "Administration",
+ "settings": "Einstellungen",
+ "people": "Nutzer",
+ "registration": "Registrierung",
+ "disable-self-registration": "Selbstregistrierung deaktivieren",
+ "invite": "Einladen",
+ "invite-people": "Nutzer einladen",
+ "to-boards": "In Board(s)",
+ "email-addresses": "E-Mail Adressen",
+ "smtp-host-description": "Die Adresse Ihres SMTP-Servers für ausgehende E-Mails.",
+ "smtp-port-description": "Der Port Ihres SMTP-Servers für ausgehende E-Mails.",
+ "smtp-tls-description": "Aktiviere TLS Unterstützung für SMTP Server",
+ "smtp-host": "SMTP-Server",
+ "smtp-port": "SMTP-Port",
+ "smtp-username": "Benutzername",
+ "smtp-password": "Passwort",
+ "smtp-tls": "TLS Unterstützung",
+ "send-from": "Absender",
+ "send-smtp-test": "Test-E-Mail an sich selbst schicken",
+ "invitation-code": "Einladungscode",
+ "email-invite-register-subject": "__inviter__ hat Ihnen eine Einladung geschickt",
+ "email-invite-register-text": "Sehr geehrte(r) __user__,\n\n__inviter__ hat Sie zur Mitarbeit an einem Kanbanboard eingeladen.\n\nBitte klicken Sie auf folgenden Link:\n__url__\n\nIhr Einladungscode lautet: __icode__\n\nDanke.",
+ "email-smtp-test-subject": "SMTP Test-E-Mail",
+ "email-smtp-test-text": "Sie haben erfolgreich eine E-Mail versandt",
+ "error-invitation-code-not-exist": "Ungültiger Einladungscode",
+ "error-notAuthorized": "Sie sind nicht berechtigt diese Seite zu sehen.",
+ "outgoing-webhooks": "Ausgehende Webhooks",
+ "outgoingWebhooksPopup-title": "Ausgehende Webhooks",
+ "boardCardTitlePopup-title": "Kartentitelfilter",
+ "new-outgoing-webhook": "Neuer ausgehender Webhook",
+ "no-name": "(Unbekannt)",
+ "Node_version": "Node-Version",
+ "OS_Arch": "Betriebssystem-Architektur",
+ "OS_Cpus": "Anzahl Prozessoren",
+ "OS_Freemem": "Freier Arbeitsspeicher",
+ "OS_Loadavg": "Mittlere Systembelastung",
+ "OS_Platform": "Plattform",
+ "OS_Release": "Version des Betriebssystem",
+ "OS_Totalmem": "Gesamter Arbeitsspeicher",
+ "OS_Type": "Typ des Betriebssystems",
+ "OS_Uptime": "Laufzeit des Systems",
+ "days": "Tage",
+ "hours": "Stunden",
+ "minutes": "Minuten",
+ "seconds": "Sekunden",
+ "show-field-on-card": "Zeige dieses Feld auf der Karte",
+ "automatically-field-on-card": "Automatisch Label für alle Karten erzeugen",
+ "showLabel-field-on-card": "Feldbezeichnung auf Minikarte anzeigen",
+ "yes": "Ja",
+ "no": "Nein",
+ "accounts": "Konten",
+ "accounts-allowEmailChange": "Ändern der E-Mailadresse erlauben",
+ "accounts-allowUserNameChange": "Ändern des Benutzernamens erlauben",
+ "createdAt": "Erstellt am",
+ "verified": "Geprüft",
+ "active": "Aktiv",
+ "card-received": "Empfangen",
+ "card-received-on": "Empfangen am",
+ "card-end": "Ende",
+ "card-end-on": "Endet am",
+ "editCardReceivedDatePopup-title": "Empfangsdatum ändern",
+ "editCardEndDatePopup-title": "Enddatum ändern",
+ "setCardColorPopup-title": "Farbe festlegen",
+ "setCardActionsColorPopup-title": "Farbe wählen",
+ "setSwimlaneColorPopup-title": "Farbe wählen",
+ "setListColorPopup-title": "Farbe wählen",
+ "assigned-by": "Zugewiesen von",
+ "requested-by": "Angefordert von",
+ "board-delete-notice": "Löschen kann nicht rückgängig gemacht werden. Sie werden alle Listen, Karten und Aktionen, die mit diesem Board verbunden sind, verlieren.",
+ "delete-board-confirm-popup": "Alle Listen, Karten, Labels und Akivitäten werden gelöscht und Sie können die Inhalte des Boards nicht wiederherstellen! Die Aktion kann nicht rückgängig gemacht werden.",
+ "boardDeletePopup-title": "Board löschen?",
+ "delete-board": "Board löschen",
+ "default-subtasks-board": "Teilaufgabe für __board__ Board",
+ "default": "Standard",
+ "queue": "Warteschlange",
+ "subtask-settings": "Einstellungen für Teilaufgaben",
+ "boardSubtaskSettingsPopup-title": "Boardeinstellungen für Teilaufgaben",
+ "show-subtasks-field": "Karten können Teilaufgaben haben",
+ "deposit-subtasks-board": "Teilaufgaben in diesem Board ablegen:",
+ "deposit-subtasks-list": "Zielliste für hier abgelegte Teilaufgaben:",
+ "show-parent-in-minicard": "Übergeordnetes Element auf Minikarte anzeigen:",
+ "prefix-with-full-path": "Vollständiger Pfad über Titel",
+ "prefix-with-parent": "Über Titel",
+ "subtext-with-full-path": "Vollständiger Pfad unter Titel",
+ "subtext-with-parent": "Unter Titel",
+ "change-card-parent": "Übergeordnete Karte ändern",
+ "parent-card": "Übergeordnete Karte",
+ "source-board": "Quellboard",
+ "no-parent": "Nicht anzeigen",
+ "activity-added-label": "fügte Label '%s' zu %s hinzu",
+ "activity-removed-label": "entfernte Label '%s' von %s",
+ "activity-delete-attach": "löschte ein Anhang von %s",
+ "activity-added-label-card": "Label hinzugefügt '%s'",
+ "activity-removed-label-card": "Label entfernt '%s'",
+ "activity-delete-attach-card": "hat einen Anhang gelöscht",
+ "activity-set-customfield": "setze benutzerdefiniertes Feld '%s' zu '%s' in %s",
+ "activity-unset-customfield": "entferne benutzerdefiniertes Feld '%s' in %s",
+ "r-rule": "Regel",
+ "r-add-trigger": "Auslöser hinzufügen",
+ "r-add-action": "Aktion hinzufügen",
+ "r-board-rules": "Boardregeln",
+ "r-add-rule": "Regel hinzufügen",
+ "r-view-rule": "Regel anzeigen",
+ "r-delete-rule": "Regel löschen",
+ "r-new-rule-name": "Neuer Regeltitel",
+ "r-no-rules": "Keine Regeln",
+ "r-when-a-card": "Wenn Karte",
+ "r-is": "wird",
+ "r-is-moved": "verschoben wird",
+ "r-added-to": "hinzugefügt zu",
+ "r-removed-from": "entfernt von",
+ "r-the-board": "das Board",
+ "r-list": "Liste",
+ "set-filter": "Setze Filter",
+ "r-moved-to": "verschoben nach",
+ "r-moved-from": "verschoben von",
+ "r-archived": "ins Archiv verschoben",
+ "r-unarchived": "aus dem Archiv wiederhergestellt",
+ "r-a-card": "einer Karte",
+ "r-when-a-label-is": "Wenn ein Label",
+ "r-when-the-label": "Wenn das Label",
+ "r-list-name": "Listenname",
+ "r-when-a-member": "Wenn ein Mitglied",
+ "r-when-the-member": "Wenn das Mitglied",
+ "r-name": "Name",
+ "r-when-a-attach": "Wenn ein Anhang",
+ "r-when-a-checklist": "Wenn eine Checkliste wird",
+ "r-when-the-checklist": "Wenn die Checkliste",
+ "r-completed": "abgeschlossen",
+ "r-made-incomplete": "unvollständig gemacht",
+ "r-when-a-item": "Wenn eine Checklistenposition",
+ "r-when-the-item": "Wenn die Checklistenposition",
+ "r-checked": "markiert wird",
+ "r-unchecked": "abgewählt wird",
+ "r-move-card-to": "Verschiebe Karte an",
+ "r-top-of": "Anfang von",
+ "r-bottom-of": "Ende von",
+ "r-its-list": "seiner Liste",
+ "r-archive": "Ins Archiv verschieben",
+ "r-unarchive": "Aus dem Archiv wiederherstellen",
+ "r-card": "Karte",
+ "r-add": "Hinzufügen",
+ "r-remove": "entfernen",
+ "r-label": "Label",
+ "r-member": "Mitglied",
+ "r-remove-all": "Entferne alle Mitglieder von der Karte",
+ "r-set-color": "Farbe festlegen auf",
+ "r-checklist": "Checkliste",
+ "r-check-all": "Alle markieren",
+ "r-uncheck-all": "Alle abwählen",
+ "r-items-check": "Elemente der Checkliste",
+ "r-check": "Markieren",
+ "r-uncheck": "Abwählen",
+ "r-item": "Element",
+ "r-of-checklist": "der Checkliste",
+ "r-send-email": "Eine E-Mail senden",
+ "r-to": "an",
+ "r-subject": "Betreff",
+ "r-rule-details": "Regeldetails",
+ "r-d-move-to-top-gen": "Karte nach oben in die Liste verschieben",
+ "r-d-move-to-top-spec": "Karte an den Anfang der Liste verschieben",
+ "r-d-move-to-bottom-gen": "Karte nach unten in die Liste verschieben",
+ "r-d-move-to-bottom-spec": "Karte an das Ende der Liste verschieben",
+ "r-d-send-email": "E-Mail senden",
+ "r-d-send-email-to": "an",
+ "r-d-send-email-subject": "Betreff",
+ "r-d-send-email-message": "Nachricht",
+ "r-d-archive": "Karte ins Archiv verschieben",
+ "r-d-unarchive": "Karte aus dem Archiv wiederherstellen",
+ "r-d-add-label": "Label hinzufügen",
+ "r-d-remove-label": "Label entfernen",
+ "r-create-card": "Neue Karte erstellen",
+ "r-in-list": "in der Liste",
+ "r-in-swimlane": "in Swimlane",
+ "r-d-add-member": "Mitglied hinzufügen",
+ "r-d-remove-member": "Mitglied entfernen",
+ "r-d-remove-all-member": "Entferne alle Mitglieder",
+ "r-d-check-all": "Alle Elemente der Liste markieren",
+ "r-d-uncheck-all": "Alle Element der Liste abwählen",
+ "r-d-check-one": "Element auswählen",
+ "r-d-uncheck-one": "Element abwählen",
+ "r-d-check-of-list": "der Checkliste",
+ "r-d-add-checklist": "Checkliste hinzufügen",
+ "r-d-remove-checklist": "Checkliste entfernen",
+ "r-by": "durch",
+ "r-add-checklist": "Checkliste hinzufügen",
+ "r-with-items": "mit Elementen",
+ "r-items-list": "Element1,Element2,Element3",
+ "r-add-swimlane": "Füge Swimlane hinzu",
+ "r-swimlane-name": "Swimlanename",
+ "r-board-note": "Hinweis: Lassen Sie ein Feld leer, um alle möglichen Werte zu finden.",
+ "r-checklist-note": "Hinweis: Die Elemente der Checkliste müssen als kommagetrennte Werte geschrieben werden.",
+ "r-when-a-card-is-moved": "Wenn eine Karte in eine andere Liste verschoben wird",
+ "r-set": "Setze",
+ "r-update": "Aktualisiere",
+ "r-datefield": "Datumsfeld",
+ "r-df-start-at": "Start",
+ "r-df-due-at": "Fällig",
+ "r-df-end-at": "Ende",
+ "r-df-received-at": "Empfangen",
+ "r-to-current-datetime": "auf das aktuelle Datum/Zeit",
+ "r-remove-value-from": "Entferne Wert von",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentifizierungsmethode",
+ "authentication-type": "Authentifizierungstyp",
+ "custom-product-name": "Benutzerdefinierter Produktname",
+ "layout": "Layout",
+ "hide-logo": "Verstecke Logo",
+ "add-custom-html-after-body-start": "Füge benutzerdefiniertes HTML nach <body> Anfang hinzu",
+ "add-custom-html-before-body-end": "Füge benutzerdefiniertes HTML vor </body>Ende hinzu",
+ "error-undefined": "Etwas ist schief gelaufen",
+ "error-ldap-login": "Es ist ein Fehler beim Anmelden aufgetreten",
+ "display-authentication-method": "Anzeige Authentifizierungsverfahren",
+ "default-authentication-method": "Standardauthentifizierungsverfahren",
+ "duplicate-board": "Board duplizieren",
+ "people-number": "Anzahl der Personen:",
+ "swimlaneDeletePopup-title": "Swimlane löschen?",
+ "swimlane-delete-pop": "Alle Aktionen werden aus dem Aktivitätenfeed entfernt und die Swimlane kann nicht wiederhergestellt werden. Die Aktion kann nicht rückgängig gemacht werden.",
+ "restore-all": "Alles wiederherstellen",
+ "delete-all": "Alles löschen",
+ "loading": "Laden, bitte warten.",
+ "previous_as": "letzter Zeitpunkt war",
+ "act-a-dueAt": "hat Fälligkeit geändert auf\nWann: __timeValue__\nWo: __card__\nvorheriger Fälligkeitszeitpunkt war __timeOldValue__",
+ "act-a-endAt": "hat Ende auf __timeValue__ von (__timeOldValue__) geändert",
+ "act-a-startAt": "hat Start auf __timeValue__ von (__timeOldValue__) geändert",
+ "act-a-receivedAt": "hat Empfangszeit auf __timeValue__ von (__timeOldValue__) geändert",
+ "a-dueAt": "hat Fälligkeit geändert auf",
+ "a-endAt": "hat Ende geändert auf",
+ "a-startAt": "hat Startzeit geändert auf",
+ "a-receivedAt": "hat Empfangszeit geändert auf",
+ "almostdue": "aktuelles Fälligkeitsdatum %s bevorstehend",
+ "pastdue": "aktuelles Fälligkeitsdatum %s überschritten",
+ "duenow": "aktuelles Fälligkeitsdatum %s heute",
+ "act-withDue": "__card__ fällige Erinnerungen [__board__]",
+ "act-almostdue": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist bevorstehend",
+ "act-pastdue": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist vorbei",
+ "act-duenow": "erinnernd an das aktuelle Fälligkeitszeitpunkt (__timeValue__) von __card__ ist jetzt",
+ "act-atUserComment": "Du wurdest erwähnt in [__board__] __card__",
+ "delete-user-confirm-popup": "Sind Sie sicher, dass Sie diesen Account löschen wollen? Die Aktion kann nicht rückgängig gemacht werden.",
+ "accounts-allowUserDelete": "Erlaube Benutzern ihren eigenen Account zu löschen",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/el.i18n.json b/i18n/el.i18n.json
index 1ac9f7d0..5c7a4ccc 100644
--- a/i18n/el.i18n.json
+++ b/i18n/el.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Accept",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Προσθήκη",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Προσθήκη Κάρτας",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Προσθήκη Ετικέτας",
- "add-list": "Προσθήκη Λίστας",
- "add-members": "Προσθήκη Μελών",
- "added": "Προστέθηκε",
- "addMemberPopup-title": "Μέλοι",
- "admin": "Διαχειριστής",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Εφαρμογή",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Πίσω",
- "board-change-color": "Αλλαγή χρώματος",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Λίστες",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Ακύρωση",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Έως",
- "card-due-on": "Έως τις",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Διαγραφή Κάρτας;",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Ετικέτες",
- "cardMembersPopup-title": "Μέλοι",
- "cardMorePopup-title": "Περισσότερα",
- "cardTemplatePopup-title": "Create template",
- "cards": "Κάρτες",
- "cards-count": "Κάρτες",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Αλλαγή",
- "change-avatar": "Change Avatar",
- "change-password": "Αλλαγή Κωδικού",
- "change-permissions": "Change permissions",
- "change-settings": "Αλλαγή Ρυθμίσεων",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Αλλαγή Γλώσσας",
- "changePasswordPopup-title": "Αλλαγή Κωδικού",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Αλλαγή Ρυθμίσεων",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Κλείσιμο",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "μαύρο",
- "color-blue": "μπλε",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "πράσινο",
- "color-indigo": "indigo",
- "color-lime": "λάιμ",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "πορτοκαλί",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "ροζ",
- "color-plum": "plum",
- "color-purple": "μωβ",
- "color-red": "κόκκινο",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "ουρανός",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "κίτρινο",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Υπολογιστής",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Αναζήτηση",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Δημιουργία",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Ημερομηνία",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Ημερομηνία",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Διαγραφή",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Απόρριψη",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Το κείμενο δεν είναι έγκυρο JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Φίλτρο",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "Κανένα μέλος",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Πλήρες Όνομα",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Εισαγωγή",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "Από το Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Έκδοση",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Ετικέτες",
- "language": "Γλώσσα",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "Περισσότερα",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Λίστες",
- "swimlanes": "Swimlanes",
- "log-out": "Αποσύνδεση",
- "log-in": "Σύνδεση",
- "loginPopup-title": "Σύνδεση",
- "memberMenuPopup-title": "Member Settings",
- "members": "Μέλοι",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Όνομα",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Κανένα αποτέλεσμα",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "ή",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Η σελίδα δεν βρέθηκε.",
- "password": "Κωδικός",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Διαγραφή Λίστας;",
- "remove-member": "Αφαίρεση Μέλους",
- "remove-member-from-card": "Αφαίρεση από την Κάρτα",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Αφαίρεση Μέλους;",
- "rename": "Μετανομασία",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Αποθήκευση",
- "search": "Αναζήτηση",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Επιλέξτε Χρώμα",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Δημιουργία Λογαριασμού",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Ομάδα",
- "this-board": "this board",
- "this-card": "αυτή η κάρτα",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Ώρα",
- "title": "Τίτλος",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Όνομα Χρήστη",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Ρυθμίσεις",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Διευθύνσεις",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Όνομα Χρήστη",
- "smtp-password": "Κωδικός",
- "smtp-tls": "TLS υποστήριξη",
- "send-from": "Από",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Κωδικός Πρόσκλησης",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Ο κωδικός πρόσκλησης δεν υπάρχει",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Άγνωστο)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "ώρες",
- "minutes": "λεπτά",
- "seconds": "δευτερόλεπτα",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Ναι",
- "no": "Όχι",
- "accounts": "Λογαριασμοί",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Προσθήκη",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Accept",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Προσθήκη",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Προσθήκη Κάρτας",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Προσθήκη Ετικέτας",
+ "add-list": "Προσθήκη Λίστας",
+ "add-members": "Προσθήκη Μελών",
+ "added": "Προστέθηκε",
+ "addMemberPopup-title": "Μέλοι",
+ "admin": "Διαχειριστής",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Εφαρμογή",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Πίσω",
+ "board-change-color": "Αλλαγή χρώματος",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Λίστες",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Ακύρωση",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Έως",
+ "card-due-on": "Έως τις",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Διαγραφή Κάρτας;",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Ετικέτες",
+ "cardMembersPopup-title": "Μέλοι",
+ "cardMorePopup-title": "Περισσότερα",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Κάρτες",
+ "cards-count": "Κάρτες",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Αλλαγή",
+ "change-avatar": "Change Avatar",
+ "change-password": "Αλλαγή Κωδικού",
+ "change-permissions": "Change permissions",
+ "change-settings": "Αλλαγή Ρυθμίσεων",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Αλλαγή Γλώσσας",
+ "changePasswordPopup-title": "Αλλαγή Κωδικού",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Αλλαγή Ρυθμίσεων",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Κλείσιμο",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "μαύρο",
+ "color-blue": "μπλε",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "πράσινο",
+ "color-indigo": "indigo",
+ "color-lime": "λάιμ",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "πορτοκαλί",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "ροζ",
+ "color-plum": "plum",
+ "color-purple": "μωβ",
+ "color-red": "κόκκινο",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "ουρανός",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "κίτρινο",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Υπολογιστής",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Αναζήτηση",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Δημιουργία",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Ημερομηνία",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Ημερομηνία",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Διαγραφή",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Απόρριψη",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Το κείμενο δεν είναι έγκυρο JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Φίλτρο",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "Κανένα μέλος",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Πλήρες Όνομα",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Εισαγωγή",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "Από το Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Έκδοση",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Ετικέτες",
+ "language": "Γλώσσα",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "Περισσότερα",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Λίστες",
+ "swimlanes": "Swimlanes",
+ "log-out": "Αποσύνδεση",
+ "log-in": "Σύνδεση",
+ "loginPopup-title": "Σύνδεση",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Μέλοι",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Όνομα",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Κανένα αποτέλεσμα",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "ή",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Η σελίδα δεν βρέθηκε.",
+ "password": "Κωδικός",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Διαγραφή Λίστας;",
+ "remove-member": "Αφαίρεση Μέλους",
+ "remove-member-from-card": "Αφαίρεση από την Κάρτα",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Αφαίρεση Μέλους;",
+ "rename": "Μετανομασία",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Αποθήκευση",
+ "search": "Αναζήτηση",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Επιλέξτε Χρώμα",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Δημιουργία Λογαριασμού",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Ομάδα",
+ "this-board": "this board",
+ "this-card": "αυτή η κάρτα",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Ώρα",
+ "title": "Τίτλος",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Όνομα Χρήστη",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Ρυθμίσεις",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Διευθύνσεις",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Όνομα Χρήστη",
+ "smtp-password": "Κωδικός",
+ "smtp-tls": "TLS υποστήριξη",
+ "send-from": "Από",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Κωδικός Πρόσκλησης",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Ο κωδικός πρόσκλησης δεν υπάρχει",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Άγνωστο)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "ώρες",
+ "minutes": "λεπτά",
+ "seconds": "δευτερόλεπτα",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Ναι",
+ "no": "Όχι",
+ "accounts": "Λογαριασμοί",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Προσθήκη",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/en-GB.i18n.json b/i18n/en-GB.i18n.json
index dc2f10e7..c1634a29 100644
--- a/i18n/en-GB.i18n.json
+++ b/i18n/en-GB.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Accept",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Back",
- "board-change-color": "Change colour",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaboration.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve its activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Colour",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in a list in the Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any changes in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorised to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Accept",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Back",
+ "board-change-color": "Change colour",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaboration.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve its activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Colour",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in a list in the Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any changes in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorised to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json
index 3edf1fce..4501fffb 100644
--- a/i18n/en.i18n.json
+++ b/i18n/en.i18n.json
@@ -724,5 +724,6 @@
"act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
"act-atUserComment": "You were mentioned in [__board__] __card__",
"delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
}
diff --git a/i18n/eo.i18n.json b/i18n/eo.i18n.json
index ab61e26b..03421f38 100644
--- a/i18n/eo.i18n.json
+++ b/i18n/eo.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Akcepti",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Akcioj",
- "activities": "Aktivaĵoj",
- "activity": "Aktivaĵo",
- "activity-added": "Aldonis %s al %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "Kreiis %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "Sendis %s al %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Aldoni",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Aldoni membrojn",
- "added": "Aldonita",
- "addMemberPopup-title": "Membroj",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apliki",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arkivi",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Arkivi",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Reen",
- "board-change-color": "Ŝanĝi koloron",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Listoj",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Redakti etikedojn",
- "card-edit-members": "Redakti membrojn",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Komenco",
- "card-start-on": "Komencas je la",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Etikedoj",
- "cardMembersPopup-title": "Membroj",
- "cardMorePopup-title": "Pli",
- "cardTemplatePopup-title": "Create template",
- "cards": "Kartoj",
- "cards-count": "Kartoj",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Ŝanĝi",
- "change-avatar": "Change Avatar",
- "change-password": "Ŝangi pasvorton",
- "change-permissions": "Change permissions",
- "change-settings": "Ŝanĝi agordojn",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Ŝanĝi lingvon",
- "changePasswordPopup-title": "Ŝangi pasvorton",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Ŝanĝi agordojn",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Fermi",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "nigra",
- "color-blue": "blua",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "verda",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "oranĝa",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "ruĝa",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "flava",
- "unset-color": "Unset",
- "comment": "Komento",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Komputilo",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Serĉi",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Krei",
- "createBoardPopup-title": "Krei tavolon",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Dato",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Dato",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Farite",
- "download": "Elŝuti",
- "edit": "Redakti",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Redakti profilon",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Redakti komencdaton",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Ŝanĝi etikedon",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Redakti profilon",
- "email": "Retpoŝtadreso",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Malsukcesis sendi retpoŝton",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Nevalida retpoŝtadreso",
- "email-invite": "Inviti per retpoŝto",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Sendis retpoŝton",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Via teksto estas nevalida JSON",
- "error-json-schema": "Via JSON ne enhavas la ĝustajn informojn en ĝusta formato",
- "error-list-doesNotExist": "Tio listo ne ekzistas",
- "error-user-doesNotExist": "Tio uzanto ne ekzistas",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "Uzanto ne kreita",
- "error-username-taken": "Uzantnomo jam prenita",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "Nenia etikedo",
- "filter-no-member": "Nenia membro",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Krei tavolon",
- "home": "Hejmo",
- "import": "Importi",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Etikedoj",
- "language": "Lingvo",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Ligi al ĉitiu karto",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Movu ĉiujn kartojn en tiu listo.",
- "list-select-cards": "Elektu ĉiujn kartojn en tiu listo.",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "Pli",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Listoj",
- "swimlanes": "Swimlanes",
- "log-out": "Elsaluti",
- "log-in": "Ensaluti",
- "loginPopup-title": "Ensaluti",
- "memberMenuPopup-title": "Membraj agordoj",
- "members": "Membroj",
- "menu": "Menuo",
- "move-selection": "Movi elekton",
- "moveCardPopup-title": "Movi karton",
- "moveCardToBottom-title": "Movi suben",
- "moveCardToTop-title": "Movi supren",
- "moveSelectionPopup-title": "Movi elekton",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Nomo",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Neniaj rezultoj",
- "normal": "Normala",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "aŭ",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Netrovita paĝo.",
- "password": "Pasvorto",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Privata",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profilo",
- "public": "Publika",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Forigi membron",
- "remove-member-from-card": "Forigi de karto",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Renomi",
- "rename-board": "Rename Board",
- "restore": "Forigi",
- "save": "Savi",
- "search": "Serĉi",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Teamo",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Tempo",
- "title": "Titolo",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Alŝuti",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Uzantnomo",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Rigardi",
- "watching": "Rigardante",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Kion vi volas fari?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Uzantnomo",
- "smtp-password": "Pasvorto",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Aldoni",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Akcepti",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Akcioj",
+ "activities": "Aktivaĵoj",
+ "activity": "Aktivaĵo",
+ "activity-added": "Aldonis %s al %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "Kreiis %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "Sendis %s al %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Aldoni",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Aldoni membrojn",
+ "added": "Aldonita",
+ "addMemberPopup-title": "Membroj",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apliki",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arkivi",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Arkivi",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Reen",
+ "board-change-color": "Ŝanĝi koloron",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Listoj",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Redakti etikedojn",
+ "card-edit-members": "Redakti membrojn",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Komenco",
+ "card-start-on": "Komencas je la",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Etikedoj",
+ "cardMembersPopup-title": "Membroj",
+ "cardMorePopup-title": "Pli",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Kartoj",
+ "cards-count": "Kartoj",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Ŝanĝi",
+ "change-avatar": "Change Avatar",
+ "change-password": "Ŝangi pasvorton",
+ "change-permissions": "Change permissions",
+ "change-settings": "Ŝanĝi agordojn",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Ŝanĝi lingvon",
+ "changePasswordPopup-title": "Ŝangi pasvorton",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Ŝanĝi agordojn",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Fermi",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "nigra",
+ "color-blue": "blua",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "verda",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "oranĝa",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "ruĝa",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "flava",
+ "unset-color": "Unset",
+ "comment": "Komento",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Komputilo",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Serĉi",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Krei",
+ "createBoardPopup-title": "Krei tavolon",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Dato",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Dato",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Farite",
+ "download": "Elŝuti",
+ "edit": "Redakti",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Redakti profilon",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Redakti komencdaton",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Ŝanĝi etikedon",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Redakti profilon",
+ "email": "Retpoŝtadreso",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Malsukcesis sendi retpoŝton",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Nevalida retpoŝtadreso",
+ "email-invite": "Inviti per retpoŝto",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Sendis retpoŝton",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Via teksto estas nevalida JSON",
+ "error-json-schema": "Via JSON ne enhavas la ĝustajn informojn en ĝusta formato",
+ "error-list-doesNotExist": "Tio listo ne ekzistas",
+ "error-user-doesNotExist": "Tio uzanto ne ekzistas",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "Uzanto ne kreita",
+ "error-username-taken": "Uzantnomo jam prenita",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "Nenia etikedo",
+ "filter-no-member": "Nenia membro",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Krei tavolon",
+ "home": "Hejmo",
+ "import": "Importi",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Etikedoj",
+ "language": "Lingvo",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Ligi al ĉitiu karto",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Movu ĉiujn kartojn en tiu listo.",
+ "list-select-cards": "Elektu ĉiujn kartojn en tiu listo.",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "Pli",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Listoj",
+ "swimlanes": "Swimlanes",
+ "log-out": "Elsaluti",
+ "log-in": "Ensaluti",
+ "loginPopup-title": "Ensaluti",
+ "memberMenuPopup-title": "Membraj agordoj",
+ "members": "Membroj",
+ "menu": "Menuo",
+ "move-selection": "Movi elekton",
+ "moveCardPopup-title": "Movi karton",
+ "moveCardToBottom-title": "Movi suben",
+ "moveCardToTop-title": "Movi supren",
+ "moveSelectionPopup-title": "Movi elekton",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Nomo",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Neniaj rezultoj",
+ "normal": "Normala",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "aŭ",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Netrovita paĝo.",
+ "password": "Pasvorto",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Privata",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profilo",
+ "public": "Publika",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Forigi membron",
+ "remove-member-from-card": "Forigi de karto",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Renomi",
+ "rename-board": "Rename Board",
+ "restore": "Forigi",
+ "save": "Savi",
+ "search": "Serĉi",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Teamo",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Tempo",
+ "title": "Titolo",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Alŝuti",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Uzantnomo",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Rigardi",
+ "watching": "Rigardante",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Kion vi volas fari?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Uzantnomo",
+ "smtp-password": "Pasvorto",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Aldoni",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/es-AR.i18n.json b/i18n/es-AR.i18n.json
index 2797a668..6845e05d 100644
--- a/i18n/es-AR.i18n.json
+++ b/i18n/es-AR.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Aceptar",
- "act-activity-notify": "Notificación de Actividad",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "__card__ [__board__] ",
- "actions": "Acciones",
- "activities": "Actividades",
- "activity": "Actividad",
- "activity-added": "agregadas %s a %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "adjuntadas %s a %s",
- "activity-created": "creadas %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluidas %s de %s",
- "activity-imported": "importadas %s en %s de %s",
- "activity-imported-board": "importadas %s de %s",
- "activity-joined": "unidas %s",
- "activity-moved": "movidas %s de %s a %s",
- "activity-on": "en %s",
- "activity-removed": "eliminadas %s de %s",
- "activity-sent": "enviadas %s a %s",
- "activity-unjoined": "separadas %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "agregada lista de tareas a %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "agregado item de lista de tareas a '%s' en %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Agregar",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Agregar Adjunto",
- "add-board": "Agregar Tablero",
- "add-card": "Agregar Tarjeta",
- "add-swimlane": "Agregar Calle",
- "add-subtask": "Agregar Subtarea",
- "add-checklist": "Agregar Lista de Tareas",
- "add-checklist-item": "Agregar ítem a lista de tareas",
- "add-cover": "Agregar Portadas",
- "add-label": "Agregar Etiqueta",
- "add-list": "Agregar Lista",
- "add-members": "Agregar Miembros",
- "added": "Agregadas",
- "addMemberPopup-title": "Miembros",
- "admin": "Administrador",
- "admin-desc": "Puede ver y editar tarjetas, eliminar miembros, y cambiar opciones para el tablero.",
- "admin-announcement": "Anuncio",
- "admin-announcement-active": "Anuncio del Sistema Activo",
- "admin-announcement-title": "Anuncio del Administrador",
- "all-boards": "Todos los tableros",
- "and-n-other-card": "Y __count__ otra tarjeta",
- "and-n-other-card_plural": "Y __count__ otras tarjetas",
- "apply": "Aplicar",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Mover al Archivo",
- "archive-all": "Mover Todo al Archivo",
- "archive-board": "Mover Tablero al Archivo",
- "archive-card": "Mover Tarjeta al Archivo",
- "archive-list": "Mover Lista al Archivo",
- "archive-swimlane": "Mover Calle al Archivo",
- "archive-selection": "Mover selección al Archivo",
- "archiveBoardPopup-title": "¿Mover Tablero al Archivo?",
- "archived-items": "Archivar",
- "archived-boards": "Tableros en el Archivo",
- "restore-board": "Restaurar Tablero",
- "no-archived-boards": "No hay Tableros en el Archivo",
- "archives": "Archivar",
- "template": "Plantilla",
- "templates": "Plantillas",
- "assign-member": "Asignar miembro",
- "attached": "adjunto(s)",
- "attachment": "Adjunto",
- "attachment-delete-pop": "Borrar un adjunto es permanente. No hay deshacer.",
- "attachmentDeletePopup-title": "¿Borrar Adjunto?",
- "attachments": "Adjuntos",
- "auto-watch": "Seguir tableros automáticamente al crearlos",
- "avatar-too-big": "El avatar es muy grande (70KB max)",
- "back": "Atrás",
- "board-change-color": "Cambiar color",
- "board-nb-stars": "%s estrellas",
- "board-not-found": "Tablero no encontrado",
- "board-private-info": "Este tablero va a ser <strong>privado</strong>.",
- "board-public-info": "Este tablero va a ser <strong>público</strong>.",
- "boardChangeColorPopup-title": "Cambiar Fondo del Tablero",
- "boardChangeTitlePopup-title": "Renombrar Tablero",
- "boardChangeVisibilityPopup-title": "Cambiar Visibilidad",
- "boardChangeWatchPopup-title": "Alternar Seguimiento",
- "boardMenuPopup-title": "Opciones del Tablero",
- "boards": "Tableros",
- "board-view": "Vista de Tablero",
- "board-view-cal": "Calendario",
- "board-view-swimlanes": "Calles",
- "board-view-lists": "Listas",
- "bucket-example": "Como \"Lista de Contenedores\" por ejemplo",
- "cancel": "Cancelar",
- "card-archived": "Esta tarjeta es movida al Archivo.",
- "board-archived": "Este tablero es movido al Archivo.",
- "card-comments-title": "Esta tarjeta tiene %s comentario.",
- "card-delete-notice": "Borrar es permanente. Perderás todas las acciones asociadas con esta tarjeta.",
- "card-delete-pop": "Todas las acciones van a ser eliminadas del agregador de actividad y no podrás re-abrir la tarjeta. No hay deshacer.",
- "card-delete-suggest-archive": "Podés mover una tarjeta al Archivo para eliminarla del tablero y preservar la actividad.",
- "card-due": "Vence",
- "card-due-on": "Vence en",
- "card-spent": "Tiempo Empleado",
- "card-edit-attachments": "Editar adjuntos",
- "card-edit-custom-fields": "Editar campos personalizados",
- "card-edit-labels": "Editar etiquetas",
- "card-edit-members": "Editar miembros",
- "card-labels-title": "Cambiar las etiquetas de la tarjeta.",
- "card-members-title": "Agregar o eliminar de la tarjeta miembros del tablero.",
- "card-start": "Empieza",
- "card-start-on": "Empieza el",
- "cardAttachmentsPopup-title": "Adjuntar De",
- "cardCustomField-datePopup-title": "Cambiar fecha",
- "cardCustomFieldsPopup-title": "Editar campos personalizados",
- "cardDeletePopup-title": "¿Borrar Tarjeta?",
- "cardDetailsActionsPopup-title": "Acciones de la Tarjeta",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Miembros",
- "cardMorePopup-title": "Mas",
- "cardTemplatePopup-title": "Crear plantilla",
- "cards": "Tarjetas",
- "cards-count": "Tarjetas",
- "casSignIn": "Ingresar con CAS",
- "cardType-card": "Tarjeta",
- "cardType-linkedCard": "Tarjeta Vinculada",
- "cardType-linkedBoard": "Tablero Vinculado",
- "change": "Cambiar",
- "change-avatar": "Cambiar Avatar",
- "change-password": "Cambiar Contraseña",
- "change-permissions": "Cambiar permisos",
- "change-settings": "Cambiar Opciones",
- "changeAvatarPopup-title": "Cambiar Avatar",
- "changeLanguagePopup-title": "Cambiar Lenguaje",
- "changePasswordPopup-title": "Cambiar Contraseña",
- "changePermissionsPopup-title": "Cambiar Permisos",
- "changeSettingsPopup-title": "Cambiar Opciones",
- "subtasks": "Subtareas",
- "checklists": "Listas de ítems",
- "click-to-star": "Clickeá para darle una estrella a este tablero.",
- "click-to-unstar": "Clickeá para sacarle la estrella al tablero.",
- "clipboard": "Portapapeles o arrastrar y soltar",
- "close": "Cerrar",
- "close-board": "Cerrar Tablero",
- "close-board-pop": "Podrás restaurar el tablero clickeando el \"Archivo\" desde el encabesado de inicio.",
- "color-black": "negro",
- "color-blue": "azul",
- "color-crimson": "crimson",
- "color-darkgreen": "verdeoscuro",
- "color-gold": "dorado",
- "color-gray": "gris",
- "color-green": "verde",
- "color-indigo": "índigo",
- "color-lime": "lima",
- "color-magenta": "magenta",
- "color-mistyrose": "rosamística",
- "color-navy": "navy",
- "color-orange": "naranja",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "rosa",
- "color-plum": "plum",
- "color-purple": "púrpura",
- "color-red": "rojo",
- "color-saddlebrown": "marróntriste",
- "color-silver": "plata",
- "color-sky": "cielo",
- "color-slateblue": "slateblue",
- "color-white": "blanco",
- "color-yellow": "amarillo",
- "unset-color": "Deseleccionado",
- "comment": "Comentario",
- "comment-placeholder": "Comentar",
- "comment-only": "Comentar solamente",
- "comment-only-desc": "Puede comentar en tarjetas solamente.",
- "no-comments": "Sin comentarios",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computadora",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copiar enlace a tarjeta en el portapapeles",
- "linkCardPopup-title": "Tarjeta vinculada",
- "searchElementPopup-title": "Buscar",
- "copyCardPopup-title": "Copiar Tarjeta",
- "copyChecklistToManyCardsPopup-title": "Copiar Plantilla Checklist a Muchas Tarjetas",
- "copyChecklistToManyCardsPopup-instructions": "Títulos y Descripciones de la Tarjeta Destino en este formato JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título de primera tarjeta\", \"description\":\"Descripción de primera tarjeta\"}, {\"title\":\"Título de segunda tarjeta\",\"description\":\"Descripción de segunda tarjeta\"},{\"title\":\"Título de última tarjeta\",\"description\":\"Descripción de última tarjeta\"} ]",
- "create": "Crear",
- "createBoardPopup-title": "Crear Tablero",
- "chooseBoardSourcePopup-title": "Importar tablero",
- "createLabelPopup-title": "Crear Etiqueta",
- "createCustomField": "Crear Campo",
- "createCustomFieldPopup-title": "Crear Campo",
- "current": "actual",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Fecha",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(ninguno)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Número",
- "custom-field-text": "Texto",
- "custom-fields": "Custom Fields",
- "date": "Fecha",
- "decline": "Rechazar",
- "default-avatar": "Avatar por defecto",
- "delete": "Borrar",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "¿Borrar Etiqueta?",
- "description": "Descripción",
- "disambiguateMultiLabelPopup-title": "Desambiguación de Acción de Etiqueta",
- "disambiguateMultiMemberPopup-title": "Desambiguación de Acción de Miembro",
- "discard": "Descartar",
- "done": "Hecho",
- "download": "Descargar",
- "edit": "Editar",
- "edit-avatar": "Cambiar Avatar",
- "edit-profile": "Editar Perfil",
- "edit-wip-limit": "Editar Lìmite de TEP",
- "soft-wip-limit": "Límite TEP suave",
- "editCardStartDatePopup-title": "Cambiar fecha de inicio",
- "editCardDueDatePopup-title": "Cambiar fecha de vencimiento",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Cambiar tiempo empleado",
- "editLabelPopup-title": "Cambiar Etiqueta",
- "editNotificationPopup-title": "Editar Notificación",
- "editProfilePopup-title": "Editar Perfil",
- "email": "Email",
- "email-enrollAccount-subject": "Una cuenta creada para vos en __siteName__",
- "email-enrollAccount-text": "Hola __user__,\n\nPara empezar a usar el servicio, simplemente clickeá en el enlace de abajo.\n\n__url__\n\nGracias.",
- "email-fail": "Fallo envío de email",
- "email-fail-text": "Error intentando enviar email",
- "email-invalid": "Email inválido",
- "email-invite": "Invitar vía Email",
- "email-invite-subject": "__inviter__ te envió una invitación",
- "email-invite-text": "Querido __user__,\n\n__inviter__ te invita a unirte al tablero \"__board__\" para colaborar.\n\nPor favor sigue el enlace de abajo:\n\n__url__\n\nGracias.",
- "email-resetPassword-subject": "Restaurá tu contraseña en __siteName__",
- "email-resetPassword-text": "Hola __user__,\n\nPara restaurar tu contraseña, simplemente clickeá el enlace de abajo.\n\n__url__\n\nGracias.",
- "email-sent": "Email enviado",
- "email-verifyEmail-subject": "Verificá tu dirección de email en __siteName__",
- "email-verifyEmail-text": "Hola __user__,\n\nPara verificar tu cuenta de email, simplemente clickeá el enlace de abajo.\n\n__url__\n\nGracias.",
- "enable-wip-limit": "Activar Límite TEP",
- "error-board-doesNotExist": "Este tablero no existe",
- "error-board-notAdmin": "Necesitás ser administrador de este tablero para hacer eso",
- "error-board-notAMember": "Necesitás ser miembro de este tablero para hacer eso",
- "error-json-malformed": "Tu texto no es JSON válido",
- "error-json-schema": "Tus datos JSON no incluyen la información correcta en el formato adecuado",
- "error-list-doesNotExist": "Esta lista no existe",
- "error-user-doesNotExist": "Este usuario no existe",
- "error-user-notAllowSelf": "No podés invitarte a vos mismo",
- "error-user-notCreated": " El usuario no se creó",
- "error-username-taken": "El nombre de usuario ya existe",
- "error-email-taken": "El email ya existe",
- "export-board": "Exportar tablero",
- "filter": "Filtrar",
- "filter-cards": "Filtrar Tarjetas",
- "filter-clear": "Sacar filtro",
- "filter-no-label": "Sin etiqueta",
- "filter-no-member": "No es miembro",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "El filtro está activado",
- "filter-on-desc": "Estás filtrando cartas en este tablero. Clickeá acá para editar el filtro.",
- "filter-to-selection": "Filtrar en la selección",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Nombre Completo",
- "header-logo-title": "Retroceder a tu página de tableros.",
- "hide-system-messages": "Esconder mensajes del sistema",
- "headerBarCreateBoardPopup-title": "Crear Tablero",
- "home": "Inicio",
- "import": "Importar",
- "link": "Link",
- "import-board": "importar tablero",
- "import-board-c": "Importar tablero",
- "import-board-title-trello": "Importar tablero de Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "El tablero importado va a borrar todos los datos existentes en el tablero y reemplazarlos con los del tablero en cuestión.",
- "from-trello": "De Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "En tu tablero de Trello, ve a 'Menú', luego a 'Más', 'Imprimir y Exportar', 'Exportar JSON', y copia el texto resultante.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Pegá tus datos JSON válidos acá",
- "import-map-members": "Mapear Miembros",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Revisar mapeo de miembros",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Versión",
- "initials": "Iniciales",
- "invalid-date": "Fecha inválida",
- "invalid-time": "Tiempo inválido",
- "invalid-user": "Usuario inválido",
- "joined": "unido",
- "just-invited": "Fuiste invitado a este tablero",
- "keyboard-shortcuts": "Atajos de teclado",
- "label-create": "Crear Etiqueta",
- "label-default": "%s etiqueta (por defecto)",
- "label-delete-pop": "No hay deshacer. Esto va a eliminar esta etiqueta de todas las tarjetas y destruir su historia.",
- "labels": "Etiquetas",
- "language": "Lenguaje",
- "last-admin-desc": "No podés cambiar roles porque tiene que haber al menos un administrador.",
- "leave-board": "Dejar Tablero",
- "leave-board-pop": "¿Estás seguro que querés dejar __boardTitle__? Vas a salir de todas las tarjetas en este tablero.",
- "leaveBoardPopup-title": "¿Dejar Tablero?",
- "link-card": "Enlace a esta tarjeta",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Mueve todas las tarjetas en esta lista",
- "list-select-cards": "Selecciona todas las tarjetas en esta lista",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Listar Acciones",
- "swimlaneActionPopup-title": "Acciones de la Calle",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Importar una tarjeta Trello",
- "listMorePopup-title": "Mas",
- "link-list": "Enlace a esta lista",
- "list-delete-pop": "Todas las acciones van a ser eliminadas del agregador de actividad y no podás recuperar la lista. No se puede deshacer.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Listas",
- "swimlanes": "Calles",
- "log-out": "Salir",
- "log-in": "Entrar",
- "loginPopup-title": "Entrar",
- "memberMenuPopup-title": "Opciones de Miembros",
- "members": "Miembros",
- "menu": "Menú",
- "move-selection": "Mover selección",
- "moveCardPopup-title": "Mover Tarjeta",
- "moveCardToBottom-title": "Mover al Final",
- "moveCardToTop-title": "Mover al Tope",
- "moveSelectionPopup-title": "Mover selección",
- "multi-selection": "Multi-Selección",
- "multi-selection-on": "Multi-selección está activo",
- "muted": "Silenciado",
- "muted-info": "No serás notificado de ningún cambio en este tablero",
- "my-boards": "Mis Tableros",
- "name": "Nombre",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No hay resultados",
- "normal": "Normal",
- "normal-desc": "Puede ver y editar tarjetas. No puede cambiar opciones.",
- "not-accepted-yet": "Invitación no aceptada todavía",
- "notify-participate": "Recibí actualizaciones en cualquier tarjeta que participés como creador o miembro",
- "notify-watch": "Recibí actualizaciones en cualquier tablero, lista, o tarjeta que estés siguiendo",
- "optional": "opcional",
- "or": "o",
- "page-maybe-private": "Esta página puede ser privada. Vos podrás verla <a href='%s'>entrando</a>.",
- "page-not-found": "Página no encontrada.",
- "password": "Contraseña",
- "paste-or-dragdrop": "pegar, arrastrar y soltar el archivo de imagen a esto (imagen sola)",
- "participating": "Participando",
- "preview": "Previsualización",
- "previewAttachedImagePopup-title": "Previsualización",
- "previewClipboardImagePopup-title": "Previsualización",
- "private": "Privado",
- "private-desc": "Este tablero es privado. Solo personas agregadas a este tablero pueden verlo y editarlo.",
- "profile": "Perfil",
- "public": "Público",
- "public-desc": "Este tablero es público. Es visible para cualquiera con un enlace y se va a mostrar en los motores de búsqueda como Google. Solo personas agregadas a este tablero pueden editarlo.",
- "quick-access-description": "Dale una estrella al tablero para agregar un acceso directo en esta barra.",
- "remove-cover": "Remover Portada",
- "remove-from-board": "Remover del Tablero",
- "remove-label": "Remover Etiqueta",
- "listDeletePopup-title": "¿Borrar Lista?",
- "remove-member": "Remover Miembro",
- "remove-member-from-card": "Remover de Tarjeta",
- "remove-member-pop": "¿Remover __name__ (__username__) de __boardTitle__? Los miembros va a ser removido de todas las tarjetas en este tablero. Serán notificados.",
- "removeMemberPopup-title": "¿Remover Miembro?",
- "rename": "Renombrar",
- "rename-board": "Renombrar Tablero",
- "restore": "Restaurar",
- "save": "Grabar",
- "search": "Buscar",
- "rules": "Rules",
- "search-cards": "Buscar en títulos y descripciones de tarjeta en este tablero",
- "search-example": "¿Texto a buscar?",
- "select-color": "Seleccionar Color",
- "set-wip-limit-value": "Fijar un límite para el número máximo de tareas en esta lista",
- "setWipLimitPopup-title": "Establecer Límite TEP",
- "shortcut-assign-self": "Asignarte a vos mismo en la tarjeta actual",
- "shortcut-autocomplete-emoji": "Autocompletar emonji",
- "shortcut-autocomplete-members": "Autocompletar miembros",
- "shortcut-clear-filters": "Limpiar todos los filtros",
- "shortcut-close-dialog": "Cerrar Diálogo",
- "shortcut-filter-my-cards": "Filtrar mis tarjetas",
- "shortcut-show-shortcuts": "Traer esta lista de atajos",
- "shortcut-toggle-filterbar": "Activar/Desactivar Barra Lateral de Filtros",
- "shortcut-toggle-sidebar": "Activar/Desactivar Barra Lateral de Tableros",
- "show-cards-minimum-count": "Mostrar cuenta de tarjetas si la lista contiene más que",
- "sidebar-open": "Abrir Barra Lateral",
- "sidebar-close": "Cerrar Barra Lateral",
- "signupPopup-title": "Crear Cuenta",
- "star-board-title": "Clickear para darle una estrella a este tablero. Se mostrará arriba en el tope de tu lista de tableros.",
- "starred-boards": "Tableros con estrellas",
- "starred-boards-description": "Tableros con estrellas se muestran en el tope de tu lista de tableros.",
- "subscribe": "Suscribirse",
- "team": "Equipo",
- "this-board": "este tablero",
- "this-card": "esta tarjeta",
- "spent-time-hours": "Tiempo empleado (horas)",
- "overtime-hours": "Sobretiempo (horas)",
- "overtime": "Sobretiempo",
- "has-overtime-cards": "Tiene tarjetas con sobretiempo",
- "has-spenttime-cards": "Ha gastado tarjetas de tiempo",
- "time": "Hora",
- "title": "Título",
- "tracking": "Seguimiento",
- "tracking-info": "Serás notificado de cualquier cambio a aquellas tarjetas en las que seas creador o miembro.",
- "type": "Type",
- "unassign-member": "Desasignar miembro",
- "unsaved-description": "Tienes una descripción sin guardar.",
- "unwatch": "Dejar de seguir",
- "upload": "Cargar",
- "upload-avatar": "Cargar un avatar",
- "uploaded-avatar": "Cargado un avatar",
- "username": "Nombre de usuario",
- "view-it": "Verlo",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Seguir",
- "watching": "Siguiendo",
- "watching-info": "Serás notificado de cualquier cambio en este tablero",
- "welcome-board": "Tablero de Bienvenida",
- "welcome-swimlane": "Hito 1",
- "welcome-list1": "Básicos",
- "welcome-list2": "Avanzado",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "¿Qué querés hacer?",
- "wipLimitErrorPopup-title": "Límite TEP Inválido",
- "wipLimitErrorPopup-dialog-pt1": " El número de tareas en esta lista es mayor que el límite TEP que definiste.",
- "wipLimitErrorPopup-dialog-pt2": "Por favor mové algunas tareas fuera de esta lista, o seleccioná un límite TEP más alto.",
- "admin-panel": "Panel de Administración",
- "settings": "Opciones",
- "people": "Gente",
- "registration": "Registro",
- "disable-self-registration": "Desactivar auto-registro",
- "invite": "Invitar",
- "invite-people": "Invitar Gente",
- "to-boards": "A tarjeta(s)",
- "email-addresses": "Dirección de Email",
- "smtp-host-description": "La dirección del servidor SMTP que maneja tus emails",
- "smtp-port-description": "El puerto que tu servidor SMTP usa para correos salientes",
- "smtp-tls-description": "Activar soporte TLS para el servidor SMTP",
- "smtp-host": "Servidor SMTP",
- "smtp-port": "Puerto SMTP",
- "smtp-username": "Usuario",
- "smtp-password": "Contraseña",
- "smtp-tls": "Soporte TLS",
- "send-from": "De",
- "send-smtp-test": "Enviarse un email de prueba",
- "invitation-code": "Código de Invitación",
- "email-invite-register-subject": "__inviter__ te envió una invitación",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Enviaste el correo correctamente",
- "error-invitation-code-not-exist": "El código de invitación no existe",
- "error-notAuthorized": "No estás autorizado para ver esta página.",
- "outgoing-webhooks": "Ganchos Web Salientes",
- "outgoingWebhooksPopup-title": "Ganchos Web Salientes",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "Nuevo Gancho Web",
- "no-name": "(desconocido)",
- "Node_version": "Versión de Node",
- "OS_Arch": "Arch del SO",
- "OS_Cpus": "Cantidad de CPU del SO",
- "OS_Freemem": "Memoria Libre del SO",
- "OS_Loadavg": "Carga Promedio del SO",
- "OS_Platform": "Plataforma del SO",
- "OS_Release": "Revisión del SO",
- "OS_Totalmem": "Memoria Total del SO",
- "OS_Type": "Tipo de SO",
- "OS_Uptime": "Tiempo encendido del SO",
- "days": "days",
- "hours": "horas",
- "minutes": "minutos",
- "seconds": "segundos",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Si",
- "no": "No",
- "accounts": "Cuentas",
- "accounts-allowEmailChange": "Permitir Cambio de Email",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Creado en",
- "verified": "Verificado",
- "active": "Activo",
- "card-received": "Recibido",
- "card-received-on": "Recibido en",
- "card-end": "Termino",
- "card-end-on": "Termina en",
- "editCardReceivedDatePopup-title": "Cambiar fecha de recepción",
- "editCardEndDatePopup-title": "Cambiar fecha de término",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Mover al Archivo",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Agregar",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Aceptar",
+ "act-activity-notify": "Notificación de Actividad",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "__card__ [__board__] ",
+ "actions": "Acciones",
+ "activities": "Actividades",
+ "activity": "Actividad",
+ "activity-added": "agregadas %s a %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "adjuntadas %s a %s",
+ "activity-created": "creadas %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluidas %s de %s",
+ "activity-imported": "importadas %s en %s de %s",
+ "activity-imported-board": "importadas %s de %s",
+ "activity-joined": "unidas %s",
+ "activity-moved": "movidas %s de %s a %s",
+ "activity-on": "en %s",
+ "activity-removed": "eliminadas %s de %s",
+ "activity-sent": "enviadas %s a %s",
+ "activity-unjoined": "separadas %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "agregada lista de tareas a %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "agregado item de lista de tareas a '%s' en %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Agregar",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Agregar Adjunto",
+ "add-board": "Agregar Tablero",
+ "add-card": "Agregar Tarjeta",
+ "add-swimlane": "Agregar Calle",
+ "add-subtask": "Agregar Subtarea",
+ "add-checklist": "Agregar Lista de Tareas",
+ "add-checklist-item": "Agregar ítem a lista de tareas",
+ "add-cover": "Agregar Portadas",
+ "add-label": "Agregar Etiqueta",
+ "add-list": "Agregar Lista",
+ "add-members": "Agregar Miembros",
+ "added": "Agregadas",
+ "addMemberPopup-title": "Miembros",
+ "admin": "Administrador",
+ "admin-desc": "Puede ver y editar tarjetas, eliminar miembros, y cambiar opciones para el tablero.",
+ "admin-announcement": "Anuncio",
+ "admin-announcement-active": "Anuncio del Sistema Activo",
+ "admin-announcement-title": "Anuncio del Administrador",
+ "all-boards": "Todos los tableros",
+ "and-n-other-card": "Y __count__ otra tarjeta",
+ "and-n-other-card_plural": "Y __count__ otras tarjetas",
+ "apply": "Aplicar",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Mover al Archivo",
+ "archive-all": "Mover Todo al Archivo",
+ "archive-board": "Mover Tablero al Archivo",
+ "archive-card": "Mover Tarjeta al Archivo",
+ "archive-list": "Mover Lista al Archivo",
+ "archive-swimlane": "Mover Calle al Archivo",
+ "archive-selection": "Mover selección al Archivo",
+ "archiveBoardPopup-title": "¿Mover Tablero al Archivo?",
+ "archived-items": "Archivar",
+ "archived-boards": "Tableros en el Archivo",
+ "restore-board": "Restaurar Tablero",
+ "no-archived-boards": "No hay Tableros en el Archivo",
+ "archives": "Archivar",
+ "template": "Plantilla",
+ "templates": "Plantillas",
+ "assign-member": "Asignar miembro",
+ "attached": "adjunto(s)",
+ "attachment": "Adjunto",
+ "attachment-delete-pop": "Borrar un adjunto es permanente. No hay deshacer.",
+ "attachmentDeletePopup-title": "¿Borrar Adjunto?",
+ "attachments": "Adjuntos",
+ "auto-watch": "Seguir tableros automáticamente al crearlos",
+ "avatar-too-big": "El avatar es muy grande (70KB max)",
+ "back": "Atrás",
+ "board-change-color": "Cambiar color",
+ "board-nb-stars": "%s estrellas",
+ "board-not-found": "Tablero no encontrado",
+ "board-private-info": "Este tablero va a ser <strong>privado</strong>.",
+ "board-public-info": "Este tablero va a ser <strong>público</strong>.",
+ "boardChangeColorPopup-title": "Cambiar Fondo del Tablero",
+ "boardChangeTitlePopup-title": "Renombrar Tablero",
+ "boardChangeVisibilityPopup-title": "Cambiar Visibilidad",
+ "boardChangeWatchPopup-title": "Alternar Seguimiento",
+ "boardMenuPopup-title": "Opciones del Tablero",
+ "boards": "Tableros",
+ "board-view": "Vista de Tablero",
+ "board-view-cal": "Calendario",
+ "board-view-swimlanes": "Calles",
+ "board-view-lists": "Listas",
+ "bucket-example": "Como \"Lista de Contenedores\" por ejemplo",
+ "cancel": "Cancelar",
+ "card-archived": "Esta tarjeta es movida al Archivo.",
+ "board-archived": "Este tablero es movido al Archivo.",
+ "card-comments-title": "Esta tarjeta tiene %s comentario.",
+ "card-delete-notice": "Borrar es permanente. Perderás todas las acciones asociadas con esta tarjeta.",
+ "card-delete-pop": "Todas las acciones van a ser eliminadas del agregador de actividad y no podrás re-abrir la tarjeta. No hay deshacer.",
+ "card-delete-suggest-archive": "Podés mover una tarjeta al Archivo para eliminarla del tablero y preservar la actividad.",
+ "card-due": "Vence",
+ "card-due-on": "Vence en",
+ "card-spent": "Tiempo Empleado",
+ "card-edit-attachments": "Editar adjuntos",
+ "card-edit-custom-fields": "Editar campos personalizados",
+ "card-edit-labels": "Editar etiquetas",
+ "card-edit-members": "Editar miembros",
+ "card-labels-title": "Cambiar las etiquetas de la tarjeta.",
+ "card-members-title": "Agregar o eliminar de la tarjeta miembros del tablero.",
+ "card-start": "Empieza",
+ "card-start-on": "Empieza el",
+ "cardAttachmentsPopup-title": "Adjuntar De",
+ "cardCustomField-datePopup-title": "Cambiar fecha",
+ "cardCustomFieldsPopup-title": "Editar campos personalizados",
+ "cardDeletePopup-title": "¿Borrar Tarjeta?",
+ "cardDetailsActionsPopup-title": "Acciones de la Tarjeta",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Miembros",
+ "cardMorePopup-title": "Mas",
+ "cardTemplatePopup-title": "Crear plantilla",
+ "cards": "Tarjetas",
+ "cards-count": "Tarjetas",
+ "casSignIn": "Ingresar con CAS",
+ "cardType-card": "Tarjeta",
+ "cardType-linkedCard": "Tarjeta Vinculada",
+ "cardType-linkedBoard": "Tablero Vinculado",
+ "change": "Cambiar",
+ "change-avatar": "Cambiar Avatar",
+ "change-password": "Cambiar Contraseña",
+ "change-permissions": "Cambiar permisos",
+ "change-settings": "Cambiar Opciones",
+ "changeAvatarPopup-title": "Cambiar Avatar",
+ "changeLanguagePopup-title": "Cambiar Lenguaje",
+ "changePasswordPopup-title": "Cambiar Contraseña",
+ "changePermissionsPopup-title": "Cambiar Permisos",
+ "changeSettingsPopup-title": "Cambiar Opciones",
+ "subtasks": "Subtareas",
+ "checklists": "Listas de ítems",
+ "click-to-star": "Clickeá para darle una estrella a este tablero.",
+ "click-to-unstar": "Clickeá para sacarle la estrella al tablero.",
+ "clipboard": "Portapapeles o arrastrar y soltar",
+ "close": "Cerrar",
+ "close-board": "Cerrar Tablero",
+ "close-board-pop": "Podrás restaurar el tablero clickeando el \"Archivo\" desde el encabesado de inicio.",
+ "color-black": "negro",
+ "color-blue": "azul",
+ "color-crimson": "crimson",
+ "color-darkgreen": "verdeoscuro",
+ "color-gold": "dorado",
+ "color-gray": "gris",
+ "color-green": "verde",
+ "color-indigo": "índigo",
+ "color-lime": "lima",
+ "color-magenta": "magenta",
+ "color-mistyrose": "rosamística",
+ "color-navy": "navy",
+ "color-orange": "naranja",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "rosa",
+ "color-plum": "plum",
+ "color-purple": "púrpura",
+ "color-red": "rojo",
+ "color-saddlebrown": "marróntriste",
+ "color-silver": "plata",
+ "color-sky": "cielo",
+ "color-slateblue": "slateblue",
+ "color-white": "blanco",
+ "color-yellow": "amarillo",
+ "unset-color": "Deseleccionado",
+ "comment": "Comentario",
+ "comment-placeholder": "Comentar",
+ "comment-only": "Comentar solamente",
+ "comment-only-desc": "Puede comentar en tarjetas solamente.",
+ "no-comments": "Sin comentarios",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computadora",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copiar enlace a tarjeta en el portapapeles",
+ "linkCardPopup-title": "Tarjeta vinculada",
+ "searchElementPopup-title": "Buscar",
+ "copyCardPopup-title": "Copiar Tarjeta",
+ "copyChecklistToManyCardsPopup-title": "Copiar Plantilla Checklist a Muchas Tarjetas",
+ "copyChecklistToManyCardsPopup-instructions": "Títulos y Descripciones de la Tarjeta Destino en este formato JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título de primera tarjeta\", \"description\":\"Descripción de primera tarjeta\"}, {\"title\":\"Título de segunda tarjeta\",\"description\":\"Descripción de segunda tarjeta\"},{\"title\":\"Título de última tarjeta\",\"description\":\"Descripción de última tarjeta\"} ]",
+ "create": "Crear",
+ "createBoardPopup-title": "Crear Tablero",
+ "chooseBoardSourcePopup-title": "Importar tablero",
+ "createLabelPopup-title": "Crear Etiqueta",
+ "createCustomField": "Crear Campo",
+ "createCustomFieldPopup-title": "Crear Campo",
+ "current": "actual",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Fecha",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(ninguno)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Número",
+ "custom-field-text": "Texto",
+ "custom-fields": "Custom Fields",
+ "date": "Fecha",
+ "decline": "Rechazar",
+ "default-avatar": "Avatar por defecto",
+ "delete": "Borrar",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "¿Borrar Etiqueta?",
+ "description": "Descripción",
+ "disambiguateMultiLabelPopup-title": "Desambiguación de Acción de Etiqueta",
+ "disambiguateMultiMemberPopup-title": "Desambiguación de Acción de Miembro",
+ "discard": "Descartar",
+ "done": "Hecho",
+ "download": "Descargar",
+ "edit": "Editar",
+ "edit-avatar": "Cambiar Avatar",
+ "edit-profile": "Editar Perfil",
+ "edit-wip-limit": "Editar Lìmite de TEP",
+ "soft-wip-limit": "Límite TEP suave",
+ "editCardStartDatePopup-title": "Cambiar fecha de inicio",
+ "editCardDueDatePopup-title": "Cambiar fecha de vencimiento",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Cambiar tiempo empleado",
+ "editLabelPopup-title": "Cambiar Etiqueta",
+ "editNotificationPopup-title": "Editar Notificación",
+ "editProfilePopup-title": "Editar Perfil",
+ "email": "Email",
+ "email-enrollAccount-subject": "Una cuenta creada para vos en __siteName__",
+ "email-enrollAccount-text": "Hola __user__,\n\nPara empezar a usar el servicio, simplemente clickeá en el enlace de abajo.\n\n__url__\n\nGracias.",
+ "email-fail": "Fallo envío de email",
+ "email-fail-text": "Error intentando enviar email",
+ "email-invalid": "Email inválido",
+ "email-invite": "Invitar vía Email",
+ "email-invite-subject": "__inviter__ te envió una invitación",
+ "email-invite-text": "Querido __user__,\n\n__inviter__ te invita a unirte al tablero \"__board__\" para colaborar.\n\nPor favor sigue el enlace de abajo:\n\n__url__\n\nGracias.",
+ "email-resetPassword-subject": "Restaurá tu contraseña en __siteName__",
+ "email-resetPassword-text": "Hola __user__,\n\nPara restaurar tu contraseña, simplemente clickeá el enlace de abajo.\n\n__url__\n\nGracias.",
+ "email-sent": "Email enviado",
+ "email-verifyEmail-subject": "Verificá tu dirección de email en __siteName__",
+ "email-verifyEmail-text": "Hola __user__,\n\nPara verificar tu cuenta de email, simplemente clickeá el enlace de abajo.\n\n__url__\n\nGracias.",
+ "enable-wip-limit": "Activar Límite TEP",
+ "error-board-doesNotExist": "Este tablero no existe",
+ "error-board-notAdmin": "Necesitás ser administrador de este tablero para hacer eso",
+ "error-board-notAMember": "Necesitás ser miembro de este tablero para hacer eso",
+ "error-json-malformed": "Tu texto no es JSON válido",
+ "error-json-schema": "Tus datos JSON no incluyen la información correcta en el formato adecuado",
+ "error-list-doesNotExist": "Esta lista no existe",
+ "error-user-doesNotExist": "Este usuario no existe",
+ "error-user-notAllowSelf": "No podés invitarte a vos mismo",
+ "error-user-notCreated": " El usuario no se creó",
+ "error-username-taken": "El nombre de usuario ya existe",
+ "error-email-taken": "El email ya existe",
+ "export-board": "Exportar tablero",
+ "filter": "Filtrar",
+ "filter-cards": "Filtrar Tarjetas",
+ "filter-clear": "Sacar filtro",
+ "filter-no-label": "Sin etiqueta",
+ "filter-no-member": "No es miembro",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "El filtro está activado",
+ "filter-on-desc": "Estás filtrando cartas en este tablero. Clickeá acá para editar el filtro.",
+ "filter-to-selection": "Filtrar en la selección",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Nombre Completo",
+ "header-logo-title": "Retroceder a tu página de tableros.",
+ "hide-system-messages": "Esconder mensajes del sistema",
+ "headerBarCreateBoardPopup-title": "Crear Tablero",
+ "home": "Inicio",
+ "import": "Importar",
+ "link": "Link",
+ "import-board": "importar tablero",
+ "import-board-c": "Importar tablero",
+ "import-board-title-trello": "Importar tablero de Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "El tablero importado va a borrar todos los datos existentes en el tablero y reemplazarlos con los del tablero en cuestión.",
+ "from-trello": "De Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "En tu tablero de Trello, ve a 'Menú', luego a 'Más', 'Imprimir y Exportar', 'Exportar JSON', y copia el texto resultante.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Pegá tus datos JSON válidos acá",
+ "import-map-members": "Mapear Miembros",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Revisar mapeo de miembros",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Versión",
+ "initials": "Iniciales",
+ "invalid-date": "Fecha inválida",
+ "invalid-time": "Tiempo inválido",
+ "invalid-user": "Usuario inválido",
+ "joined": "unido",
+ "just-invited": "Fuiste invitado a este tablero",
+ "keyboard-shortcuts": "Atajos de teclado",
+ "label-create": "Crear Etiqueta",
+ "label-default": "%s etiqueta (por defecto)",
+ "label-delete-pop": "No hay deshacer. Esto va a eliminar esta etiqueta de todas las tarjetas y destruir su historia.",
+ "labels": "Etiquetas",
+ "language": "Lenguaje",
+ "last-admin-desc": "No podés cambiar roles porque tiene que haber al menos un administrador.",
+ "leave-board": "Dejar Tablero",
+ "leave-board-pop": "¿Estás seguro que querés dejar __boardTitle__? Vas a salir de todas las tarjetas en este tablero.",
+ "leaveBoardPopup-title": "¿Dejar Tablero?",
+ "link-card": "Enlace a esta tarjeta",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Mueve todas las tarjetas en esta lista",
+ "list-select-cards": "Selecciona todas las tarjetas en esta lista",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Listar Acciones",
+ "swimlaneActionPopup-title": "Acciones de la Calle",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Importar una tarjeta Trello",
+ "listMorePopup-title": "Mas",
+ "link-list": "Enlace a esta lista",
+ "list-delete-pop": "Todas las acciones van a ser eliminadas del agregador de actividad y no podás recuperar la lista. No se puede deshacer.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Listas",
+ "swimlanes": "Calles",
+ "log-out": "Salir",
+ "log-in": "Entrar",
+ "loginPopup-title": "Entrar",
+ "memberMenuPopup-title": "Opciones de Miembros",
+ "members": "Miembros",
+ "menu": "Menú",
+ "move-selection": "Mover selección",
+ "moveCardPopup-title": "Mover Tarjeta",
+ "moveCardToBottom-title": "Mover al Final",
+ "moveCardToTop-title": "Mover al Tope",
+ "moveSelectionPopup-title": "Mover selección",
+ "multi-selection": "Multi-Selección",
+ "multi-selection-on": "Multi-selección está activo",
+ "muted": "Silenciado",
+ "muted-info": "No serás notificado de ningún cambio en este tablero",
+ "my-boards": "Mis Tableros",
+ "name": "Nombre",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No hay resultados",
+ "normal": "Normal",
+ "normal-desc": "Puede ver y editar tarjetas. No puede cambiar opciones.",
+ "not-accepted-yet": "Invitación no aceptada todavía",
+ "notify-participate": "Recibí actualizaciones en cualquier tarjeta que participés como creador o miembro",
+ "notify-watch": "Recibí actualizaciones en cualquier tablero, lista, o tarjeta que estés siguiendo",
+ "optional": "opcional",
+ "or": "o",
+ "page-maybe-private": "Esta página puede ser privada. Vos podrás verla <a href='%s'>entrando</a>.",
+ "page-not-found": "Página no encontrada.",
+ "password": "Contraseña",
+ "paste-or-dragdrop": "pegar, arrastrar y soltar el archivo de imagen a esto (imagen sola)",
+ "participating": "Participando",
+ "preview": "Previsualización",
+ "previewAttachedImagePopup-title": "Previsualización",
+ "previewClipboardImagePopup-title": "Previsualización",
+ "private": "Privado",
+ "private-desc": "Este tablero es privado. Solo personas agregadas a este tablero pueden verlo y editarlo.",
+ "profile": "Perfil",
+ "public": "Público",
+ "public-desc": "Este tablero es público. Es visible para cualquiera con un enlace y se va a mostrar en los motores de búsqueda como Google. Solo personas agregadas a este tablero pueden editarlo.",
+ "quick-access-description": "Dale una estrella al tablero para agregar un acceso directo en esta barra.",
+ "remove-cover": "Remover Portada",
+ "remove-from-board": "Remover del Tablero",
+ "remove-label": "Remover Etiqueta",
+ "listDeletePopup-title": "¿Borrar Lista?",
+ "remove-member": "Remover Miembro",
+ "remove-member-from-card": "Remover de Tarjeta",
+ "remove-member-pop": "¿Remover __name__ (__username__) de __boardTitle__? Los miembros va a ser removido de todas las tarjetas en este tablero. Serán notificados.",
+ "removeMemberPopup-title": "¿Remover Miembro?",
+ "rename": "Renombrar",
+ "rename-board": "Renombrar Tablero",
+ "restore": "Restaurar",
+ "save": "Grabar",
+ "search": "Buscar",
+ "rules": "Rules",
+ "search-cards": "Buscar en títulos y descripciones de tarjeta en este tablero",
+ "search-example": "¿Texto a buscar?",
+ "select-color": "Seleccionar Color",
+ "set-wip-limit-value": "Fijar un límite para el número máximo de tareas en esta lista",
+ "setWipLimitPopup-title": "Establecer Límite TEP",
+ "shortcut-assign-self": "Asignarte a vos mismo en la tarjeta actual",
+ "shortcut-autocomplete-emoji": "Autocompletar emonji",
+ "shortcut-autocomplete-members": "Autocompletar miembros",
+ "shortcut-clear-filters": "Limpiar todos los filtros",
+ "shortcut-close-dialog": "Cerrar Diálogo",
+ "shortcut-filter-my-cards": "Filtrar mis tarjetas",
+ "shortcut-show-shortcuts": "Traer esta lista de atajos",
+ "shortcut-toggle-filterbar": "Activar/Desactivar Barra Lateral de Filtros",
+ "shortcut-toggle-sidebar": "Activar/Desactivar Barra Lateral de Tableros",
+ "show-cards-minimum-count": "Mostrar cuenta de tarjetas si la lista contiene más que",
+ "sidebar-open": "Abrir Barra Lateral",
+ "sidebar-close": "Cerrar Barra Lateral",
+ "signupPopup-title": "Crear Cuenta",
+ "star-board-title": "Clickear para darle una estrella a este tablero. Se mostrará arriba en el tope de tu lista de tableros.",
+ "starred-boards": "Tableros con estrellas",
+ "starred-boards-description": "Tableros con estrellas se muestran en el tope de tu lista de tableros.",
+ "subscribe": "Suscribirse",
+ "team": "Equipo",
+ "this-board": "este tablero",
+ "this-card": "esta tarjeta",
+ "spent-time-hours": "Tiempo empleado (horas)",
+ "overtime-hours": "Sobretiempo (horas)",
+ "overtime": "Sobretiempo",
+ "has-overtime-cards": "Tiene tarjetas con sobretiempo",
+ "has-spenttime-cards": "Ha gastado tarjetas de tiempo",
+ "time": "Hora",
+ "title": "Título",
+ "tracking": "Seguimiento",
+ "tracking-info": "Serás notificado de cualquier cambio a aquellas tarjetas en las que seas creador o miembro.",
+ "type": "Type",
+ "unassign-member": "Desasignar miembro",
+ "unsaved-description": "Tienes una descripción sin guardar.",
+ "unwatch": "Dejar de seguir",
+ "upload": "Cargar",
+ "upload-avatar": "Cargar un avatar",
+ "uploaded-avatar": "Cargado un avatar",
+ "username": "Nombre de usuario",
+ "view-it": "Verlo",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Seguir",
+ "watching": "Siguiendo",
+ "watching-info": "Serás notificado de cualquier cambio en este tablero",
+ "welcome-board": "Tablero de Bienvenida",
+ "welcome-swimlane": "Hito 1",
+ "welcome-list1": "Básicos",
+ "welcome-list2": "Avanzado",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "¿Qué querés hacer?",
+ "wipLimitErrorPopup-title": "Límite TEP Inválido",
+ "wipLimitErrorPopup-dialog-pt1": " El número de tareas en esta lista es mayor que el límite TEP que definiste.",
+ "wipLimitErrorPopup-dialog-pt2": "Por favor mové algunas tareas fuera de esta lista, o seleccioná un límite TEP más alto.",
+ "admin-panel": "Panel de Administración",
+ "settings": "Opciones",
+ "people": "Gente",
+ "registration": "Registro",
+ "disable-self-registration": "Desactivar auto-registro",
+ "invite": "Invitar",
+ "invite-people": "Invitar Gente",
+ "to-boards": "A tarjeta(s)",
+ "email-addresses": "Dirección de Email",
+ "smtp-host-description": "La dirección del servidor SMTP que maneja tus emails",
+ "smtp-port-description": "El puerto que tu servidor SMTP usa para correos salientes",
+ "smtp-tls-description": "Activar soporte TLS para el servidor SMTP",
+ "smtp-host": "Servidor SMTP",
+ "smtp-port": "Puerto SMTP",
+ "smtp-username": "Usuario",
+ "smtp-password": "Contraseña",
+ "smtp-tls": "Soporte TLS",
+ "send-from": "De",
+ "send-smtp-test": "Enviarse un email de prueba",
+ "invitation-code": "Código de Invitación",
+ "email-invite-register-subject": "__inviter__ te envió una invitación",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Enviaste el correo correctamente",
+ "error-invitation-code-not-exist": "El código de invitación no existe",
+ "error-notAuthorized": "No estás autorizado para ver esta página.",
+ "outgoing-webhooks": "Ganchos Web Salientes",
+ "outgoingWebhooksPopup-title": "Ganchos Web Salientes",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "Nuevo Gancho Web",
+ "no-name": "(desconocido)",
+ "Node_version": "Versión de Node",
+ "OS_Arch": "Arch del SO",
+ "OS_Cpus": "Cantidad de CPU del SO",
+ "OS_Freemem": "Memoria Libre del SO",
+ "OS_Loadavg": "Carga Promedio del SO",
+ "OS_Platform": "Plataforma del SO",
+ "OS_Release": "Revisión del SO",
+ "OS_Totalmem": "Memoria Total del SO",
+ "OS_Type": "Tipo de SO",
+ "OS_Uptime": "Tiempo encendido del SO",
+ "days": "days",
+ "hours": "horas",
+ "minutes": "minutos",
+ "seconds": "segundos",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Si",
+ "no": "No",
+ "accounts": "Cuentas",
+ "accounts-allowEmailChange": "Permitir Cambio de Email",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Creado en",
+ "verified": "Verificado",
+ "active": "Activo",
+ "card-received": "Recibido",
+ "card-received-on": "Recibido en",
+ "card-end": "Termino",
+ "card-end-on": "Termina en",
+ "editCardReceivedDatePopup-title": "Cambiar fecha de recepción",
+ "editCardEndDatePopup-title": "Cambiar fecha de término",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Mover al Archivo",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Agregar",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json
index a5cc19d8..49d55355 100644
--- a/i18n/es.i18n.json
+++ b/i18n/es.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Aceptar",
- "act-activity-notify": "Notificación de actividad",
- "act-addAttachment": "añadido el adjunto __attachment__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-deleteAttachment": "eliminado el adjunto __attachment__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addSubtask": "añadida la subtarea __subtask__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addedLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removedLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addChecklist": "añadida la lista de verificación __checklist__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addChecklistItem": "añadido el elemento __checklistItem__ a la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeChecklist": "eliminada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeChecklistItem": "eliminado el elemento __checklistItem__ de la lista de verificación __checkList__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-checkedItem": "marcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-uncheckedItem": "desmarcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-completeChecklist": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-uncompleteChecklist": "no completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-addComment": "comentario en la tarjeta__card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-editComment": "comentario editado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-deleteComment": "comentario eliminado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-createBoard": "creó el tablero __board__",
- "act-createSwimlane": "creó el carril de flujo __swimlane__ en el tablero __board__",
- "act-createCard": "creada la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-createCustomField": " creado el campo personalizado __customField__ en el tablero __board__",
- "act-deleteCustomField": "eliminado el campo personalizado __customField__ del tablero __board__",
- "act-setCustomField": "editado el campo personalizado __customField__: __customFieldValue__ en la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-createList": "añadida la lista __list__ al tablero __board__",
- "act-addBoardMember": "añadido el mimbro __member__ al tablero __board__",
- "act-archivedBoard": "El tablero __board__ se ha archivado",
- "act-archivedCard": "La tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
- "act-archivedList": "La lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
- "act-archivedSwimlane": "El carril __swimlane__ del tablero __board__ se ha archivado",
- "act-importBoard": "importado el tablero __board__",
- "act-importCard": "importada la tarjeta __card__ a la lista __list__ del carrril __swimlane__ del tablero __board__",
- "act-importList": "importada la lista __list__ al carril __swimlane__ del tablero __board__",
- "act-joinMember": "añadido el miembro __member__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-moveCard": "movida la tarjeta __card__ del tablero __board__ de la lista __oldList__ del carril __oldSwimlane__ a la lista __list__ del carril __swimlane__",
- "act-moveCardToOtherBoard": "movida la tarjeta __card__ de la lista __oldList__ del carril __oldSwimlane__ del tablero __oldBoard__ a la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-removeBoardMember": "eliminado el miembro __member__ del tablero __board__",
- "act-restoredCard": "restaurada la tarjeta __card__ a la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-unjoinMember": "eliminado el miembro __member__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Acciones",
- "activities": "Actividades",
- "activity": "Actividad",
- "activity-added": "ha añadido %s a %s",
- "activity-archived": "%s se ha archivado",
- "activity-attached": "ha adjuntado %s a %s",
- "activity-created": "ha creado %s",
- "activity-customfield-created": "creó el campo personalizado %s",
- "activity-excluded": "ha excluido %s de %s",
- "activity-imported": "ha importado %s a %s desde %s",
- "activity-imported-board": "ha importado %s desde %s",
- "activity-joined": "se ha unido a %s",
- "activity-moved": "ha movido %s de %s a %s",
- "activity-on": "en %s",
- "activity-removed": "ha eliminado %s de %s",
- "activity-sent": "ha enviado %s a %s",
- "activity-unjoined": "se ha desvinculado de %s",
- "activity-subtask-added": "ha añadido la subtarea a %s",
- "activity-checked-item": "marcado %s en la lista de verificación %s de %s",
- "activity-unchecked-item": "desmarcado %s en lista %s de %s",
- "activity-checklist-added": "ha añadido una lista de verificación a %s",
- "activity-checklist-removed": "eliminada una lista de verificación desde %s",
- "activity-checklist-completed": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "activity-checklist-uncompleted": "no completado la lista %s de %s",
- "activity-checklist-item-added": "ha añadido el elemento de la lista de verificación a '%s' en %s",
- "activity-checklist-item-removed": "eliminado un elemento de la lista de verificación desde '%s' en %s",
- "add": "Añadir",
- "activity-checked-item-card": "marcado %s en la lista de verificación %s",
- "activity-unchecked-item-card": "desmarcado %s en la lista de verificación %s",
- "activity-checklist-completed-card": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
- "activity-checklist-uncompleted-card": "no completó la lista de verificación %s",
- "add-attachment": "Añadir adjunto",
- "add-board": "Añadir tablero",
- "add-card": "Añadir una tarjeta",
- "add-swimlane": "Añadir un carril de flujo",
- "add-subtask": "Añadir subtarea",
- "add-checklist": "Añadir una lista de verificación",
- "add-checklist-item": "Añadir un elemento a la lista de verificación",
- "add-cover": "Añadir portada",
- "add-label": "Añadir una etiqueta",
- "add-list": "Añadir una lista",
- "add-members": "Añadir miembros",
- "added": "Añadida el",
- "addMemberPopup-title": "Miembros",
- "admin": "Administrador",
- "admin-desc": "Puedes ver y editar tarjetas, eliminar miembros, y cambiar las preferencias del tablero",
- "admin-announcement": "Aviso",
- "admin-announcement-active": "Activar el aviso para todo el sistema",
- "admin-announcement-title": "Aviso del administrador",
- "all-boards": "Tableros",
- "and-n-other-card": "y __count__ tarjeta más",
- "and-n-other-card_plural": "y otras __count__ tarjetas",
- "apply": "Aplicar",
- "app-is-offline": "Cargando, espera por favor. Refrescar esta página causará pérdida de datos. Si la carga no funciona, por favor comprueba que el servidor no se ha parado.",
- "archive": "Archivar",
- "archive-all": "Archivar todo",
- "archive-board": "Archivar este tablero",
- "archive-card": "Archivar esta tarjeta",
- "archive-list": "Archivar esta lista",
- "archive-swimlane": "Archivar este carril",
- "archive-selection": "Archivar esta selección",
- "archiveBoardPopup-title": "¿Archivar este tablero?",
- "archived-items": "Archivo",
- "archived-boards": "Tableros en Archivo",
- "restore-board": "Restaurar el tablero",
- "no-archived-boards": "No hay Tableros en el Archivo",
- "archives": "Archivo",
- "template": "Plantilla",
- "templates": "Plantillas",
- "assign-member": "Asignar miembros",
- "attached": "adjuntado",
- "attachment": "Adjunto",
- "attachment-delete-pop": "La eliminación de un fichero adjunto es permanente. Esta acción no puede deshacerse.",
- "attachmentDeletePopup-title": "¿Eliminar el adjunto?",
- "attachments": "Adjuntos",
- "auto-watch": "Suscribirse automáticamente a los tableros cuando son creados",
- "avatar-too-big": "El avatar es muy grande (70KB máx.)",
- "back": "Atrás",
- "board-change-color": "Cambiar el color",
- "board-nb-stars": "%s destacados",
- "board-not-found": "Tablero no encontrado",
- "board-private-info": "Este tablero será <strong>privado</strong>.",
- "board-public-info": "Este tablero será <strong>público</strong>.",
- "boardChangeColorPopup-title": "Cambiar el fondo del tablero",
- "boardChangeTitlePopup-title": "Renombrar el tablero",
- "boardChangeVisibilityPopup-title": "Cambiar visibilidad",
- "boardChangeWatchPopup-title": "Cambiar vigilancia",
- "boardMenuPopup-title": "Preferencias del tablero",
- "boards": "Tableros",
- "board-view": "Vista del tablero",
- "board-view-cal": "Calendario",
- "board-view-swimlanes": "Carriles",
- "board-view-lists": "Listas",
- "bucket-example": "Como “Cosas por hacer” por ejemplo",
- "cancel": "Cancelar",
- "card-archived": "Se archivó esta tarjeta",
- "board-archived": "Se archivó este tablero",
- "card-comments-title": "Esta tarjeta tiene %s comentarios.",
- "card-delete-notice": "la eliminación es permanente. Perderás todas las acciones asociadas a esta tarjeta.",
- "card-delete-pop": "Se eliminarán todas las acciones del historial de actividades y no se podrá volver a abrir la tarjeta. Esta acción no puede deshacerse.",
- "card-delete-suggest-archive": "Puedes mover una tarjeta al Archivo para quitarla del tablero y preservar la actividad.",
- "card-due": "Vence",
- "card-due-on": "Vence el",
- "card-spent": "Tiempo consumido",
- "card-edit-attachments": "Editar los adjuntos",
- "card-edit-custom-fields": "Editar los campos personalizados",
- "card-edit-labels": "Editar las etiquetas",
- "card-edit-members": "Editar los miembros",
- "card-labels-title": "Cambia las etiquetas de la tarjeta",
- "card-members-title": "Añadir o eliminar miembros del tablero desde la tarjeta.",
- "card-start": "Comienza",
- "card-start-on": "Comienza el",
- "cardAttachmentsPopup-title": "Adjuntar desde",
- "cardCustomField-datePopup-title": "Cambiar la fecha",
- "cardCustomFieldsPopup-title": "Editar los campos personalizados",
- "cardDeletePopup-title": "¿Eliminar la tarjeta?",
- "cardDetailsActionsPopup-title": "Acciones de la tarjeta",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Miembros",
- "cardMorePopup-title": "Más",
- "cardTemplatePopup-title": "Crear plantilla",
- "cards": "Tarjetas",
- "cards-count": "Tarjetas",
- "casSignIn": "Iniciar sesión con CAS",
- "cardType-card": "Tarjeta",
- "cardType-linkedCard": "Tarjeta enlazada",
- "cardType-linkedBoard": "Tablero enlazado",
- "change": "Cambiar",
- "change-avatar": "Cambiar el avatar",
- "change-password": "Cambiar la contraseña",
- "change-permissions": "Cambiar los permisos",
- "change-settings": "Cambiar las preferencias",
- "changeAvatarPopup-title": "Cambiar el avatar",
- "changeLanguagePopup-title": "Cambiar el idioma",
- "changePasswordPopup-title": "Cambiar la contraseña",
- "changePermissionsPopup-title": "Cambiar los permisos",
- "changeSettingsPopup-title": "Cambiar las preferencias",
- "subtasks": "Subtareas",
- "checklists": "Lista de verificación",
- "click-to-star": "Haz clic para destacar este tablero.",
- "click-to-unstar": "Haz clic para dejar de destacar este tablero.",
- "clipboard": "el portapapeles o con arrastrar y soltar",
- "close": "Cerrar",
- "close-board": "Cerrar el tablero",
- "close-board-pop": "Podrás restaurar el tablero haciendo clic en el botón \"Archivo\" del encabezado de la pantalla inicial.",
- "color-black": "negra",
- "color-blue": "azul",
- "color-crimson": "carmesí",
- "color-darkgreen": "verde oscuro",
- "color-gold": "oro",
- "color-gray": "gris",
- "color-green": "verde",
- "color-indigo": "añil",
- "color-lime": "lima",
- "color-magenta": "magenta",
- "color-mistyrose": "rosa claro",
- "color-navy": "azul marino",
- "color-orange": "naranja",
- "color-paleturquoise": "turquesa",
- "color-peachpuff": "melocotón",
- "color-pink": "rosa",
- "color-plum": "púrpura",
- "color-purple": "violeta",
- "color-red": "roja",
- "color-saddlebrown": "marrón",
- "color-silver": "plata",
- "color-sky": "celeste",
- "color-slateblue": "azul",
- "color-white": "blanco",
- "color-yellow": "amarilla",
- "unset-color": "Desmarcar",
- "comment": "Comentar",
- "comment-placeholder": "Escribir comentario",
- "comment-only": "Sólo comentarios",
- "comment-only-desc": "Solo puedes comentar en las tarjetas.",
- "no-comments": "No hay comentarios",
- "no-comments-desc": "No se pueden mostrar comentarios ni actividades.",
- "computer": "el ordenador",
- "confirm-subtask-delete-dialog": "¿Seguro que quieres eliminar la subtarea?",
- "confirm-checklist-delete-dialog": "¿Seguro que quieres eliminar la lista de verificación?",
- "copy-card-link-to-clipboard": "Copiar el enlace de la tarjeta al portapapeles",
- "linkCardPopup-title": "Enlazar tarjeta",
- "searchElementPopup-title": "Buscar",
- "copyCardPopup-title": "Copiar la tarjeta",
- "copyChecklistToManyCardsPopup-title": "Copiar la plantilla de la lista de verificación en varias tarjetas",
- "copyChecklistToManyCardsPopup-instructions": "Títulos y descripciones de las tarjetas de destino en formato JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título de la primera tarjeta\", \"description\":\"Descripción de la primera tarjeta\"}, {\"title\":\"Título de la segunda tarjeta\",\"description\":\"Descripción de la segunda tarjeta\"},{\"title\":\"Título de la última tarjeta\",\"description\":\"Descripción de la última tarjeta\"} ]",
- "create": "Crear",
- "createBoardPopup-title": "Crear tablero",
- "chooseBoardSourcePopup-title": "Importar un tablero",
- "createLabelPopup-title": "Crear etiqueta",
- "createCustomField": "Crear un campo",
- "createCustomFieldPopup-title": "Crear un campo",
- "current": "actual",
- "custom-field-delete-pop": "Se eliminará este campo personalizado de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
- "custom-field-checkbox": "Casilla de verificación",
- "custom-field-date": "Fecha",
- "custom-field-dropdown": "Lista desplegable",
- "custom-field-dropdown-none": "(nada)",
- "custom-field-dropdown-options": "Opciones de la lista",
- "custom-field-dropdown-options-placeholder": "Pulsa Intro para añadir más opciones",
- "custom-field-dropdown-unknown": "(desconocido)",
- "custom-field-number": "Número",
- "custom-field-text": "Texto",
- "custom-fields": "Campos personalizados",
- "date": "Fecha",
- "decline": "Declinar",
- "default-avatar": "Avatar por defecto",
- "delete": "Eliminar",
- "deleteCustomFieldPopup-title": "¿Eliminar el campo personalizado?",
- "deleteLabelPopup-title": "¿Eliminar la etiqueta?",
- "description": "Descripción",
- "disambiguateMultiLabelPopup-title": "Desambiguar la acción de etiqueta",
- "disambiguateMultiMemberPopup-title": "Desambiguar la acción de miembro",
- "discard": "Descartarla",
- "done": "Hecho",
- "download": "Descargar",
- "edit": "Editar",
- "edit-avatar": "Cambiar el avatar",
- "edit-profile": "Editar el perfil",
- "edit-wip-limit": "Cambiar el límite del trabajo en proceso",
- "soft-wip-limit": "Límite del trabajo en proceso flexible",
- "editCardStartDatePopup-title": "Cambiar la fecha de comienzo",
- "editCardDueDatePopup-title": "Cambiar la fecha de vencimiento",
- "editCustomFieldPopup-title": "Editar el campo",
- "editCardSpentTimePopup-title": "Cambiar el tiempo consumido",
- "editLabelPopup-title": "Cambiar la etiqueta",
- "editNotificationPopup-title": "Editar las notificaciones",
- "editProfilePopup-title": "Editar el perfil",
- "email": "Correo electrónico",
- "email-enrollAccount-subject": "Cuenta creada en __siteName__",
- "email-enrollAccount-text": "Hola __user__,\n\nPara empezar a utilizar el servicio, simplemente haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
- "email-fail": "Error al enviar el correo",
- "email-fail-text": "Error al intentar enviar el correo",
- "email-invalid": "Correo no válido",
- "email-invite": "Invitar vía correo electrónico",
- "email-invite-subject": "__inviter__ ha enviado una invitación",
- "email-invite-text": "Estimado __user__,\n\n__inviter__ te invita a unirte al tablero '__board__' para colaborar.\n\nPor favor, haz clic en el siguiente enlace:\n\n__url__\n\nGracias.",
- "email-resetPassword-subject": "Restablecer tu contraseña en __siteName__",
- "email-resetPassword-text": "Hola __user__,\n\nPara restablecer tu contraseña, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
- "email-sent": "Correo enviado",
- "email-verifyEmail-subject": "Verifica tu dirección de correo en __siteName__",
- "email-verifyEmail-text": "Hola __user__,\n\nPara verificar tu cuenta de correo electrónico, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
- "enable-wip-limit": "Activar el límite del trabajo en proceso",
- "error-board-doesNotExist": "El tablero no existe",
- "error-board-notAdmin": "Es necesario ser administrador de este tablero para hacer eso",
- "error-board-notAMember": "Es necesario ser miembro de este tablero para hacer eso",
- "error-json-malformed": "El texto no es un JSON válido",
- "error-json-schema": "Sus datos JSON no incluyen la información apropiada en el formato correcto",
- "error-list-doesNotExist": "La lista no existe",
- "error-user-doesNotExist": "El usuario no existe",
- "error-user-notAllowSelf": "No puedes invitarte a ti mismo",
- "error-user-notCreated": "El usuario no ha sido creado",
- "error-username-taken": "Este nombre de usuario ya está en uso",
- "error-email-taken": "Esta dirección de correo ya está en uso",
- "export-board": "Exportar el tablero",
- "filter": "Filtrar",
- "filter-cards": "Filtrar tarjetas",
- "filter-clear": "Limpiar el filtro",
- "filter-no-label": "Sin etiqueta",
- "filter-no-member": "Sin miembro",
- "filter-no-custom-fields": "Sin campos personalizados",
- "filter-on": "Filtrado activado",
- "filter-on-desc": "Estás filtrando tarjetas en este tablero. Haz clic aquí para editar el filtro.",
- "filter-to-selection": "Filtrar la selección",
- "advanced-filter-label": "Filtrado avanzado",
- "advanced-filter-description": "El filtrado avanzado permite escribir una cadena que contiene los siguientes operadores: == != <= >= && || ( ) Se utiliza un espacio como separador entre los operadores. Se pueden filtrar todos los campos personalizados escribiendo sus nombres y valores. Por ejemplo: Campo1 == Valor1. Nota: Si los campos o valores contienen espacios, deben encapsularse entre comillas simples. Por ejemplo: 'Campo 1' == 'Valor 1'. Para omitir los caracteres de control único (' \\/), se usa \\. Por ejemplo: Campo1 = I\\'m. También se pueden combinar múltiples condiciones. Por ejemplo: C1 == V1 || C1 == V2. Normalmente todos los operadores se interpretan de izquierda a derecha. Se puede cambiar el orden colocando paréntesis. Por ejemplo: C1 == V1 && ( C2 == V2 || C2 == V3 ). También se puede buscar en campos de texto usando expresiones regulares: C1 == /Tes.*/i",
- "fullname": "Nombre completo",
- "header-logo-title": "Volver a tu página de tableros",
- "hide-system-messages": "Ocultar las notificaciones de actividad",
- "headerBarCreateBoardPopup-title": "Crear tablero",
- "home": "Inicio",
- "import": "Importar",
- "link": "Enlace",
- "import-board": "importar un tablero",
- "import-board-c": "Importar un tablero",
- "import-board-title-trello": "Importar un tablero desde Trello",
- "import-board-title-wekan": "Importar tablero desde una exportación previa",
- "import-sandstorm-backup-warning": "No elimine los datos que está importando del tablero o Trello original antes de verificar que la semilla pueda cerrarse y abrirse nuevamente, o que ocurra un error de \"Tablero no encontrado\", de lo contrario perderá sus datos.",
- "import-sandstorm-warning": "El tablero importado eliminará todos los datos existentes en este tablero y los reemplazará con los datos del tablero importado.",
- "from-trello": "Desde Trello",
- "from-wekan": "Desde exportación previa",
- "import-board-instruction-trello": "En tu tablero de Trello, ve a 'Menú', luego 'Más' > 'Imprimir y exportar' > 'Exportar JSON', y copia el texto resultante.",
- "import-board-instruction-wekan": "En tu tablero, vete a 'Menú', luego 'Exportar tablero', y copia el texto en el archivo descargado.",
- "import-board-instruction-about-errors": "Aunque obtengas errores cuando importes el tablero, a veces la importación funciona igualmente, y el tablero se encontrará en la página de tableros.",
- "import-json-placeholder": "Pega tus datos JSON válidos aquí",
- "import-map-members": "Mapa de miembros",
- "import-members-map": "Tu tablero importado tiene algunos miembros. Por favor, mapea los miembros que quieres importar con tus usuarios.",
- "import-show-user-mapping": "Revisión de la asignación de miembros",
- "import-user-select": "Selecciona el miembro existe que quieres usar como este miembro.",
- "importMapMembersAddPopup-title": "Seleccionar miembro",
- "info": "Versión",
- "initials": "Iniciales",
- "invalid-date": "Fecha no válida",
- "invalid-time": "Tiempo no válido",
- "invalid-user": "Usuario no válido",
- "joined": "se ha unido",
- "just-invited": "Has sido invitado a este tablero",
- "keyboard-shortcuts": "Atajos de teclado",
- "label-create": "Crear una etiqueta",
- "label-default": "etiqueta %s (por defecto)",
- "label-delete-pop": "Se eliminará esta etiqueta de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
- "labels": "Etiquetas",
- "language": "Cambiar el idioma",
- "last-admin-desc": "No puedes cambiar roles porque debe haber al menos un administrador.",
- "leave-board": "Abandonar el tablero",
- "leave-board-pop": "¿Seguro que quieres abandonar __boardTitle__? Serás desvinculado de todas las tarjetas en este tablero.",
- "leaveBoardPopup-title": "¿Abandonar el tablero?",
- "link-card": "Enlazar a esta tarjeta",
- "list-archive-cards": "Archivar todas las tarjetas de esta lista",
- "list-archive-cards-pop": "Esto eliminará del tablero todas las tarjetas en esta lista. Para ver las tarjetas en el Archivo y recuperarlas al tablero haga click en \"Menu\" > \"Archivo\"",
- "list-move-cards": "Mover todas las tarjetas de esta lista",
- "list-select-cards": "Seleccionar todas las tarjetas de esta lista",
- "set-color-list": "Cambiar el color",
- "listActionPopup-title": "Acciones de la lista",
- "swimlaneActionPopup-title": "Acciones del carril de flujo",
- "swimlaneAddPopup-title": "Añadir un carril de flujo debajo",
- "listImportCardPopup-title": "Importar una tarjeta de Trello",
- "listMorePopup-title": "Más",
- "link-list": "Enlazar a esta lista",
- "list-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar la lista. Esta acción no puede deshacerse.",
- "list-delete-suggest-archive": "Puedes mover una lista al Archivo para quitarla del tablero y preservar la actividad.",
- "lists": "Listas",
- "swimlanes": "Carriles",
- "log-out": "Finalizar la sesión",
- "log-in": "Iniciar sesión",
- "loginPopup-title": "Iniciar sesión",
- "memberMenuPopup-title": "Preferencias de miembro",
- "members": "Miembros",
- "menu": "Menú",
- "move-selection": "Mover la selección",
- "moveCardPopup-title": "Mover la tarjeta",
- "moveCardToBottom-title": "Mover al final",
- "moveCardToTop-title": "Mover al principio",
- "moveSelectionPopup-title": "Mover la selección",
- "multi-selection": "Selección múltiple",
- "multi-selection-on": "Selección múltiple activada",
- "muted": "Silenciado",
- "muted-info": "No serás notificado de ningún cambio en este tablero",
- "my-boards": "Mis tableros",
- "name": "Nombre",
- "no-archived-cards": "No hay tarjetas archivadas.",
- "no-archived-lists": "No hay listas archivadas.",
- "no-archived-swimlanes": "No hay carriles archivados.",
- "no-results": "Sin resultados",
- "normal": "Normal",
- "normal-desc": "Puedes ver y editar tarjetas. No puedes cambiar la configuración.",
- "not-accepted-yet": "La invitación no ha sido aceptada aún",
- "notify-participate": "Recibir actualizaciones de cualquier tarjeta en la que participas como creador o miembro",
- "notify-watch": "Recibir actuaizaciones de cualquier tablero, lista o tarjeta que estés vigilando",
- "optional": "opcional",
- "or": "o",
- "page-maybe-private": "Esta página puede ser privada. Es posible que puedas verla al <a href='%s'>iniciar sesión</a>.",
- "page-not-found": "Página no encontrada.",
- "password": "Contraseña",
- "paste-or-dragdrop": "pegar o arrastrar y soltar un fichero de imagen (sólo imagen)",
- "participating": "Participando",
- "preview": "Previsualizar",
- "previewAttachedImagePopup-title": "Previsualizar",
- "previewClipboardImagePopup-title": "Previsualizar",
- "private": "Privado",
- "private-desc": "Este tablero es privado. Sólo las personas añadidas al tablero pueden verlo y editarlo.",
- "profile": "Perfil",
- "public": "Público",
- "public-desc": "Este tablero es público. Es visible para cualquiera a través del enlace, y se mostrará en los buscadores como Google. Sólo las personas añadidas al tablero pueden editarlo.",
- "quick-access-description": "Destaca un tablero para añadir un acceso directo en esta barra.",
- "remove-cover": "Eliminar portada",
- "remove-from-board": "Desvincular del tablero",
- "remove-label": "Eliminar la etiqueta",
- "listDeletePopup-title": "¿Eliminar la lista?",
- "remove-member": "Eliminar miembro",
- "remove-member-from-card": "Eliminar de la tarjeta",
- "remove-member-pop": "¿Eliminar __name__ (__username__) de __boardTitle__? El miembro será eliminado de todas las tarjetas de este tablero. En ellas se mostrará una notificación.",
- "removeMemberPopup-title": "¿Eliminar miembro?",
- "rename": "Renombrar",
- "rename-board": "Renombrar el tablero",
- "restore": "Restaurar",
- "save": "Añadir",
- "search": "Buscar",
- "rules": "Reglas",
- "search-cards": "Buscar entre los títulos y las descripciones de las tarjetas en este tablero.",
- "search-example": "¿Texto a buscar?",
- "select-color": "Seleccionar el color",
- "set-wip-limit-value": "Cambiar el límite para el número máximo de tareas en esta lista.",
- "setWipLimitPopup-title": "Cambiar el límite del trabajo en proceso",
- "shortcut-assign-self": "Asignarte a ti mismo a la tarjeta actual",
- "shortcut-autocomplete-emoji": "Autocompletar emoji",
- "shortcut-autocomplete-members": "Autocompletar miembros",
- "shortcut-clear-filters": "Limpiar todos los filtros",
- "shortcut-close-dialog": "Cerrar el cuadro de diálogo",
- "shortcut-filter-my-cards": "Filtrar mis tarjetas",
- "shortcut-show-shortcuts": "Mostrar esta lista de atajos",
- "shortcut-toggle-filterbar": "Conmutar la barra lateral del filtro",
- "shortcut-toggle-sidebar": "Conmutar la barra lateral del tablero",
- "show-cards-minimum-count": "Mostrar recuento de tarjetas si la lista contiene más de",
- "sidebar-open": "Abrir la barra lateral",
- "sidebar-close": "Cerrar la barra lateral",
- "signupPopup-title": "Crear una cuenta",
- "star-board-title": "Haz clic para destacar este tablero. Se mostrará en la parte superior de tu lista de tableros.",
- "starred-boards": "Tableros destacados",
- "starred-boards-description": "Los tableros destacados se mostrarán en la parte superior de tu lista de tableros.",
- "subscribe": "Suscribirse",
- "team": "Equipo",
- "this-board": "este tablero",
- "this-card": "esta tarjeta",
- "spent-time-hours": "Tiempo consumido (horas)",
- "overtime-hours": "Tiempo excesivo (horas)",
- "overtime": "Tiempo excesivo",
- "has-overtime-cards": "Hay tarjetas con el tiempo excedido",
- "has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas",
- "time": "Hora",
- "title": "Título",
- "tracking": "Siguiendo",
- "tracking-info": "Serás notificado de cualquier cambio en las tarjetas en las que participas como creador o miembro.",
- "type": "Tipo",
- "unassign-member": "Desvincular al miembro",
- "unsaved-description": "Tienes una descripción por añadir.",
- "unwatch": "Dejar de vigilar",
- "upload": "Cargar",
- "upload-avatar": "Cargar un avatar",
- "uploaded-avatar": "Avatar cargado",
- "username": "Nombre de usuario",
- "view-it": "Verla",
- "warn-list-archived": "advertencia: esta tarjeta está en una lista en el Archivo",
- "watch": "Vigilar",
- "watching": "Vigilando",
- "watching-info": "Serás notificado de cualquier cambio en este tablero",
- "welcome-board": "Tablero de bienvenida",
- "welcome-swimlane": "Hito 1",
- "welcome-list1": "Básicos",
- "welcome-list2": "Avanzados",
- "card-templates-swimlane": "Plantilla de tarjeta",
- "list-templates-swimlane": "Listar plantillas",
- "board-templates-swimlane": "Plantilla de tablero",
- "what-to-do": "¿Qué deseas hacer?",
- "wipLimitErrorPopup-title": "El límite del trabajo en proceso no es válido.",
- "wipLimitErrorPopup-dialog-pt1": "El número de tareas en esta lista es mayor que el límite del trabajo en proceso que has definido.",
- "wipLimitErrorPopup-dialog-pt2": "Por favor, mueve algunas tareas fuera de esta lista, o fija un límite del trabajo en proceso más alto.",
- "admin-panel": "Panel del administrador",
- "settings": "Preferencias",
- "people": "Personas",
- "registration": "Registro",
- "disable-self-registration": "Deshabilitar autoregistro",
- "invite": "Invitar",
- "invite-people": "Invitar a personas",
- "to-boards": "A el(los) tablero(s)",
- "email-addresses": "Direcciones de correo electrónico",
- "smtp-host-description": "Dirección del servidor SMTP para gestionar tus correos",
- "smtp-port-description": "Puerto usado por el servidor SMTP para mandar correos",
- "smtp-tls-description": "Habilitar el soporte TLS para el servidor SMTP",
- "smtp-host": "Servidor SMTP",
- "smtp-port": "Puerto SMTP",
- "smtp-username": "Nombre de usuario",
- "smtp-password": "Contraseña",
- "smtp-tls": "Soporte TLS",
- "send-from": "Desde",
- "send-smtp-test": "Enviarte un correo de prueba a ti mismo",
- "invitation-code": "Código de Invitación",
- "email-invite-register-subject": "__inviter__ te ha enviado una invitación",
- "email-invite-register-text": "Querido __user__,\n__inviter__ le invita al tablero kanban para colaborar.\n\nPor favor, siga el siguiente enlace:\n__url__\n\nY tu código de invitación es: __icode__\n\nGracias.",
- "email-smtp-test-subject": "Prueba de email SMTP",
- "email-smtp-test-text": "El correo se ha enviado correctamente",
- "error-invitation-code-not-exist": "El código de invitación no existe",
- "error-notAuthorized": "No estás autorizado a ver esta página.",
- "outgoing-webhooks": "Webhooks salientes",
- "outgoingWebhooksPopup-title": "Webhooks salientes",
- "boardCardTitlePopup-title": "Filtro de títulos de tarjeta",
- "new-outgoing-webhook": "Nuevo webhook saliente",
- "no-name": "(Desconocido)",
- "Node_version": "Versión de Node",
- "OS_Arch": "Arquitectura del sistema",
- "OS_Cpus": "Número de CPUs del sistema",
- "OS_Freemem": "Memoria libre del sistema",
- "OS_Loadavg": "Carga media del sistema",
- "OS_Platform": "Plataforma del sistema",
- "OS_Release": "Publicación del sistema",
- "OS_Totalmem": "Memoria total del sistema",
- "OS_Type": "Tipo de sistema",
- "OS_Uptime": "Tiempo activo del sistema",
- "days": "días",
- "hours": "horas",
- "minutes": "minutos",
- "seconds": "segundos",
- "show-field-on-card": "Mostrar este campo en la tarjeta",
- "automatically-field-on-card": "Crear campos automáticamente para todas las tarjetas.",
- "showLabel-field-on-card": "Mostrar etiquetas de campos en la minitarjeta.",
- "yes": "Sí",
- "no": "No",
- "accounts": "Cuentas",
- "accounts-allowEmailChange": "Permitir cambiar el correo electrónico",
- "accounts-allowUserNameChange": "Permitir cambiar el nombre de usuario",
- "createdAt": "Fecha de alta",
- "verified": "Verificado",
- "active": "Activo",
- "card-received": "Recibido",
- "card-received-on": "Recibido el",
- "card-end": "Finalizado",
- "card-end-on": "Finalizado el",
- "editCardReceivedDatePopup-title": "Cambiar la fecha de recepción",
- "editCardEndDatePopup-title": "Cambiar la fecha de finalización",
- "setCardColorPopup-title": "Cambiar el color",
- "setCardActionsColorPopup-title": "Elegir un color",
- "setSwimlaneColorPopup-title": "Elegir un color",
- "setListColorPopup-title": "Elegir un color",
- "assigned-by": "Asignado por",
- "requested-by": "Solicitado por",
- "board-delete-notice": "Se eliminarán todas las listas, tarjetas y acciones asociadas a este tablero. Esta acción no puede deshacerse.",
- "delete-board-confirm-popup": "Se eliminarán todas las listas, tarjetas, etiquetas y actividades, y no podrás recuperar los contenidos del tablero. Esta acción no puede deshacerse.",
- "boardDeletePopup-title": "¿Eliminar el tablero?",
- "delete-board": "Eliminar el tablero",
- "default-subtasks-board": "Subtareas para el tablero __board__",
- "default": "Por defecto",
- "queue": "Cola",
- "subtask-settings": "Preferencias de las subtareas",
- "boardSubtaskSettingsPopup-title": "Preferencias de las subtareas del tablero",
- "show-subtasks-field": "Las tarjetas pueden tener subtareas",
- "deposit-subtasks-board": "Depositar subtareas en este tablero:",
- "deposit-subtasks-list": "Lista de destino para subtareas depositadas aquí:",
- "show-parent-in-minicard": "Mostrar el padre en una minitarjeta:",
- "prefix-with-full-path": "Prefijo con ruta completa",
- "prefix-with-parent": "Prefijo con el padre",
- "subtext-with-full-path": "Subtexto con ruta completa",
- "subtext-with-parent": "Subtexto con el padre",
- "change-card-parent": "Cambiar la tarjeta padre",
- "parent-card": "Tarjeta padre",
- "source-board": "Tablero de origen",
- "no-parent": "No mostrar la tarjeta padre",
- "activity-added-label": "añadida etiqueta %s a %s",
- "activity-removed-label": "eliminada etiqueta '%s' desde %s",
- "activity-delete-attach": "eliminado un adjunto desde %s",
- "activity-added-label-card": "añadida etiqueta '%s'",
- "activity-removed-label-card": "eliminada etiqueta '%s'",
- "activity-delete-attach-card": "eliminado un adjunto",
- "activity-set-customfield": "Cambiar el campo personalizado '%s' a '%s' en %s",
- "activity-unset-customfield": "Desmarcar el campo personalizado '%s' en %s",
- "r-rule": "Regla",
- "r-add-trigger": "Añadir disparador",
- "r-add-action": "Añadir acción",
- "r-board-rules": "Reglas del tablero",
- "r-add-rule": "Añadir regla",
- "r-view-rule": "Ver regla",
- "r-delete-rule": "Eliminar regla",
- "r-new-rule-name": "Nueva título de regla",
- "r-no-rules": "No hay reglas",
- "r-when-a-card": "Cuando una tarjeta",
- "r-is": "es",
- "r-is-moved": "es movida",
- "r-added-to": "agregada a",
- "r-removed-from": "eliminado de",
- "r-the-board": "el tablero",
- "r-list": "la lista",
- "set-filter": "Filtrar",
- "r-moved-to": "Movido a",
- "r-moved-from": "Movido desde",
- "r-archived": "Se archivó",
- "r-unarchived": "Restaurado del archivo",
- "r-a-card": "una tarjeta",
- "r-when-a-label-is": "Cuando una etiqueta es",
- "r-when-the-label": "Cuando la etiqueta es",
- "r-list-name": "Nombre de lista",
- "r-when-a-member": "Cuando un miembro es",
- "r-when-the-member": "Cuando el miembro",
- "r-name": "nombre",
- "r-when-a-attach": "Cuando un adjunto",
- "r-when-a-checklist": "Cuando una lista de verificación es",
- "r-when-the-checklist": "Cuando la lista de verificación",
- "r-completed": "Completada",
- "r-made-incomplete": "Hecha incompleta",
- "r-when-a-item": "Cuando un elemento de la lista de verificación es",
- "r-when-the-item": "Cuando el elemento de la lista de verificación es",
- "r-checked": "Marcado",
- "r-unchecked": "Desmarcado",
- "r-move-card-to": "Mover la tarjeta",
- "r-top-of": "Arriba de",
- "r-bottom-of": "Abajo de",
- "r-its-list": "su lista",
- "r-archive": "Archivar",
- "r-unarchive": "Restaurar del Archivo",
- "r-card": "la tarjeta",
- "r-add": "Añadir",
- "r-remove": "Eliminar",
- "r-label": "etiqueta",
- "r-member": "miembro",
- "r-remove-all": "Eliminar todos los miembros de la tarjeta",
- "r-set-color": "Cambiar el color a",
- "r-checklist": "lista de verificación",
- "r-check-all": "Marcar todo",
- "r-uncheck-all": "Desmarcar todo",
- "r-items-check": "elementos de la lista de verificación",
- "r-check": "Marcar",
- "r-uncheck": "Desmarcar",
- "r-item": "elemento",
- "r-of-checklist": "de la lista de verificación",
- "r-send-email": "Enviar un email",
- "r-to": "a",
- "r-subject": "asunto",
- "r-rule-details": "Detalle de la regla",
- "r-d-move-to-top-gen": "Mover la tarjeta al inicio de su lista",
- "r-d-move-to-top-spec": "Mover la tarjeta al inicio de la lista",
- "r-d-move-to-bottom-gen": "Mover la tarjeta al final de su lista",
- "r-d-move-to-bottom-spec": "Mover la tarjeta al final de la lista",
- "r-d-send-email": "Enviar email",
- "r-d-send-email-to": "a",
- "r-d-send-email-subject": "asunto",
- "r-d-send-email-message": "mensaje",
- "r-d-archive": "Archivar la tarjeta",
- "r-d-unarchive": "Restaurar tarjeta del Archivo",
- "r-d-add-label": "Añadir etiqueta",
- "r-d-remove-label": "Eliminar etiqueta",
- "r-create-card": "Crear una nueva tarjeta",
- "r-in-list": "en la lista",
- "r-in-swimlane": "en el carril",
- "r-d-add-member": "Añadir miembro",
- "r-d-remove-member": "Eliminar miembro",
- "r-d-remove-all-member": "Eliminar todos los miembros",
- "r-d-check-all": "Marcar todos los elementos de una lista",
- "r-d-uncheck-all": "Desmarcar todos los elementos de una lista",
- "r-d-check-one": "Marcar elemento",
- "r-d-uncheck-one": "Desmarcar elemento",
- "r-d-check-of-list": "de la lista de verificación",
- "r-d-add-checklist": "Añadir una lista de verificación",
- "r-d-remove-checklist": "Eliminar lista de verificación",
- "r-by": "por",
- "r-add-checklist": "Añadir una lista de verificación",
- "r-with-items": "con items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Agregar el carril",
- "r-swimlane-name": "nombre del carril",
- "r-board-note": "Nota: deje un campo vacío para que coincida con todos los valores posibles",
- "r-checklist-note": "Nota: los ítems de la lista tienen que escribirse como valores separados por coma.",
- "r-when-a-card-is-moved": "Cuando una tarjeta es movida a otra lista",
- "r-set": "Cambiar",
- "r-update": "Actualizar",
- "r-datefield": "campo de fecha",
- "r-df-start-at": "comienza",
- "r-df-due-at": "vencimiento",
- "r-df-end-at": "finalizado",
- "r-df-received-at": "recibido",
- "r-to-current-datetime": "a la fecha/hora actual",
- "r-remove-value-from": "Eliminar el valor de",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Método de autenticación",
- "authentication-type": "Tipo de autenticación",
- "custom-product-name": "Nombre de producto personalizado",
- "layout": "Diseño",
- "hide-logo": "Ocultar logo",
- "add-custom-html-after-body-start": "Añade HTML personalizado después de <body>",
- "add-custom-html-before-body-end": "Añade HTML personalizado después de </body>",
- "error-undefined": "Algo no está bien",
- "error-ldap-login": "Ocurrió un error al intentar acceder",
- "display-authentication-method": "Mostrar el método de autenticación",
- "default-authentication-method": "Método de autenticación por defecto",
- "duplicate-board": "Duplicar tablero",
- "people-number": "El número de personas es:",
- "swimlaneDeletePopup-title": "¿Eliminar el carril de flujo?",
- "swimlane-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar el carril de flujo. Esta acción no puede deshacerse.",
- "restore-all": "Restaurar todas",
- "delete-all": "Borrar todas",
- "loading": "Cargando. Por favor, espere.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Aceptar",
+ "act-activity-notify": "Notificación de actividad",
+ "act-addAttachment": "añadido el adjunto __attachment__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-deleteAttachment": "eliminado el adjunto __attachment__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addSubtask": "añadida la subtarea __subtask__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addedLabel": "añadida la etiqueta __label__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removedLabel": "eliminada la etiqueta __label__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addChecklist": "añadida la lista de verificación __checklist__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addChecklistItem": "añadido el elemento __checklistItem__ a la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeChecklist": "eliminada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeChecklistItem": "eliminado el elemento __checklistItem__ de la lista de verificación __checkList__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-checkedItem": "marcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-uncheckedItem": "desmarcado el elemento __checklistItem__ de la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-completeChecklist": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-uncompleteChecklist": "no completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-addComment": "comentario en la tarjeta__card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-editComment": "comentario editado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-deleteComment": "comentario eliminado en la tarjeta __card__: __comment__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-createBoard": "creó el tablero __board__",
+ "act-createSwimlane": "creó el carril de flujo __swimlane__ en el tablero __board__",
+ "act-createCard": "creada la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-createCustomField": " creado el campo personalizado __customField__ en el tablero __board__",
+ "act-deleteCustomField": "eliminado el campo personalizado __customField__ del tablero __board__",
+ "act-setCustomField": "editado el campo personalizado __customField__: __customFieldValue__ en la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-createList": "añadida la lista __list__ al tablero __board__",
+ "act-addBoardMember": "añadido el mimbro __member__ al tablero __board__",
+ "act-archivedBoard": "El tablero __board__ se ha archivado",
+ "act-archivedCard": "La tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
+ "act-archivedList": "La lista __list__ del carril __swimlane__ del tablero __board__ se ha archivado",
+ "act-archivedSwimlane": "El carril __swimlane__ del tablero __board__ se ha archivado",
+ "act-importBoard": "importado el tablero __board__",
+ "act-importCard": "importada la tarjeta __card__ a la lista __list__ del carrril __swimlane__ del tablero __board__",
+ "act-importList": "importada la lista __list__ al carril __swimlane__ del tablero __board__",
+ "act-joinMember": "añadido el miembro __member__ a la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-moveCard": "movida la tarjeta __card__ del tablero __board__ de la lista __oldList__ del carril __oldSwimlane__ a la lista __list__ del carril __swimlane__",
+ "act-moveCardToOtherBoard": "movida la tarjeta __card__ de la lista __oldList__ del carril __oldSwimlane__ del tablero __oldBoard__ a la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-removeBoardMember": "eliminado el miembro __member__ del tablero __board__",
+ "act-restoredCard": "restaurada la tarjeta __card__ a la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-unjoinMember": "eliminado el miembro __member__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Acciones",
+ "activities": "Actividades",
+ "activity": "Actividad",
+ "activity-added": "ha añadido %s a %s",
+ "activity-archived": "%s se ha archivado",
+ "activity-attached": "ha adjuntado %s a %s",
+ "activity-created": "ha creado %s",
+ "activity-customfield-created": "creó el campo personalizado %s",
+ "activity-excluded": "ha excluido %s de %s",
+ "activity-imported": "ha importado %s a %s desde %s",
+ "activity-imported-board": "ha importado %s desde %s",
+ "activity-joined": "se ha unido a %s",
+ "activity-moved": "ha movido %s de %s a %s",
+ "activity-on": "en %s",
+ "activity-removed": "ha eliminado %s de %s",
+ "activity-sent": "ha enviado %s a %s",
+ "activity-unjoined": "se ha desvinculado de %s",
+ "activity-subtask-added": "ha añadido la subtarea a %s",
+ "activity-checked-item": "marcado %s en la lista de verificación %s de %s",
+ "activity-unchecked-item": "desmarcado %s en lista %s de %s",
+ "activity-checklist-added": "ha añadido una lista de verificación a %s",
+ "activity-checklist-removed": "eliminada una lista de verificación desde %s",
+ "activity-checklist-completed": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "activity-checklist-uncompleted": "no completado la lista %s de %s",
+ "activity-checklist-item-added": "ha añadido el elemento de la lista de verificación a '%s' en %s",
+ "activity-checklist-item-removed": "eliminado un elemento de la lista de verificación desde '%s' en %s",
+ "add": "Añadir",
+ "activity-checked-item-card": "marcado %s en la lista de verificación %s",
+ "activity-unchecked-item-card": "desmarcado %s en la lista de verificación %s",
+ "activity-checklist-completed-card": "completada la lista de verificación __checklist__ de la tarjeta __card__ de la lista __list__ del carril __swimlane__ del tablero __board__",
+ "activity-checklist-uncompleted-card": "no completó la lista de verificación %s",
+ "add-attachment": "Añadir adjunto",
+ "add-board": "Añadir tablero",
+ "add-card": "Añadir una tarjeta",
+ "add-swimlane": "Añadir un carril de flujo",
+ "add-subtask": "Añadir subtarea",
+ "add-checklist": "Añadir una lista de verificación",
+ "add-checklist-item": "Añadir un elemento a la lista de verificación",
+ "add-cover": "Añadir portada",
+ "add-label": "Añadir una etiqueta",
+ "add-list": "Añadir una lista",
+ "add-members": "Añadir miembros",
+ "added": "Añadida el",
+ "addMemberPopup-title": "Miembros",
+ "admin": "Administrador",
+ "admin-desc": "Puedes ver y editar tarjetas, eliminar miembros, y cambiar las preferencias del tablero",
+ "admin-announcement": "Aviso",
+ "admin-announcement-active": "Activar el aviso para todo el sistema",
+ "admin-announcement-title": "Aviso del administrador",
+ "all-boards": "Tableros",
+ "and-n-other-card": "y __count__ tarjeta más",
+ "and-n-other-card_plural": "y otras __count__ tarjetas",
+ "apply": "Aplicar",
+ "app-is-offline": "Cargando, espera por favor. Refrescar esta página causará pérdida de datos. Si la carga no funciona, por favor comprueba que el servidor no se ha parado.",
+ "archive": "Archivar",
+ "archive-all": "Archivar todo",
+ "archive-board": "Archivar este tablero",
+ "archive-card": "Archivar esta tarjeta",
+ "archive-list": "Archivar esta lista",
+ "archive-swimlane": "Archivar este carril",
+ "archive-selection": "Archivar esta selección",
+ "archiveBoardPopup-title": "¿Archivar este tablero?",
+ "archived-items": "Archivo",
+ "archived-boards": "Tableros en Archivo",
+ "restore-board": "Restaurar el tablero",
+ "no-archived-boards": "No hay Tableros en el Archivo",
+ "archives": "Archivo",
+ "template": "Plantilla",
+ "templates": "Plantillas",
+ "assign-member": "Asignar miembros",
+ "attached": "adjuntado",
+ "attachment": "Adjunto",
+ "attachment-delete-pop": "La eliminación de un fichero adjunto es permanente. Esta acción no puede deshacerse.",
+ "attachmentDeletePopup-title": "¿Eliminar el adjunto?",
+ "attachments": "Adjuntos",
+ "auto-watch": "Suscribirse automáticamente a los tableros cuando son creados",
+ "avatar-too-big": "El avatar es muy grande (70KB máx.)",
+ "back": "Atrás",
+ "board-change-color": "Cambiar el color",
+ "board-nb-stars": "%s destacados",
+ "board-not-found": "Tablero no encontrado",
+ "board-private-info": "Este tablero será <strong>privado</strong>.",
+ "board-public-info": "Este tablero será <strong>público</strong>.",
+ "boardChangeColorPopup-title": "Cambiar el fondo del tablero",
+ "boardChangeTitlePopup-title": "Renombrar el tablero",
+ "boardChangeVisibilityPopup-title": "Cambiar visibilidad",
+ "boardChangeWatchPopup-title": "Cambiar vigilancia",
+ "boardMenuPopup-title": "Preferencias del tablero",
+ "boards": "Tableros",
+ "board-view": "Vista del tablero",
+ "board-view-cal": "Calendario",
+ "board-view-swimlanes": "Carriles",
+ "board-view-lists": "Listas",
+ "bucket-example": "Como “Cosas por hacer” por ejemplo",
+ "cancel": "Cancelar",
+ "card-archived": "Se archivó esta tarjeta",
+ "board-archived": "Se archivó este tablero",
+ "card-comments-title": "Esta tarjeta tiene %s comentarios.",
+ "card-delete-notice": "la eliminación es permanente. Perderás todas las acciones asociadas a esta tarjeta.",
+ "card-delete-pop": "Se eliminarán todas las acciones del historial de actividades y no se podrá volver a abrir la tarjeta. Esta acción no puede deshacerse.",
+ "card-delete-suggest-archive": "Puedes mover una tarjeta al Archivo para quitarla del tablero y preservar la actividad.",
+ "card-due": "Vence",
+ "card-due-on": "Vence el",
+ "card-spent": "Tiempo consumido",
+ "card-edit-attachments": "Editar los adjuntos",
+ "card-edit-custom-fields": "Editar los campos personalizados",
+ "card-edit-labels": "Editar las etiquetas",
+ "card-edit-members": "Editar los miembros",
+ "card-labels-title": "Cambia las etiquetas de la tarjeta",
+ "card-members-title": "Añadir o eliminar miembros del tablero desde la tarjeta.",
+ "card-start": "Comienza",
+ "card-start-on": "Comienza el",
+ "cardAttachmentsPopup-title": "Adjuntar desde",
+ "cardCustomField-datePopup-title": "Cambiar la fecha",
+ "cardCustomFieldsPopup-title": "Editar los campos personalizados",
+ "cardDeletePopup-title": "¿Eliminar la tarjeta?",
+ "cardDetailsActionsPopup-title": "Acciones de la tarjeta",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Miembros",
+ "cardMorePopup-title": "Más",
+ "cardTemplatePopup-title": "Crear plantilla",
+ "cards": "Tarjetas",
+ "cards-count": "Tarjetas",
+ "casSignIn": "Iniciar sesión con CAS",
+ "cardType-card": "Tarjeta",
+ "cardType-linkedCard": "Tarjeta enlazada",
+ "cardType-linkedBoard": "Tablero enlazado",
+ "change": "Cambiar",
+ "change-avatar": "Cambiar el avatar",
+ "change-password": "Cambiar la contraseña",
+ "change-permissions": "Cambiar los permisos",
+ "change-settings": "Cambiar las preferencias",
+ "changeAvatarPopup-title": "Cambiar el avatar",
+ "changeLanguagePopup-title": "Cambiar el idioma",
+ "changePasswordPopup-title": "Cambiar la contraseña",
+ "changePermissionsPopup-title": "Cambiar los permisos",
+ "changeSettingsPopup-title": "Cambiar las preferencias",
+ "subtasks": "Subtareas",
+ "checklists": "Lista de verificación",
+ "click-to-star": "Haz clic para destacar este tablero.",
+ "click-to-unstar": "Haz clic para dejar de destacar este tablero.",
+ "clipboard": "el portapapeles o con arrastrar y soltar",
+ "close": "Cerrar",
+ "close-board": "Cerrar el tablero",
+ "close-board-pop": "Podrás restaurar el tablero haciendo clic en el botón \"Archivo\" del encabezado de la pantalla inicial.",
+ "color-black": "negra",
+ "color-blue": "azul",
+ "color-crimson": "carmesí",
+ "color-darkgreen": "verde oscuro",
+ "color-gold": "oro",
+ "color-gray": "gris",
+ "color-green": "verde",
+ "color-indigo": "añil",
+ "color-lime": "lima",
+ "color-magenta": "magenta",
+ "color-mistyrose": "rosa claro",
+ "color-navy": "azul marino",
+ "color-orange": "naranja",
+ "color-paleturquoise": "turquesa",
+ "color-peachpuff": "melocotón",
+ "color-pink": "rosa",
+ "color-plum": "púrpura",
+ "color-purple": "violeta",
+ "color-red": "roja",
+ "color-saddlebrown": "marrón",
+ "color-silver": "plata",
+ "color-sky": "celeste",
+ "color-slateblue": "azul",
+ "color-white": "blanco",
+ "color-yellow": "amarilla",
+ "unset-color": "Desmarcar",
+ "comment": "Comentar",
+ "comment-placeholder": "Escribir comentario",
+ "comment-only": "Sólo comentarios",
+ "comment-only-desc": "Solo puedes comentar en las tarjetas.",
+ "no-comments": "No hay comentarios",
+ "no-comments-desc": "No se pueden mostrar comentarios ni actividades.",
+ "computer": "el ordenador",
+ "confirm-subtask-delete-dialog": "¿Seguro que quieres eliminar la subtarea?",
+ "confirm-checklist-delete-dialog": "¿Seguro que quieres eliminar la lista de verificación?",
+ "copy-card-link-to-clipboard": "Copiar el enlace de la tarjeta al portapapeles",
+ "linkCardPopup-title": "Enlazar tarjeta",
+ "searchElementPopup-title": "Buscar",
+ "copyCardPopup-title": "Copiar la tarjeta",
+ "copyChecklistToManyCardsPopup-title": "Copiar la plantilla de la lista de verificación en varias tarjetas",
+ "copyChecklistToManyCardsPopup-instructions": "Títulos y descripciones de las tarjetas de destino en formato JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título de la primera tarjeta\", \"description\":\"Descripción de la primera tarjeta\"}, {\"title\":\"Título de la segunda tarjeta\",\"description\":\"Descripción de la segunda tarjeta\"},{\"title\":\"Título de la última tarjeta\",\"description\":\"Descripción de la última tarjeta\"} ]",
+ "create": "Crear",
+ "createBoardPopup-title": "Crear tablero",
+ "chooseBoardSourcePopup-title": "Importar un tablero",
+ "createLabelPopup-title": "Crear etiqueta",
+ "createCustomField": "Crear un campo",
+ "createCustomFieldPopup-title": "Crear un campo",
+ "current": "actual",
+ "custom-field-delete-pop": "Se eliminará este campo personalizado de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
+ "custom-field-checkbox": "Casilla de verificación",
+ "custom-field-date": "Fecha",
+ "custom-field-dropdown": "Lista desplegable",
+ "custom-field-dropdown-none": "(nada)",
+ "custom-field-dropdown-options": "Opciones de la lista",
+ "custom-field-dropdown-options-placeholder": "Pulsa Intro para añadir más opciones",
+ "custom-field-dropdown-unknown": "(desconocido)",
+ "custom-field-number": "Número",
+ "custom-field-text": "Texto",
+ "custom-fields": "Campos personalizados",
+ "date": "Fecha",
+ "decline": "Declinar",
+ "default-avatar": "Avatar por defecto",
+ "delete": "Eliminar",
+ "deleteCustomFieldPopup-title": "¿Eliminar el campo personalizado?",
+ "deleteLabelPopup-title": "¿Eliminar la etiqueta?",
+ "description": "Descripción",
+ "disambiguateMultiLabelPopup-title": "Desambiguar la acción de etiqueta",
+ "disambiguateMultiMemberPopup-title": "Desambiguar la acción de miembro",
+ "discard": "Descartarla",
+ "done": "Hecho",
+ "download": "Descargar",
+ "edit": "Editar",
+ "edit-avatar": "Cambiar el avatar",
+ "edit-profile": "Editar el perfil",
+ "edit-wip-limit": "Cambiar el límite del trabajo en proceso",
+ "soft-wip-limit": "Límite del trabajo en proceso flexible",
+ "editCardStartDatePopup-title": "Cambiar la fecha de comienzo",
+ "editCardDueDatePopup-title": "Cambiar la fecha de vencimiento",
+ "editCustomFieldPopup-title": "Editar el campo",
+ "editCardSpentTimePopup-title": "Cambiar el tiempo consumido",
+ "editLabelPopup-title": "Cambiar la etiqueta",
+ "editNotificationPopup-title": "Editar las notificaciones",
+ "editProfilePopup-title": "Editar el perfil",
+ "email": "Correo electrónico",
+ "email-enrollAccount-subject": "Cuenta creada en __siteName__",
+ "email-enrollAccount-text": "Hola __user__,\n\nPara empezar a utilizar el servicio, simplemente haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
+ "email-fail": "Error al enviar el correo",
+ "email-fail-text": "Error al intentar enviar el correo",
+ "email-invalid": "Correo no válido",
+ "email-invite": "Invitar vía correo electrónico",
+ "email-invite-subject": "__inviter__ ha enviado una invitación",
+ "email-invite-text": "Estimado __user__,\n\n__inviter__ te invita a unirte al tablero '__board__' para colaborar.\n\nPor favor, haz clic en el siguiente enlace:\n\n__url__\n\nGracias.",
+ "email-resetPassword-subject": "Restablecer tu contraseña en __siteName__",
+ "email-resetPassword-text": "Hola __user__,\n\nPara restablecer tu contraseña, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
+ "email-sent": "Correo enviado",
+ "email-verifyEmail-subject": "Verifica tu dirección de correo en __siteName__",
+ "email-verifyEmail-text": "Hola __user__,\n\nPara verificar tu cuenta de correo electrónico, haz clic en el siguiente enlace.\n\n__url__\n\nGracias.",
+ "enable-wip-limit": "Activar el límite del trabajo en proceso",
+ "error-board-doesNotExist": "El tablero no existe",
+ "error-board-notAdmin": "Es necesario ser administrador de este tablero para hacer eso",
+ "error-board-notAMember": "Es necesario ser miembro de este tablero para hacer eso",
+ "error-json-malformed": "El texto no es un JSON válido",
+ "error-json-schema": "Sus datos JSON no incluyen la información apropiada en el formato correcto",
+ "error-list-doesNotExist": "La lista no existe",
+ "error-user-doesNotExist": "El usuario no existe",
+ "error-user-notAllowSelf": "No puedes invitarte a ti mismo",
+ "error-user-notCreated": "El usuario no ha sido creado",
+ "error-username-taken": "Este nombre de usuario ya está en uso",
+ "error-email-taken": "Esta dirección de correo ya está en uso",
+ "export-board": "Exportar el tablero",
+ "filter": "Filtrar",
+ "filter-cards": "Filtrar tarjetas",
+ "filter-clear": "Limpiar el filtro",
+ "filter-no-label": "Sin etiqueta",
+ "filter-no-member": "Sin miembro",
+ "filter-no-custom-fields": "Sin campos personalizados",
+ "filter-on": "Filtrado activado",
+ "filter-on-desc": "Estás filtrando tarjetas en este tablero. Haz clic aquí para editar el filtro.",
+ "filter-to-selection": "Filtrar la selección",
+ "advanced-filter-label": "Filtrado avanzado",
+ "advanced-filter-description": "El filtrado avanzado permite escribir una cadena que contiene los siguientes operadores: == != <= >= && || ( ) Se utiliza un espacio como separador entre los operadores. Se pueden filtrar todos los campos personalizados escribiendo sus nombres y valores. Por ejemplo: Campo1 == Valor1. Nota: Si los campos o valores contienen espacios, deben encapsularse entre comillas simples. Por ejemplo: 'Campo 1' == 'Valor 1'. Para omitir los caracteres de control único (' \\/), se usa \\. Por ejemplo: Campo1 = I\\'m. También se pueden combinar múltiples condiciones. Por ejemplo: C1 == V1 || C1 == V2. Normalmente todos los operadores se interpretan de izquierda a derecha. Se puede cambiar el orden colocando paréntesis. Por ejemplo: C1 == V1 && ( C2 == V2 || C2 == V3 ). También se puede buscar en campos de texto usando expresiones regulares: C1 == /Tes.*/i",
+ "fullname": "Nombre completo",
+ "header-logo-title": "Volver a tu página de tableros",
+ "hide-system-messages": "Ocultar las notificaciones de actividad",
+ "headerBarCreateBoardPopup-title": "Crear tablero",
+ "home": "Inicio",
+ "import": "Importar",
+ "link": "Enlace",
+ "import-board": "importar un tablero",
+ "import-board-c": "Importar un tablero",
+ "import-board-title-trello": "Importar un tablero desde Trello",
+ "import-board-title-wekan": "Importar tablero desde una exportación previa",
+ "import-sandstorm-backup-warning": "No elimine los datos que está importando del tablero o Trello original antes de verificar que la semilla pueda cerrarse y abrirse nuevamente, o que ocurra un error de \"Tablero no encontrado\", de lo contrario perderá sus datos.",
+ "import-sandstorm-warning": "El tablero importado eliminará todos los datos existentes en este tablero y los reemplazará con los datos del tablero importado.",
+ "from-trello": "Desde Trello",
+ "from-wekan": "Desde exportación previa",
+ "import-board-instruction-trello": "En tu tablero de Trello, ve a 'Menú', luego 'Más' > 'Imprimir y exportar' > 'Exportar JSON', y copia el texto resultante.",
+ "import-board-instruction-wekan": "En tu tablero, vete a 'Menú', luego 'Exportar tablero', y copia el texto en el archivo descargado.",
+ "import-board-instruction-about-errors": "Aunque obtengas errores cuando importes el tablero, a veces la importación funciona igualmente, y el tablero se encontrará en la página de tableros.",
+ "import-json-placeholder": "Pega tus datos JSON válidos aquí",
+ "import-map-members": "Mapa de miembros",
+ "import-members-map": "Tu tablero importado tiene algunos miembros. Por favor, mapea los miembros que quieres importar con tus usuarios.",
+ "import-show-user-mapping": "Revisión de la asignación de miembros",
+ "import-user-select": "Selecciona el miembro existe que quieres usar como este miembro.",
+ "importMapMembersAddPopup-title": "Seleccionar miembro",
+ "info": "Versión",
+ "initials": "Iniciales",
+ "invalid-date": "Fecha no válida",
+ "invalid-time": "Tiempo no válido",
+ "invalid-user": "Usuario no válido",
+ "joined": "se ha unido",
+ "just-invited": "Has sido invitado a este tablero",
+ "keyboard-shortcuts": "Atajos de teclado",
+ "label-create": "Crear una etiqueta",
+ "label-default": "etiqueta %s (por defecto)",
+ "label-delete-pop": "Se eliminará esta etiqueta de todas las tarjetas y se destruirá su historial. Esta acción no puede deshacerse.",
+ "labels": "Etiquetas",
+ "language": "Cambiar el idioma",
+ "last-admin-desc": "No puedes cambiar roles porque debe haber al menos un administrador.",
+ "leave-board": "Abandonar el tablero",
+ "leave-board-pop": "¿Seguro que quieres abandonar __boardTitle__? Serás desvinculado de todas las tarjetas en este tablero.",
+ "leaveBoardPopup-title": "¿Abandonar el tablero?",
+ "link-card": "Enlazar a esta tarjeta",
+ "list-archive-cards": "Archivar todas las tarjetas de esta lista",
+ "list-archive-cards-pop": "Esto eliminará del tablero todas las tarjetas en esta lista. Para ver las tarjetas en el Archivo y recuperarlas al tablero haga click en \"Menu\" > \"Archivo\"",
+ "list-move-cards": "Mover todas las tarjetas de esta lista",
+ "list-select-cards": "Seleccionar todas las tarjetas de esta lista",
+ "set-color-list": "Cambiar el color",
+ "listActionPopup-title": "Acciones de la lista",
+ "swimlaneActionPopup-title": "Acciones del carril de flujo",
+ "swimlaneAddPopup-title": "Añadir un carril de flujo debajo",
+ "listImportCardPopup-title": "Importar una tarjeta de Trello",
+ "listMorePopup-title": "Más",
+ "link-list": "Enlazar a esta lista",
+ "list-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar la lista. Esta acción no puede deshacerse.",
+ "list-delete-suggest-archive": "Puedes mover una lista al Archivo para quitarla del tablero y preservar la actividad.",
+ "lists": "Listas",
+ "swimlanes": "Carriles",
+ "log-out": "Finalizar la sesión",
+ "log-in": "Iniciar sesión",
+ "loginPopup-title": "Iniciar sesión",
+ "memberMenuPopup-title": "Preferencias de miembro",
+ "members": "Miembros",
+ "menu": "Menú",
+ "move-selection": "Mover la selección",
+ "moveCardPopup-title": "Mover la tarjeta",
+ "moveCardToBottom-title": "Mover al final",
+ "moveCardToTop-title": "Mover al principio",
+ "moveSelectionPopup-title": "Mover la selección",
+ "multi-selection": "Selección múltiple",
+ "multi-selection-on": "Selección múltiple activada",
+ "muted": "Silenciado",
+ "muted-info": "No serás notificado de ningún cambio en este tablero",
+ "my-boards": "Mis tableros",
+ "name": "Nombre",
+ "no-archived-cards": "No hay tarjetas archivadas.",
+ "no-archived-lists": "No hay listas archivadas.",
+ "no-archived-swimlanes": "No hay carriles archivados.",
+ "no-results": "Sin resultados",
+ "normal": "Normal",
+ "normal-desc": "Puedes ver y editar tarjetas. No puedes cambiar la configuración.",
+ "not-accepted-yet": "La invitación no ha sido aceptada aún",
+ "notify-participate": "Recibir actualizaciones de cualquier tarjeta en la que participas como creador o miembro",
+ "notify-watch": "Recibir actuaizaciones de cualquier tablero, lista o tarjeta que estés vigilando",
+ "optional": "opcional",
+ "or": "o",
+ "page-maybe-private": "Esta página puede ser privada. Es posible que puedas verla al <a href='%s'>iniciar sesión</a>.",
+ "page-not-found": "Página no encontrada.",
+ "password": "Contraseña",
+ "paste-or-dragdrop": "pegar o arrastrar y soltar un fichero de imagen (sólo imagen)",
+ "participating": "Participando",
+ "preview": "Previsualizar",
+ "previewAttachedImagePopup-title": "Previsualizar",
+ "previewClipboardImagePopup-title": "Previsualizar",
+ "private": "Privado",
+ "private-desc": "Este tablero es privado. Sólo las personas añadidas al tablero pueden verlo y editarlo.",
+ "profile": "Perfil",
+ "public": "Público",
+ "public-desc": "Este tablero es público. Es visible para cualquiera a través del enlace, y se mostrará en los buscadores como Google. Sólo las personas añadidas al tablero pueden editarlo.",
+ "quick-access-description": "Destaca un tablero para añadir un acceso directo en esta barra.",
+ "remove-cover": "Eliminar portada",
+ "remove-from-board": "Desvincular del tablero",
+ "remove-label": "Eliminar la etiqueta",
+ "listDeletePopup-title": "¿Eliminar la lista?",
+ "remove-member": "Eliminar miembro",
+ "remove-member-from-card": "Eliminar de la tarjeta",
+ "remove-member-pop": "¿Eliminar __name__ (__username__) de __boardTitle__? El miembro será eliminado de todas las tarjetas de este tablero. En ellas se mostrará una notificación.",
+ "removeMemberPopup-title": "¿Eliminar miembro?",
+ "rename": "Renombrar",
+ "rename-board": "Renombrar el tablero",
+ "restore": "Restaurar",
+ "save": "Añadir",
+ "search": "Buscar",
+ "rules": "Reglas",
+ "search-cards": "Buscar entre los títulos y las descripciones de las tarjetas en este tablero.",
+ "search-example": "¿Texto a buscar?",
+ "select-color": "Seleccionar el color",
+ "set-wip-limit-value": "Cambiar el límite para el número máximo de tareas en esta lista.",
+ "setWipLimitPopup-title": "Cambiar el límite del trabajo en proceso",
+ "shortcut-assign-self": "Asignarte a ti mismo a la tarjeta actual",
+ "shortcut-autocomplete-emoji": "Autocompletar emoji",
+ "shortcut-autocomplete-members": "Autocompletar miembros",
+ "shortcut-clear-filters": "Limpiar todos los filtros",
+ "shortcut-close-dialog": "Cerrar el cuadro de diálogo",
+ "shortcut-filter-my-cards": "Filtrar mis tarjetas",
+ "shortcut-show-shortcuts": "Mostrar esta lista de atajos",
+ "shortcut-toggle-filterbar": "Conmutar la barra lateral del filtro",
+ "shortcut-toggle-sidebar": "Conmutar la barra lateral del tablero",
+ "show-cards-minimum-count": "Mostrar recuento de tarjetas si la lista contiene más de",
+ "sidebar-open": "Abrir la barra lateral",
+ "sidebar-close": "Cerrar la barra lateral",
+ "signupPopup-title": "Crear una cuenta",
+ "star-board-title": "Haz clic para destacar este tablero. Se mostrará en la parte superior de tu lista de tableros.",
+ "starred-boards": "Tableros destacados",
+ "starred-boards-description": "Los tableros destacados se mostrarán en la parte superior de tu lista de tableros.",
+ "subscribe": "Suscribirse",
+ "team": "Equipo",
+ "this-board": "este tablero",
+ "this-card": "esta tarjeta",
+ "spent-time-hours": "Tiempo consumido (horas)",
+ "overtime-hours": "Tiempo excesivo (horas)",
+ "overtime": "Tiempo excesivo",
+ "has-overtime-cards": "Hay tarjetas con el tiempo excedido",
+ "has-spenttime-cards": "Se ha excedido el tiempo de las tarjetas",
+ "time": "Hora",
+ "title": "Título",
+ "tracking": "Siguiendo",
+ "tracking-info": "Serás notificado de cualquier cambio en las tarjetas en las que participas como creador o miembro.",
+ "type": "Tipo",
+ "unassign-member": "Desvincular al miembro",
+ "unsaved-description": "Tienes una descripción por añadir.",
+ "unwatch": "Dejar de vigilar",
+ "upload": "Cargar",
+ "upload-avatar": "Cargar un avatar",
+ "uploaded-avatar": "Avatar cargado",
+ "username": "Nombre de usuario",
+ "view-it": "Verla",
+ "warn-list-archived": "advertencia: esta tarjeta está en una lista en el Archivo",
+ "watch": "Vigilar",
+ "watching": "Vigilando",
+ "watching-info": "Serás notificado de cualquier cambio en este tablero",
+ "welcome-board": "Tablero de bienvenida",
+ "welcome-swimlane": "Hito 1",
+ "welcome-list1": "Básicos",
+ "welcome-list2": "Avanzados",
+ "card-templates-swimlane": "Plantilla de tarjeta",
+ "list-templates-swimlane": "Listar plantillas",
+ "board-templates-swimlane": "Plantilla de tablero",
+ "what-to-do": "¿Qué deseas hacer?",
+ "wipLimitErrorPopup-title": "El límite del trabajo en proceso no es válido.",
+ "wipLimitErrorPopup-dialog-pt1": "El número de tareas en esta lista es mayor que el límite del trabajo en proceso que has definido.",
+ "wipLimitErrorPopup-dialog-pt2": "Por favor, mueve algunas tareas fuera de esta lista, o fija un límite del trabajo en proceso más alto.",
+ "admin-panel": "Panel del administrador",
+ "settings": "Preferencias",
+ "people": "Personas",
+ "registration": "Registro",
+ "disable-self-registration": "Deshabilitar autoregistro",
+ "invite": "Invitar",
+ "invite-people": "Invitar a personas",
+ "to-boards": "A el(los) tablero(s)",
+ "email-addresses": "Direcciones de correo electrónico",
+ "smtp-host-description": "Dirección del servidor SMTP para gestionar tus correos",
+ "smtp-port-description": "Puerto usado por el servidor SMTP para mandar correos",
+ "smtp-tls-description": "Habilitar el soporte TLS para el servidor SMTP",
+ "smtp-host": "Servidor SMTP",
+ "smtp-port": "Puerto SMTP",
+ "smtp-username": "Nombre de usuario",
+ "smtp-password": "Contraseña",
+ "smtp-tls": "Soporte TLS",
+ "send-from": "Desde",
+ "send-smtp-test": "Enviarte un correo de prueba a ti mismo",
+ "invitation-code": "Código de Invitación",
+ "email-invite-register-subject": "__inviter__ te ha enviado una invitación",
+ "email-invite-register-text": "Querido __user__,\n__inviter__ le invita al tablero kanban para colaborar.\n\nPor favor, siga el siguiente enlace:\n__url__\n\nY tu código de invitación es: __icode__\n\nGracias.",
+ "email-smtp-test-subject": "Prueba de email SMTP",
+ "email-smtp-test-text": "El correo se ha enviado correctamente",
+ "error-invitation-code-not-exist": "El código de invitación no existe",
+ "error-notAuthorized": "No estás autorizado a ver esta página.",
+ "outgoing-webhooks": "Webhooks salientes",
+ "outgoingWebhooksPopup-title": "Webhooks salientes",
+ "boardCardTitlePopup-title": "Filtro de títulos de tarjeta",
+ "new-outgoing-webhook": "Nuevo webhook saliente",
+ "no-name": "(Desconocido)",
+ "Node_version": "Versión de Node",
+ "OS_Arch": "Arquitectura del sistema",
+ "OS_Cpus": "Número de CPUs del sistema",
+ "OS_Freemem": "Memoria libre del sistema",
+ "OS_Loadavg": "Carga media del sistema",
+ "OS_Platform": "Plataforma del sistema",
+ "OS_Release": "Publicación del sistema",
+ "OS_Totalmem": "Memoria total del sistema",
+ "OS_Type": "Tipo de sistema",
+ "OS_Uptime": "Tiempo activo del sistema",
+ "days": "días",
+ "hours": "horas",
+ "minutes": "minutos",
+ "seconds": "segundos",
+ "show-field-on-card": "Mostrar este campo en la tarjeta",
+ "automatically-field-on-card": "Crear campos automáticamente para todas las tarjetas.",
+ "showLabel-field-on-card": "Mostrar etiquetas de campos en la minitarjeta.",
+ "yes": "Sí",
+ "no": "No",
+ "accounts": "Cuentas",
+ "accounts-allowEmailChange": "Permitir cambiar el correo electrónico",
+ "accounts-allowUserNameChange": "Permitir cambiar el nombre de usuario",
+ "createdAt": "Fecha de alta",
+ "verified": "Verificado",
+ "active": "Activo",
+ "card-received": "Recibido",
+ "card-received-on": "Recibido el",
+ "card-end": "Finalizado",
+ "card-end-on": "Finalizado el",
+ "editCardReceivedDatePopup-title": "Cambiar la fecha de recepción",
+ "editCardEndDatePopup-title": "Cambiar la fecha de finalización",
+ "setCardColorPopup-title": "Cambiar el color",
+ "setCardActionsColorPopup-title": "Elegir un color",
+ "setSwimlaneColorPopup-title": "Elegir un color",
+ "setListColorPopup-title": "Elegir un color",
+ "assigned-by": "Asignado por",
+ "requested-by": "Solicitado por",
+ "board-delete-notice": "Se eliminarán todas las listas, tarjetas y acciones asociadas a este tablero. Esta acción no puede deshacerse.",
+ "delete-board-confirm-popup": "Se eliminarán todas las listas, tarjetas, etiquetas y actividades, y no podrás recuperar los contenidos del tablero. Esta acción no puede deshacerse.",
+ "boardDeletePopup-title": "¿Eliminar el tablero?",
+ "delete-board": "Eliminar el tablero",
+ "default-subtasks-board": "Subtareas para el tablero __board__",
+ "default": "Por defecto",
+ "queue": "Cola",
+ "subtask-settings": "Preferencias de las subtareas",
+ "boardSubtaskSettingsPopup-title": "Preferencias de las subtareas del tablero",
+ "show-subtasks-field": "Las tarjetas pueden tener subtareas",
+ "deposit-subtasks-board": "Depositar subtareas en este tablero:",
+ "deposit-subtasks-list": "Lista de destino para subtareas depositadas aquí:",
+ "show-parent-in-minicard": "Mostrar el padre en una minitarjeta:",
+ "prefix-with-full-path": "Prefijo con ruta completa",
+ "prefix-with-parent": "Prefijo con el padre",
+ "subtext-with-full-path": "Subtexto con ruta completa",
+ "subtext-with-parent": "Subtexto con el padre",
+ "change-card-parent": "Cambiar la tarjeta padre",
+ "parent-card": "Tarjeta padre",
+ "source-board": "Tablero de origen",
+ "no-parent": "No mostrar la tarjeta padre",
+ "activity-added-label": "añadida etiqueta %s a %s",
+ "activity-removed-label": "eliminada etiqueta '%s' desde %s",
+ "activity-delete-attach": "eliminado un adjunto desde %s",
+ "activity-added-label-card": "añadida etiqueta '%s'",
+ "activity-removed-label-card": "eliminada etiqueta '%s'",
+ "activity-delete-attach-card": "eliminado un adjunto",
+ "activity-set-customfield": "Cambiar el campo personalizado '%s' a '%s' en %s",
+ "activity-unset-customfield": "Desmarcar el campo personalizado '%s' en %s",
+ "r-rule": "Regla",
+ "r-add-trigger": "Añadir disparador",
+ "r-add-action": "Añadir acción",
+ "r-board-rules": "Reglas del tablero",
+ "r-add-rule": "Añadir regla",
+ "r-view-rule": "Ver regla",
+ "r-delete-rule": "Eliminar regla",
+ "r-new-rule-name": "Nueva título de regla",
+ "r-no-rules": "No hay reglas",
+ "r-when-a-card": "Cuando una tarjeta",
+ "r-is": "es",
+ "r-is-moved": "es movida",
+ "r-added-to": "agregada a",
+ "r-removed-from": "eliminado de",
+ "r-the-board": "el tablero",
+ "r-list": "la lista",
+ "set-filter": "Filtrar",
+ "r-moved-to": "Movido a",
+ "r-moved-from": "Movido desde",
+ "r-archived": "Se archivó",
+ "r-unarchived": "Restaurado del archivo",
+ "r-a-card": "una tarjeta",
+ "r-when-a-label-is": "Cuando una etiqueta es",
+ "r-when-the-label": "Cuando la etiqueta es",
+ "r-list-name": "Nombre de lista",
+ "r-when-a-member": "Cuando un miembro es",
+ "r-when-the-member": "Cuando el miembro",
+ "r-name": "nombre",
+ "r-when-a-attach": "Cuando un adjunto",
+ "r-when-a-checklist": "Cuando una lista de verificación es",
+ "r-when-the-checklist": "Cuando la lista de verificación",
+ "r-completed": "Completada",
+ "r-made-incomplete": "Hecha incompleta",
+ "r-when-a-item": "Cuando un elemento de la lista de verificación es",
+ "r-when-the-item": "Cuando el elemento de la lista de verificación es",
+ "r-checked": "Marcado",
+ "r-unchecked": "Desmarcado",
+ "r-move-card-to": "Mover la tarjeta",
+ "r-top-of": "Arriba de",
+ "r-bottom-of": "Abajo de",
+ "r-its-list": "su lista",
+ "r-archive": "Archivar",
+ "r-unarchive": "Restaurar del Archivo",
+ "r-card": "la tarjeta",
+ "r-add": "Añadir",
+ "r-remove": "Eliminar",
+ "r-label": "etiqueta",
+ "r-member": "miembro",
+ "r-remove-all": "Eliminar todos los miembros de la tarjeta",
+ "r-set-color": "Cambiar el color a",
+ "r-checklist": "lista de verificación",
+ "r-check-all": "Marcar todo",
+ "r-uncheck-all": "Desmarcar todo",
+ "r-items-check": "elementos de la lista de verificación",
+ "r-check": "Marcar",
+ "r-uncheck": "Desmarcar",
+ "r-item": "elemento",
+ "r-of-checklist": "de la lista de verificación",
+ "r-send-email": "Enviar un email",
+ "r-to": "a",
+ "r-subject": "asunto",
+ "r-rule-details": "Detalle de la regla",
+ "r-d-move-to-top-gen": "Mover la tarjeta al inicio de su lista",
+ "r-d-move-to-top-spec": "Mover la tarjeta al inicio de la lista",
+ "r-d-move-to-bottom-gen": "Mover la tarjeta al final de su lista",
+ "r-d-move-to-bottom-spec": "Mover la tarjeta al final de la lista",
+ "r-d-send-email": "Enviar email",
+ "r-d-send-email-to": "a",
+ "r-d-send-email-subject": "asunto",
+ "r-d-send-email-message": "mensaje",
+ "r-d-archive": "Archivar la tarjeta",
+ "r-d-unarchive": "Restaurar tarjeta del Archivo",
+ "r-d-add-label": "Añadir etiqueta",
+ "r-d-remove-label": "Eliminar etiqueta",
+ "r-create-card": "Crear una nueva tarjeta",
+ "r-in-list": "en la lista",
+ "r-in-swimlane": "en el carril",
+ "r-d-add-member": "Añadir miembro",
+ "r-d-remove-member": "Eliminar miembro",
+ "r-d-remove-all-member": "Eliminar todos los miembros",
+ "r-d-check-all": "Marcar todos los elementos de una lista",
+ "r-d-uncheck-all": "Desmarcar todos los elementos de una lista",
+ "r-d-check-one": "Marcar elemento",
+ "r-d-uncheck-one": "Desmarcar elemento",
+ "r-d-check-of-list": "de la lista de verificación",
+ "r-d-add-checklist": "Añadir una lista de verificación",
+ "r-d-remove-checklist": "Eliminar lista de verificación",
+ "r-by": "por",
+ "r-add-checklist": "Añadir una lista de verificación",
+ "r-with-items": "con items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Agregar el carril",
+ "r-swimlane-name": "nombre del carril",
+ "r-board-note": "Nota: deje un campo vacío para que coincida con todos los valores posibles",
+ "r-checklist-note": "Nota: los ítems de la lista tienen que escribirse como valores separados por coma.",
+ "r-when-a-card-is-moved": "Cuando una tarjeta es movida a otra lista",
+ "r-set": "Cambiar",
+ "r-update": "Actualizar",
+ "r-datefield": "campo de fecha",
+ "r-df-start-at": "comienza",
+ "r-df-due-at": "vencimiento",
+ "r-df-end-at": "finalizado",
+ "r-df-received-at": "recibido",
+ "r-to-current-datetime": "a la fecha/hora actual",
+ "r-remove-value-from": "Eliminar el valor de",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Método de autenticación",
+ "authentication-type": "Tipo de autenticación",
+ "custom-product-name": "Nombre de producto personalizado",
+ "layout": "Diseño",
+ "hide-logo": "Ocultar logo",
+ "add-custom-html-after-body-start": "Añade HTML personalizado después de <body>",
+ "add-custom-html-before-body-end": "Añade HTML personalizado después de </body>",
+ "error-undefined": "Algo no está bien",
+ "error-ldap-login": "Ocurrió un error al intentar acceder",
+ "display-authentication-method": "Mostrar el método de autenticación",
+ "default-authentication-method": "Método de autenticación por defecto",
+ "duplicate-board": "Duplicar tablero",
+ "people-number": "El número de personas es:",
+ "swimlaneDeletePopup-title": "¿Eliminar el carril de flujo?",
+ "swimlane-delete-pop": "Todas las acciones serán eliminadas del historial de actividades y no se podrá recuperar el carril de flujo. Esta acción no puede deshacerse.",
+ "restore-all": "Restaurar todas",
+ "delete-all": "Borrar todas",
+ "loading": "Cargando. Por favor, espere.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/eu.i18n.json b/i18n/eu.i18n.json
index 6656e848..8dff2971 100644
--- a/i18n/eu.i18n.json
+++ b/i18n/eu.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Onartu",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Ekintzak",
- "activities": "Jarduerak",
- "activity": "Jarduera",
- "activity-added": "%s %s(e)ra gehituta",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "%s %s(e)ra erantsita",
- "activity-created": "%s sortuta",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "%s %s(e)tik kanpo utzita",
- "activity-imported": "%s inportatuta %s(e)ra %s(e)tik",
- "activity-imported-board": "%s inportatuta %s(e)tik",
- "activity-joined": "%s(e)ra elkartuta",
- "activity-moved": "%s %s(e)tik %s(e)ra eramanda",
- "activity-on": "%s",
- "activity-removed": "%s %s(e)tik kenduta",
- "activity-sent": "%s %s(e)ri bidalita",
- "activity-unjoined": "%s utzita",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "egiaztaketa zerrenda %s(e)ra gehituta",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "egiaztaketa zerrendako elementuak '%s'(e)ra gehituta %s(e)n",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Gehitu",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Gehitu eranskina",
- "add-board": "Gehitu arbela",
- "add-card": "Gehitu txartela",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Gehitu egiaztaketa zerrenda",
- "add-checklist-item": "Gehitu elementu bat egiaztaketa zerrendara",
- "add-cover": "Gehitu azala",
- "add-label": "Gehitu etiketa",
- "add-list": "Gehitu zerrenda",
- "add-members": "Gehitu kideak",
- "added": "Gehituta",
- "addMemberPopup-title": "Kideak",
- "admin": "Kudeatzailea",
- "admin-desc": "Txartelak ikusi eta editatu ditzake, kideak kendu, eta arbelaren ezarpenak aldatu.",
- "admin-announcement": "Jakinarazpena",
- "admin-announcement-active": "Gaitu Sistema-eremuko Jakinarazpena",
- "admin-announcement-title": "Administrariaren jakinarazpena",
- "all-boards": "Arbel guztiak",
- "and-n-other-card": "Eta beste txartel __count__",
- "and-n-other-card_plural": "Eta beste __count__ txartel",
- "apply": "Aplikatu",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Artxibatu",
- "archived-boards": "Boards in Archive",
- "restore-board": "Berreskuratu arbela",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Artxibatu",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Esleitu kidea",
- "attached": "erantsita",
- "attachment": "Eranskina",
- "attachment-delete-pop": "Eranskina ezabatzea behin betikoa da. Ez dago desegiterik.",
- "attachmentDeletePopup-title": "Ezabatu eranskina?",
- "attachments": "Eranskinak",
- "auto-watch": "Automatikoki jarraitu arbelak hauek sortzean",
- "avatar-too-big": "Avatarra handiegia da (Gehienez 70Kb)",
- "back": "Atzera",
- "board-change-color": "Aldatu kolorea",
- "board-nb-stars": "%s izar",
- "board-not-found": "Ez da arbela aurkitu",
- "board-private-info": "Arbel hau <strong>pribatua</strong> izango da.",
- "board-public-info": "Arbel hau <strong>publikoa</strong> izango da.",
- "boardChangeColorPopup-title": "Aldatu arbelaren atzealdea",
- "boardChangeTitlePopup-title": "Aldatu izena arbelari",
- "boardChangeVisibilityPopup-title": "Aldatu ikusgaitasuna",
- "boardChangeWatchPopup-title": "Aldatu ikuskatzea",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Arbelak",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Zerrendak",
- "bucket-example": "Esaterako \"Pertz zerrenda\"",
- "cancel": "Utzi",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Txartel honek iruzkin %s dauka.",
- "card-delete-notice": "Ezabaketa behin betiko da. Txartel honi lotutako ekintza guztiak galduko dituzu.",
- "card-delete-pop": "Ekintza guztiak ekintza jariotik kenduko dira eta ezin izango duzu txartela berrireki. Ez dago desegiterik.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Epemuga",
- "card-due-on": "Epemuga",
- "card-spent": "Erabilitako denbora",
- "card-edit-attachments": "Editatu eranskinak",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Editatu etiketak",
- "card-edit-members": "Editatu kideak",
- "card-labels-title": "Aldatu txartelaren etiketak",
- "card-members-title": "Gehitu edo kendu arbeleko kideak txarteletik.",
- "card-start": "Hasiera",
- "card-start-on": "Hasiera",
- "cardAttachmentsPopup-title": "Erantsi hemendik",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Ezabatu txartela?",
- "cardDetailsActionsPopup-title": "Txartel-ekintzak",
- "cardLabelsPopup-title": "Etiketak",
- "cardMembersPopup-title": "Kideak",
- "cardMorePopup-title": "Gehiago",
- "cardTemplatePopup-title": "Create template",
- "cards": "Txartelak",
- "cards-count": "Txartelak",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Aldatu",
- "change-avatar": "Aldatu avatarra",
- "change-password": "Aldatu pasahitza",
- "change-permissions": "Aldatu baimenak",
- "change-settings": "Aldatu ezarpenak",
- "changeAvatarPopup-title": "Aldatu avatarra",
- "changeLanguagePopup-title": "Aldatu hizkuntza",
- "changePasswordPopup-title": "Aldatu pasahitza",
- "changePermissionsPopup-title": "Aldatu baimenak",
- "changeSettingsPopup-title": "Aldatu ezarpenak",
- "subtasks": "Subtasks",
- "checklists": "Egiaztaketa zerrenda",
- "click-to-star": "Egin klik arbel honi izarra jartzeko",
- "click-to-unstar": "Egin klik arbel honi izarra kentzeko",
- "clipboard": "Kopiatu eta itsatsi edo arrastatu eta jaregin",
- "close": "Itxi",
- "close-board": "Itxi arbela",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "beltza",
- "color-blue": "urdina",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "berdea",
- "color-indigo": "indigo",
- "color-lime": "lima",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "laranja",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "larrosa",
- "color-plum": "plum",
- "color-purple": "purpura",
- "color-red": "gorria",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "zerua",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "horia",
- "unset-color": "Unset",
- "comment": "Iruzkina",
- "comment-placeholder": "Idatzi iruzkin bat",
- "comment-only": "Iruzkinak besterik ez",
- "comment-only-desc": "Iruzkinak txarteletan soilik egin ditzake",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Ordenagailua",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Kopiatu txartela arbelera",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Bilatu",
- "copyCardPopup-title": "Kopiatu txartela",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Sortu",
- "createBoardPopup-title": "Sortu arbela",
- "chooseBoardSourcePopup-title": "Inportatu arbela",
- "createLabelPopup-title": "Sortu etiketa",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "unekoa",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Data",
- "decline": "Ukatu",
- "default-avatar": "Lehenetsitako avatarra",
- "delete": "Ezabatu",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Ezabatu etiketa?",
- "description": "Deskripzioa",
- "disambiguateMultiLabelPopup-title": "Argitu etiketaren ekintza",
- "disambiguateMultiMemberPopup-title": "Argitu kidearen ekintza",
- "discard": "Baztertu",
- "done": "Egina",
- "download": "Deskargatu",
- "edit": "Editatu",
- "edit-avatar": "Aldatu avatarra",
- "edit-profile": "Editatu profila",
- "edit-wip-limit": "WIP muga editatu",
- "soft-wip-limit": "WIP muga malgua",
- "editCardStartDatePopup-title": "Aldatu hasiera data",
- "editCardDueDatePopup-title": "Aldatu epemuga data",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Aldatu erabilitako denbora",
- "editLabelPopup-title": "Aldatu etiketa",
- "editNotificationPopup-title": "Editatu jakinarazpena",
- "editProfilePopup-title": "Editatu profila",
- "email": "e-posta",
- "email-enrollAccount-subject": "Kontu bat sortu zaizu __siteName__ gunean",
- "email-enrollAccount-text": "Kaixo __user__,\n\nZerbitzua erabiltzen hasteko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
- "email-fail": "E-posta bidalketak huts egin du",
- "email-fail-text": "Arazoa mezua bidaltzen saiatzen",
- "email-invalid": "Baliogabeko e-posta",
- "email-invite": "Gonbidatu e-posta bidez",
- "email-invite-subject": "__inviter__ erabiltzaileak gonbidapen bat bidali dizu",
- "email-invite-text": "Kaixo __user__,\n\n__inviter__ erabiltzaileak \"__board__\" arbelera elkartzera gonbidatzen zaitu elkar-lanean aritzeko.\n\nJarraitu mesedez lotura hau:\n\n__url__\n\nEskerrik asko.",
- "email-resetPassword-subject": "Leheneratu zure __siteName__ guneko pasahitza",
- "email-resetPassword-text": "Kaixo __user__,\n\nZure pasahitza berrezartzeko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
- "email-sent": "E-posta bidali da",
- "email-verifyEmail-subject": "Egiaztatu __siteName__ guneko zure e-posta helbidea.",
- "email-verifyEmail-text": "Kaixo __user__,\n\nZure e-posta kontua egiaztatzeko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
- "enable-wip-limit": "WIP muga gaitu",
- "error-board-doesNotExist": "Arbel hau ez da existitzen",
- "error-board-notAdmin": "Arbel honetako kudeatzailea izan behar zara hori egin ahal izateko",
- "error-board-notAMember": "Arbel honetako kidea izan behar zara hori egin ahal izateko",
- "error-json-malformed": "Zure testua ez da baliozko JSON",
- "error-json-schema": "Zure JSON datuek ez dute formatu zuzenaren informazio egokia",
- "error-list-doesNotExist": "Zerrenda hau ez da existitzen",
- "error-user-doesNotExist": "Erabiltzaile hau ez da existitzen",
- "error-user-notAllowSelf": "Ezin duzu zure burua gonbidatu",
- "error-user-notCreated": "Erabiltzaile hau sortu gabe dago",
- "error-username-taken": "Erabiltzaile-izen hori hartuta dago",
- "error-email-taken": "E-mail hori hartuta dago",
- "export-board": "Esportatu arbela",
- "filter": "Iragazi",
- "filter-cards": "Iragazi txartelak",
- "filter-clear": "Garbitu iragazkia",
- "filter-no-label": "Etiketarik ez",
- "filter-no-member": "Kiderik ez",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Iragazkia gaituta dago",
- "filter-on-desc": "Arbel honetako txartela iragazten ari zara. Egin klik hemen iragazkia editatzeko.",
- "filter-to-selection": "Iragazketa aukerara",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Izen abizenak",
- "header-logo-title": "Itzuli zure arbelen orrira.",
- "hide-system-messages": "Ezkutatu sistemako mezuak",
- "headerBarCreateBoardPopup-title": "Sortu arbela",
- "home": "Hasiera",
- "import": "Inportatu",
- "link": "Link",
- "import-board": "inportatu arbela",
- "import-board-c": "Inportatu arbela",
- "import-board-title-trello": "Inportatu arbela Trellotik",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Inportatutako arbelak oraingo arbeleko informazio guztia ezabatuko du eta inportatutako arbeleko informazioarekin ordeztu.",
- "from-trello": "Trellotik",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "Zure Trello arbelean, aukeratu 'Menu\", 'More', 'Print and Export', 'Export JSON', eta kopiatu jasotako testua hemen.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Isatsi baliozko JSON datuak hemen",
- "import-map-members": "Kideen mapa",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Berrikusi kideen mapa",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Bertsioa",
- "initials": "Inizialak",
- "invalid-date": "Baliogabeko data",
- "invalid-time": "Baliogabeko denbora",
- "invalid-user": "Baliogabeko erabiltzailea",
- "joined": "elkartu da",
- "just-invited": "Arbel honetara gonbidatu berri zaituzte",
- "keyboard-shortcuts": "Teklatu laster-bideak",
- "label-create": "Sortu etiketa",
- "label-default": "%s etiketa (lehenetsia)",
- "label-delete-pop": "Ez dago desegiterik. Honek etiketa hau kenduko du txartel guztietatik eta bere historiala suntsitu.",
- "labels": "Etiketak",
- "language": "Hizkuntza",
- "last-admin-desc": "Ezin duzu rola aldatu gutxienez kudeatzaile bat behar delako.",
- "leave-board": "Utzi arbela",
- "leave-board-pop": "Ziur zaude __boardTitle__ utzi nahi duzula? Arbel honetako txartel guztietatik ezabatua izango zara.",
- "leaveBoardPopup-title": "Arbela utzi?",
- "link-card": "Lotura txartel honetara",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Lekuz aldatu zerrendako txartel guztiak",
- "list-select-cards": "Aukeratu zerrenda honetako txartel guztiak",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Zerrendaren ekintzak",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Inportatu Trello txartel bat",
- "listMorePopup-title": "Gehiago",
- "link-list": "Lotura zerrenda honetara",
- "list-delete-pop": "Ekintza guztiak ekintza jariotik kenduko dira eta ezin izango duzu zerrenda berreskuratu. Ez dago desegiterik.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Zerrendak",
- "swimlanes": "Swimlanes",
- "log-out": "Itxi saioa",
- "log-in": "Hasi saioa",
- "loginPopup-title": "Hasi saioa",
- "memberMenuPopup-title": "Kidearen ezarpenak",
- "members": "Kideak",
- "menu": "Menua",
- "move-selection": "Lekuz aldatu hautaketa",
- "moveCardPopup-title": "Lekuz aldatu txartela",
- "moveCardToBottom-title": "Eraman behera",
- "moveCardToTop-title": "Eraman gora",
- "moveSelectionPopup-title": "Lekuz aldatu hautaketa",
- "multi-selection": "Hautaketa anitza",
- "multi-selection-on": "Hautaketa anitza gaituta dago",
- "muted": "Mututua",
- "muted-info": "Ez zaizkizu jakinaraziko arbel honi egindako aldaketak",
- "my-boards": "Nire arbelak",
- "name": "Izena",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Emaitzarik ez",
- "normal": "Arrunta",
- "normal-desc": "Txartelak ikusi eta editatu ditzake. Ezin ditu ezarpenak aldatu.",
- "not-accepted-yet": "Gonbidapena ez da oraindik onartu",
- "notify-participate": "Jaso sortzaile edo kide zaren txartelen jakinarazpenak",
- "notify-watch": "Jaso ikuskatzen dituzun arbel, zerrenda edo txartelen jakinarazpenak",
- "optional": "aukerazkoa",
- "or": "edo",
- "page-maybe-private": "Orri hau pribatua izan daiteke. Agian <a href='%s'>saioa hasi</a> eta gero ikusi ahal izango duzu.",
- "page-not-found": "Ez da orria aurkitu.",
- "password": "Pasahitza",
- "paste-or-dragdrop": "itsasteko, edo irudi fitxategia arrastatu eta jaregiteko (irudia besterik ez)",
- "participating": "Parte-hartzen",
- "preview": "Aurreikusi",
- "previewAttachedImagePopup-title": "Aurreikusi",
- "previewClipboardImagePopup-title": "Aurreikusi",
- "private": "Pribatua",
- "private-desc": "Arbel hau pribatua da. Arbelera gehitutako jendeak besterik ezin du ikusi eta editatu.",
- "profile": "Profila",
- "public": "Publikoa",
- "public-desc": "Arbel hau publikoa da lotura duen edonorentzat ikusgai dago eta Google bezalako bilatzaileetan agertuko da. Arbelera gehitutako kideek besterik ezin dute editatu.",
- "quick-access-description": "Jarri izarra arbel bati barra honetan lasterbide bat sortzeko",
- "remove-cover": "Kendu azala",
- "remove-from-board": "Kendu arbeletik",
- "remove-label": "Kendu etiketa",
- "listDeletePopup-title": "Ezabatu zerrenda?",
- "remove-member": "Kendu kidea",
- "remove-member-from-card": "Kendu txarteletik",
- "remove-member-pop": "Kendu __name__ (__username__) __boardTitle__ arbeletik? Kidea arbel honetako txartel guztietatik kenduko da. Jakinarazpenak bidaliko dira.",
- "removeMemberPopup-title": "Kendu kidea?",
- "rename": "Aldatu izena",
- "rename-board": "Aldatu izena arbelari",
- "restore": "Berrezarri",
- "save": "Gorde",
- "search": "Bilatu",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Aukeratu kolorea",
- "set-wip-limit-value": "Zerrenda honetako atazen muga maximoa ezarri",
- "setWipLimitPopup-title": "WIP muga ezarri",
- "shortcut-assign-self": "Esleitu zure burua txartel honetara",
- "shortcut-autocomplete-emoji": "Automatikoki osatu emojia",
- "shortcut-autocomplete-members": "Automatikoki osatu kideak",
- "shortcut-clear-filters": "Garbitu iragazki guztiak",
- "shortcut-close-dialog": "Itxi elkarrizketa-koadroa",
- "shortcut-filter-my-cards": "Iragazi nire txartelak",
- "shortcut-show-shortcuts": "Erakutsi lasterbideen zerrenda hau",
- "shortcut-toggle-filterbar": "Txandakatu iragazkiaren albo-barra",
- "shortcut-toggle-sidebar": "Txandakatu arbelaren albo-barra",
- "show-cards-minimum-count": "Erakutsi txartel kopurua hau baino handiagoa denean:",
- "sidebar-open": "Ireki albo-barra",
- "sidebar-close": "Itxi albo-barra",
- "signupPopup-title": "Sortu kontu bat",
- "star-board-title": "Egin klik arbel honi izarra jartzeko, zure arbelen zerrendaren goialdean agertuko da",
- "starred-boards": "Izardun arbelak",
- "starred-boards-description": "Izardun arbelak zure arbelen zerrendaren goialdean agertuko dira",
- "subscribe": "Harpidetu",
- "team": "Taldea",
- "this-board": "arbel hau",
- "this-card": "txartel hau",
- "spent-time-hours": "Erabilitako denbora (orduak)",
- "overtime-hours": "Luzapena (orduak)",
- "overtime": "Luzapena",
- "has-overtime-cards": "Luzapen txartelak ditu",
- "has-spenttime-cards": "Erabilitako denbora txartelak ditu",
- "time": "Ordua",
- "title": "Izenburua",
- "tracking": "Jarraitzen",
- "tracking-info": "Sortzaile edo kide gisa parte-hartzen duzun txartelei egindako aldaketak jakinaraziko zaizkizu.",
- "type": "Type",
- "unassign-member": "Kendu kidea",
- "unsaved-description": "Gorde gabeko deskripzio bat duzu",
- "unwatch": "Utzi ikuskatzeari",
- "upload": "Igo",
- "upload-avatar": "Igo avatar bat",
- "uploaded-avatar": "Avatar bat igo da",
- "username": "Erabiltzaile-izena",
- "view-it": "Ikusi",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Ikuskatu",
- "watching": "Ikuskatzen",
- "watching-info": "Arbel honi egindako aldaketak jakinaraziko zaizkizu",
- "welcome-board": "Ongi etorri arbela",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Oinarrizkoa",
- "welcome-list2": "Aurreratua",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Zer egin nahi duzu?",
- "wipLimitErrorPopup-title": "Baliogabeko WIP muga",
- "wipLimitErrorPopup-dialog-pt1": "Zerrenda honetako atazen muga, WIP-en ezarritakoa baina handiagoa da",
- "wipLimitErrorPopup-dialog-pt2": "Mugitu zenbait ataza zerrenda honetatik, edo WIP muga handiagoa ezarri.",
- "admin-panel": "Kudeaketa panela",
- "settings": "Ezarpenak",
- "people": "Jendea",
- "registration": "Izen-ematea",
- "disable-self-registration": "Desgaitu nork bere burua erregistratzea",
- "invite": "Gonbidatu",
- "invite-people": "Gonbidatu jendea",
- "to-boards": "Arbele(ta)ra",
- "email-addresses": "E-posta helbideak",
- "smtp-host-description": "Zure e-posta mezuez arduratzen den SMTP zerbitzariaren helbidea",
- "smtp-port-description": "Zure SMTP zerbitzariak bidalitako e-posta mezuentzat erabiltzen duen kaia.",
- "smtp-tls-description": "Gaitu TLS euskarria SMTP zerbitzariarentzat",
- "smtp-host": "SMTP ostalaria",
- "smtp-port": "SMTP kaia",
- "smtp-username": "Erabiltzaile-izena",
- "smtp-password": "Pasahitza",
- "smtp-tls": "TLS euskarria",
- "send-from": "Nork",
- "send-smtp-test": "Bidali posta elektroniko mezu bat zure buruari",
- "invitation-code": "Gonbidapen kodea",
- "email-invite-register-subject": "__inviter__ erabiltzaileak gonbidapen bat bidali dizu",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Arrakastaz bidali duzu posta elektroniko mezua",
- "error-invitation-code-not-exist": "Gonbidapen kodea ez da existitzen",
- "error-notAuthorized": "Ez duzu orri hau ikusteko baimenik.",
- "outgoing-webhooks": "Irteerako Webhook-ak",
- "outgoingWebhooksPopup-title": "Irteerako Webhook-ak",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "Irteera-webhook berria",
- "no-name": "(Ezezaguna)",
- "Node_version": "Nodo bertsioa",
- "OS_Arch": "SE Arkitektura",
- "OS_Cpus": "SE PUZ kopurua",
- "OS_Freemem": "SE Memoria librea",
- "OS_Loadavg": "SE batez besteko karga",
- "OS_Platform": "SE plataforma",
- "OS_Release": "SE kaleratzea",
- "OS_Totalmem": "SE memoria guztira",
- "OS_Type": "SE mota",
- "OS_Uptime": "SE denbora abiatuta",
- "days": "days",
- "hours": "ordu",
- "minutes": "minutu",
- "seconds": "segundo",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Bai",
- "no": "Ez",
- "accounts": "Kontuak",
- "accounts-allowEmailChange": "Baimendu e-mail aldaketa",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Noiz sortua",
- "verified": "Egiaztatuta",
- "active": "Gaituta",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Gehitu",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Onartu",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Ekintzak",
+ "activities": "Jarduerak",
+ "activity": "Jarduera",
+ "activity-added": "%s %s(e)ra gehituta",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "%s %s(e)ra erantsita",
+ "activity-created": "%s sortuta",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "%s %s(e)tik kanpo utzita",
+ "activity-imported": "%s inportatuta %s(e)ra %s(e)tik",
+ "activity-imported-board": "%s inportatuta %s(e)tik",
+ "activity-joined": "%s(e)ra elkartuta",
+ "activity-moved": "%s %s(e)tik %s(e)ra eramanda",
+ "activity-on": "%s",
+ "activity-removed": "%s %s(e)tik kenduta",
+ "activity-sent": "%s %s(e)ri bidalita",
+ "activity-unjoined": "%s utzita",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "egiaztaketa zerrenda %s(e)ra gehituta",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "egiaztaketa zerrendako elementuak '%s'(e)ra gehituta %s(e)n",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Gehitu",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Gehitu eranskina",
+ "add-board": "Gehitu arbela",
+ "add-card": "Gehitu txartela",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Gehitu egiaztaketa zerrenda",
+ "add-checklist-item": "Gehitu elementu bat egiaztaketa zerrendara",
+ "add-cover": "Gehitu azala",
+ "add-label": "Gehitu etiketa",
+ "add-list": "Gehitu zerrenda",
+ "add-members": "Gehitu kideak",
+ "added": "Gehituta",
+ "addMemberPopup-title": "Kideak",
+ "admin": "Kudeatzailea",
+ "admin-desc": "Txartelak ikusi eta editatu ditzake, kideak kendu, eta arbelaren ezarpenak aldatu.",
+ "admin-announcement": "Jakinarazpena",
+ "admin-announcement-active": "Gaitu Sistema-eremuko Jakinarazpena",
+ "admin-announcement-title": "Administrariaren jakinarazpena",
+ "all-boards": "Arbel guztiak",
+ "and-n-other-card": "Eta beste txartel __count__",
+ "and-n-other-card_plural": "Eta beste __count__ txartel",
+ "apply": "Aplikatu",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Artxibatu",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Berreskuratu arbela",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Artxibatu",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Esleitu kidea",
+ "attached": "erantsita",
+ "attachment": "Eranskina",
+ "attachment-delete-pop": "Eranskina ezabatzea behin betikoa da. Ez dago desegiterik.",
+ "attachmentDeletePopup-title": "Ezabatu eranskina?",
+ "attachments": "Eranskinak",
+ "auto-watch": "Automatikoki jarraitu arbelak hauek sortzean",
+ "avatar-too-big": "Avatarra handiegia da (Gehienez 70Kb)",
+ "back": "Atzera",
+ "board-change-color": "Aldatu kolorea",
+ "board-nb-stars": "%s izar",
+ "board-not-found": "Ez da arbela aurkitu",
+ "board-private-info": "Arbel hau <strong>pribatua</strong> izango da.",
+ "board-public-info": "Arbel hau <strong>publikoa</strong> izango da.",
+ "boardChangeColorPopup-title": "Aldatu arbelaren atzealdea",
+ "boardChangeTitlePopup-title": "Aldatu izena arbelari",
+ "boardChangeVisibilityPopup-title": "Aldatu ikusgaitasuna",
+ "boardChangeWatchPopup-title": "Aldatu ikuskatzea",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Arbelak",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Zerrendak",
+ "bucket-example": "Esaterako \"Pertz zerrenda\"",
+ "cancel": "Utzi",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Txartel honek iruzkin %s dauka.",
+ "card-delete-notice": "Ezabaketa behin betiko da. Txartel honi lotutako ekintza guztiak galduko dituzu.",
+ "card-delete-pop": "Ekintza guztiak ekintza jariotik kenduko dira eta ezin izango duzu txartela berrireki. Ez dago desegiterik.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Epemuga",
+ "card-due-on": "Epemuga",
+ "card-spent": "Erabilitako denbora",
+ "card-edit-attachments": "Editatu eranskinak",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Editatu etiketak",
+ "card-edit-members": "Editatu kideak",
+ "card-labels-title": "Aldatu txartelaren etiketak",
+ "card-members-title": "Gehitu edo kendu arbeleko kideak txarteletik.",
+ "card-start": "Hasiera",
+ "card-start-on": "Hasiera",
+ "cardAttachmentsPopup-title": "Erantsi hemendik",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Ezabatu txartela?",
+ "cardDetailsActionsPopup-title": "Txartel-ekintzak",
+ "cardLabelsPopup-title": "Etiketak",
+ "cardMembersPopup-title": "Kideak",
+ "cardMorePopup-title": "Gehiago",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Txartelak",
+ "cards-count": "Txartelak",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Aldatu",
+ "change-avatar": "Aldatu avatarra",
+ "change-password": "Aldatu pasahitza",
+ "change-permissions": "Aldatu baimenak",
+ "change-settings": "Aldatu ezarpenak",
+ "changeAvatarPopup-title": "Aldatu avatarra",
+ "changeLanguagePopup-title": "Aldatu hizkuntza",
+ "changePasswordPopup-title": "Aldatu pasahitza",
+ "changePermissionsPopup-title": "Aldatu baimenak",
+ "changeSettingsPopup-title": "Aldatu ezarpenak",
+ "subtasks": "Subtasks",
+ "checklists": "Egiaztaketa zerrenda",
+ "click-to-star": "Egin klik arbel honi izarra jartzeko",
+ "click-to-unstar": "Egin klik arbel honi izarra kentzeko",
+ "clipboard": "Kopiatu eta itsatsi edo arrastatu eta jaregin",
+ "close": "Itxi",
+ "close-board": "Itxi arbela",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "beltza",
+ "color-blue": "urdina",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "berdea",
+ "color-indigo": "indigo",
+ "color-lime": "lima",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "laranja",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "larrosa",
+ "color-plum": "plum",
+ "color-purple": "purpura",
+ "color-red": "gorria",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "zerua",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "horia",
+ "unset-color": "Unset",
+ "comment": "Iruzkina",
+ "comment-placeholder": "Idatzi iruzkin bat",
+ "comment-only": "Iruzkinak besterik ez",
+ "comment-only-desc": "Iruzkinak txarteletan soilik egin ditzake",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Ordenagailua",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Kopiatu txartela arbelera",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Bilatu",
+ "copyCardPopup-title": "Kopiatu txartela",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Sortu",
+ "createBoardPopup-title": "Sortu arbela",
+ "chooseBoardSourcePopup-title": "Inportatu arbela",
+ "createLabelPopup-title": "Sortu etiketa",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "unekoa",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Data",
+ "decline": "Ukatu",
+ "default-avatar": "Lehenetsitako avatarra",
+ "delete": "Ezabatu",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Ezabatu etiketa?",
+ "description": "Deskripzioa",
+ "disambiguateMultiLabelPopup-title": "Argitu etiketaren ekintza",
+ "disambiguateMultiMemberPopup-title": "Argitu kidearen ekintza",
+ "discard": "Baztertu",
+ "done": "Egina",
+ "download": "Deskargatu",
+ "edit": "Editatu",
+ "edit-avatar": "Aldatu avatarra",
+ "edit-profile": "Editatu profila",
+ "edit-wip-limit": "WIP muga editatu",
+ "soft-wip-limit": "WIP muga malgua",
+ "editCardStartDatePopup-title": "Aldatu hasiera data",
+ "editCardDueDatePopup-title": "Aldatu epemuga data",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Aldatu erabilitako denbora",
+ "editLabelPopup-title": "Aldatu etiketa",
+ "editNotificationPopup-title": "Editatu jakinarazpena",
+ "editProfilePopup-title": "Editatu profila",
+ "email": "e-posta",
+ "email-enrollAccount-subject": "Kontu bat sortu zaizu __siteName__ gunean",
+ "email-enrollAccount-text": "Kaixo __user__,\n\nZerbitzua erabiltzen hasteko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
+ "email-fail": "E-posta bidalketak huts egin du",
+ "email-fail-text": "Arazoa mezua bidaltzen saiatzen",
+ "email-invalid": "Baliogabeko e-posta",
+ "email-invite": "Gonbidatu e-posta bidez",
+ "email-invite-subject": "__inviter__ erabiltzaileak gonbidapen bat bidali dizu",
+ "email-invite-text": "Kaixo __user__,\n\n__inviter__ erabiltzaileak \"__board__\" arbelera elkartzera gonbidatzen zaitu elkar-lanean aritzeko.\n\nJarraitu mesedez lotura hau:\n\n__url__\n\nEskerrik asko.",
+ "email-resetPassword-subject": "Leheneratu zure __siteName__ guneko pasahitza",
+ "email-resetPassword-text": "Kaixo __user__,\n\nZure pasahitza berrezartzeko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
+ "email-sent": "E-posta bidali da",
+ "email-verifyEmail-subject": "Egiaztatu __siteName__ guneko zure e-posta helbidea.",
+ "email-verifyEmail-text": "Kaixo __user__,\n\nZure e-posta kontua egiaztatzeko, egin klik beheko loturan.\n\n__url__\n\nEskerrik asko.",
+ "enable-wip-limit": "WIP muga gaitu",
+ "error-board-doesNotExist": "Arbel hau ez da existitzen",
+ "error-board-notAdmin": "Arbel honetako kudeatzailea izan behar zara hori egin ahal izateko",
+ "error-board-notAMember": "Arbel honetako kidea izan behar zara hori egin ahal izateko",
+ "error-json-malformed": "Zure testua ez da baliozko JSON",
+ "error-json-schema": "Zure JSON datuek ez dute formatu zuzenaren informazio egokia",
+ "error-list-doesNotExist": "Zerrenda hau ez da existitzen",
+ "error-user-doesNotExist": "Erabiltzaile hau ez da existitzen",
+ "error-user-notAllowSelf": "Ezin duzu zure burua gonbidatu",
+ "error-user-notCreated": "Erabiltzaile hau sortu gabe dago",
+ "error-username-taken": "Erabiltzaile-izen hori hartuta dago",
+ "error-email-taken": "E-mail hori hartuta dago",
+ "export-board": "Esportatu arbela",
+ "filter": "Iragazi",
+ "filter-cards": "Iragazi txartelak",
+ "filter-clear": "Garbitu iragazkia",
+ "filter-no-label": "Etiketarik ez",
+ "filter-no-member": "Kiderik ez",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Iragazkia gaituta dago",
+ "filter-on-desc": "Arbel honetako txartela iragazten ari zara. Egin klik hemen iragazkia editatzeko.",
+ "filter-to-selection": "Iragazketa aukerara",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Izen abizenak",
+ "header-logo-title": "Itzuli zure arbelen orrira.",
+ "hide-system-messages": "Ezkutatu sistemako mezuak",
+ "headerBarCreateBoardPopup-title": "Sortu arbela",
+ "home": "Hasiera",
+ "import": "Inportatu",
+ "link": "Link",
+ "import-board": "inportatu arbela",
+ "import-board-c": "Inportatu arbela",
+ "import-board-title-trello": "Inportatu arbela Trellotik",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Inportatutako arbelak oraingo arbeleko informazio guztia ezabatuko du eta inportatutako arbeleko informazioarekin ordeztu.",
+ "from-trello": "Trellotik",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "Zure Trello arbelean, aukeratu 'Menu\", 'More', 'Print and Export', 'Export JSON', eta kopiatu jasotako testua hemen.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Isatsi baliozko JSON datuak hemen",
+ "import-map-members": "Kideen mapa",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Berrikusi kideen mapa",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Bertsioa",
+ "initials": "Inizialak",
+ "invalid-date": "Baliogabeko data",
+ "invalid-time": "Baliogabeko denbora",
+ "invalid-user": "Baliogabeko erabiltzailea",
+ "joined": "elkartu da",
+ "just-invited": "Arbel honetara gonbidatu berri zaituzte",
+ "keyboard-shortcuts": "Teklatu laster-bideak",
+ "label-create": "Sortu etiketa",
+ "label-default": "%s etiketa (lehenetsia)",
+ "label-delete-pop": "Ez dago desegiterik. Honek etiketa hau kenduko du txartel guztietatik eta bere historiala suntsitu.",
+ "labels": "Etiketak",
+ "language": "Hizkuntza",
+ "last-admin-desc": "Ezin duzu rola aldatu gutxienez kudeatzaile bat behar delako.",
+ "leave-board": "Utzi arbela",
+ "leave-board-pop": "Ziur zaude __boardTitle__ utzi nahi duzula? Arbel honetako txartel guztietatik ezabatua izango zara.",
+ "leaveBoardPopup-title": "Arbela utzi?",
+ "link-card": "Lotura txartel honetara",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Lekuz aldatu zerrendako txartel guztiak",
+ "list-select-cards": "Aukeratu zerrenda honetako txartel guztiak",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Zerrendaren ekintzak",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Inportatu Trello txartel bat",
+ "listMorePopup-title": "Gehiago",
+ "link-list": "Lotura zerrenda honetara",
+ "list-delete-pop": "Ekintza guztiak ekintza jariotik kenduko dira eta ezin izango duzu zerrenda berreskuratu. Ez dago desegiterik.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Zerrendak",
+ "swimlanes": "Swimlanes",
+ "log-out": "Itxi saioa",
+ "log-in": "Hasi saioa",
+ "loginPopup-title": "Hasi saioa",
+ "memberMenuPopup-title": "Kidearen ezarpenak",
+ "members": "Kideak",
+ "menu": "Menua",
+ "move-selection": "Lekuz aldatu hautaketa",
+ "moveCardPopup-title": "Lekuz aldatu txartela",
+ "moveCardToBottom-title": "Eraman behera",
+ "moveCardToTop-title": "Eraman gora",
+ "moveSelectionPopup-title": "Lekuz aldatu hautaketa",
+ "multi-selection": "Hautaketa anitza",
+ "multi-selection-on": "Hautaketa anitza gaituta dago",
+ "muted": "Mututua",
+ "muted-info": "Ez zaizkizu jakinaraziko arbel honi egindako aldaketak",
+ "my-boards": "Nire arbelak",
+ "name": "Izena",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Emaitzarik ez",
+ "normal": "Arrunta",
+ "normal-desc": "Txartelak ikusi eta editatu ditzake. Ezin ditu ezarpenak aldatu.",
+ "not-accepted-yet": "Gonbidapena ez da oraindik onartu",
+ "notify-participate": "Jaso sortzaile edo kide zaren txartelen jakinarazpenak",
+ "notify-watch": "Jaso ikuskatzen dituzun arbel, zerrenda edo txartelen jakinarazpenak",
+ "optional": "aukerazkoa",
+ "or": "edo",
+ "page-maybe-private": "Orri hau pribatua izan daiteke. Agian <a href='%s'>saioa hasi</a> eta gero ikusi ahal izango duzu.",
+ "page-not-found": "Ez da orria aurkitu.",
+ "password": "Pasahitza",
+ "paste-or-dragdrop": "itsasteko, edo irudi fitxategia arrastatu eta jaregiteko (irudia besterik ez)",
+ "participating": "Parte-hartzen",
+ "preview": "Aurreikusi",
+ "previewAttachedImagePopup-title": "Aurreikusi",
+ "previewClipboardImagePopup-title": "Aurreikusi",
+ "private": "Pribatua",
+ "private-desc": "Arbel hau pribatua da. Arbelera gehitutako jendeak besterik ezin du ikusi eta editatu.",
+ "profile": "Profila",
+ "public": "Publikoa",
+ "public-desc": "Arbel hau publikoa da lotura duen edonorentzat ikusgai dago eta Google bezalako bilatzaileetan agertuko da. Arbelera gehitutako kideek besterik ezin dute editatu.",
+ "quick-access-description": "Jarri izarra arbel bati barra honetan lasterbide bat sortzeko",
+ "remove-cover": "Kendu azala",
+ "remove-from-board": "Kendu arbeletik",
+ "remove-label": "Kendu etiketa",
+ "listDeletePopup-title": "Ezabatu zerrenda?",
+ "remove-member": "Kendu kidea",
+ "remove-member-from-card": "Kendu txarteletik",
+ "remove-member-pop": "Kendu __name__ (__username__) __boardTitle__ arbeletik? Kidea arbel honetako txartel guztietatik kenduko da. Jakinarazpenak bidaliko dira.",
+ "removeMemberPopup-title": "Kendu kidea?",
+ "rename": "Aldatu izena",
+ "rename-board": "Aldatu izena arbelari",
+ "restore": "Berrezarri",
+ "save": "Gorde",
+ "search": "Bilatu",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Aukeratu kolorea",
+ "set-wip-limit-value": "Zerrenda honetako atazen muga maximoa ezarri",
+ "setWipLimitPopup-title": "WIP muga ezarri",
+ "shortcut-assign-self": "Esleitu zure burua txartel honetara",
+ "shortcut-autocomplete-emoji": "Automatikoki osatu emojia",
+ "shortcut-autocomplete-members": "Automatikoki osatu kideak",
+ "shortcut-clear-filters": "Garbitu iragazki guztiak",
+ "shortcut-close-dialog": "Itxi elkarrizketa-koadroa",
+ "shortcut-filter-my-cards": "Iragazi nire txartelak",
+ "shortcut-show-shortcuts": "Erakutsi lasterbideen zerrenda hau",
+ "shortcut-toggle-filterbar": "Txandakatu iragazkiaren albo-barra",
+ "shortcut-toggle-sidebar": "Txandakatu arbelaren albo-barra",
+ "show-cards-minimum-count": "Erakutsi txartel kopurua hau baino handiagoa denean:",
+ "sidebar-open": "Ireki albo-barra",
+ "sidebar-close": "Itxi albo-barra",
+ "signupPopup-title": "Sortu kontu bat",
+ "star-board-title": "Egin klik arbel honi izarra jartzeko, zure arbelen zerrendaren goialdean agertuko da",
+ "starred-boards": "Izardun arbelak",
+ "starred-boards-description": "Izardun arbelak zure arbelen zerrendaren goialdean agertuko dira",
+ "subscribe": "Harpidetu",
+ "team": "Taldea",
+ "this-board": "arbel hau",
+ "this-card": "txartel hau",
+ "spent-time-hours": "Erabilitako denbora (orduak)",
+ "overtime-hours": "Luzapena (orduak)",
+ "overtime": "Luzapena",
+ "has-overtime-cards": "Luzapen txartelak ditu",
+ "has-spenttime-cards": "Erabilitako denbora txartelak ditu",
+ "time": "Ordua",
+ "title": "Izenburua",
+ "tracking": "Jarraitzen",
+ "tracking-info": "Sortzaile edo kide gisa parte-hartzen duzun txartelei egindako aldaketak jakinaraziko zaizkizu.",
+ "type": "Type",
+ "unassign-member": "Kendu kidea",
+ "unsaved-description": "Gorde gabeko deskripzio bat duzu",
+ "unwatch": "Utzi ikuskatzeari",
+ "upload": "Igo",
+ "upload-avatar": "Igo avatar bat",
+ "uploaded-avatar": "Avatar bat igo da",
+ "username": "Erabiltzaile-izena",
+ "view-it": "Ikusi",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Ikuskatu",
+ "watching": "Ikuskatzen",
+ "watching-info": "Arbel honi egindako aldaketak jakinaraziko zaizkizu",
+ "welcome-board": "Ongi etorri arbela",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Oinarrizkoa",
+ "welcome-list2": "Aurreratua",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Zer egin nahi duzu?",
+ "wipLimitErrorPopup-title": "Baliogabeko WIP muga",
+ "wipLimitErrorPopup-dialog-pt1": "Zerrenda honetako atazen muga, WIP-en ezarritakoa baina handiagoa da",
+ "wipLimitErrorPopup-dialog-pt2": "Mugitu zenbait ataza zerrenda honetatik, edo WIP muga handiagoa ezarri.",
+ "admin-panel": "Kudeaketa panela",
+ "settings": "Ezarpenak",
+ "people": "Jendea",
+ "registration": "Izen-ematea",
+ "disable-self-registration": "Desgaitu nork bere burua erregistratzea",
+ "invite": "Gonbidatu",
+ "invite-people": "Gonbidatu jendea",
+ "to-boards": "Arbele(ta)ra",
+ "email-addresses": "E-posta helbideak",
+ "smtp-host-description": "Zure e-posta mezuez arduratzen den SMTP zerbitzariaren helbidea",
+ "smtp-port-description": "Zure SMTP zerbitzariak bidalitako e-posta mezuentzat erabiltzen duen kaia.",
+ "smtp-tls-description": "Gaitu TLS euskarria SMTP zerbitzariarentzat",
+ "smtp-host": "SMTP ostalaria",
+ "smtp-port": "SMTP kaia",
+ "smtp-username": "Erabiltzaile-izena",
+ "smtp-password": "Pasahitza",
+ "smtp-tls": "TLS euskarria",
+ "send-from": "Nork",
+ "send-smtp-test": "Bidali posta elektroniko mezu bat zure buruari",
+ "invitation-code": "Gonbidapen kodea",
+ "email-invite-register-subject": "__inviter__ erabiltzaileak gonbidapen bat bidali dizu",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Arrakastaz bidali duzu posta elektroniko mezua",
+ "error-invitation-code-not-exist": "Gonbidapen kodea ez da existitzen",
+ "error-notAuthorized": "Ez duzu orri hau ikusteko baimenik.",
+ "outgoing-webhooks": "Irteerako Webhook-ak",
+ "outgoingWebhooksPopup-title": "Irteerako Webhook-ak",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "Irteera-webhook berria",
+ "no-name": "(Ezezaguna)",
+ "Node_version": "Nodo bertsioa",
+ "OS_Arch": "SE Arkitektura",
+ "OS_Cpus": "SE PUZ kopurua",
+ "OS_Freemem": "SE Memoria librea",
+ "OS_Loadavg": "SE batez besteko karga",
+ "OS_Platform": "SE plataforma",
+ "OS_Release": "SE kaleratzea",
+ "OS_Totalmem": "SE memoria guztira",
+ "OS_Type": "SE mota",
+ "OS_Uptime": "SE denbora abiatuta",
+ "days": "days",
+ "hours": "ordu",
+ "minutes": "minutu",
+ "seconds": "segundo",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Bai",
+ "no": "Ez",
+ "accounts": "Kontuak",
+ "accounts-allowEmailChange": "Baimendu e-mail aldaketa",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Noiz sortua",
+ "verified": "Egiaztatuta",
+ "active": "Gaituta",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Gehitu",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json
index 7d72c110..b3967af2 100644
--- a/i18n/fa.i18n.json
+++ b/i18n/fa.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "پذیرش",
- "act-activity-notify": "اعلان فعالیت",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "اعمال",
- "activities": "فعالیت‌ها",
- "activity": "فعالیت",
- "activity-added": "%s به %s اضافه شد",
- "activity-archived": "%s به آرشیو انتقال یافت",
- "activity-attached": "%s به %s پیوست شد",
- "activity-created": "%s ایجاد شد",
- "activity-customfield-created": "%s فیلدشخصی ایجاد شد",
- "activity-excluded": "%s از %s مستثنی گردید",
- "activity-imported": "%s از %s وارد %s شد",
- "activity-imported-board": "%s از %s وارد شد",
- "activity-joined": "اتصال به %s",
- "activity-moved": "%s از %s به %s منتقل شد",
- "activity-on": "%s",
- "activity-removed": "%s از %s حذف شد",
- "activity-sent": "ارسال %s به %s",
- "activity-unjoined": "قطع اتصال %s",
- "activity-subtask-added": "زیروظیفه به %s اضافه شد",
- "activity-checked-item": "چک شده %s در چک لیست %s از %s",
- "activity-unchecked-item": "چک نشده %s در چک لیست %s از %s",
- "activity-checklist-added": "سیاهه به %s اضافه شد",
- "activity-checklist-removed": "از چک لیست حذف گردید",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "تمام نشده ها در چک لیست %s از %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "حذف شده از چک لیست '%s' در %s",
- "add": "افزودن",
- "activity-checked-item-card": "چک شده %s در چک لیست %s",
- "activity-unchecked-item-card": "چک نشده %s در چک لیست %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "چک لیست تمام نشده %s",
- "add-attachment": "افزودن ضمیمه",
- "add-board": "افزودن برد",
- "add-card": "افزودن کارت",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "افزودن زیر وظیفه",
- "add-checklist": "افزودن چک لیست",
- "add-checklist-item": "افزودن مورد به سیاهه",
- "add-cover": "جلد کردن",
- "add-label": "افزودن لیبل",
- "add-list": "افزودن لیست",
- "add-members": "افزودن اعضا",
- "added": "اضافه گردید",
- "addMemberPopup-title": "اعضا",
- "admin": "مدیر",
- "admin-desc": "امکان دیدن و ویرایش کارتها،پاک کردن کاربران و تغییر تنظیمات برای تخته",
- "admin-announcement": "اعلان",
- "admin-announcement-active": "اعلان سراسری فعال",
- "admin-announcement-title": "اعلان از سوی مدیر",
- "all-boards": "تمام تخته‌ها",
- "and-n-other-card": "و __count__ کارت دیگر",
- "and-n-other-card_plural": "و __count__ کارت دیگر",
- "apply": "اعمال",
- "app-is-offline": "در حال بارگزاری لطفا منتظر بمانید. بازخوانی صفحه باعث از بین رفتن اطلاعات می شود. اگر بارگذاری کار نمی کند، لطفا بررسی کنید که این سرور متوقف نشده است.",
- "archive": "انتقال به آرشیو",
- "archive-all": "انتقال همه به آرشیو",
- "archive-board": "انتقال برد به آرشیو",
- "archive-card": "انتقال کارت به آرشیو",
- "archive-list": "انتقال لیست به آرشیو",
- "archive-swimlane": "انتقال مسیر به آرشیو",
- "archive-selection": "انتقال انتخاب شده ها به آرشیو",
- "archiveBoardPopup-title": "انتقال برد به آرشیو؟",
- "archived-items": "بایگانی",
- "archived-boards": "برد های داخل آرشیو",
- "restore-board": "بازیابی تخته",
- "no-archived-boards": "هیچ بردی داخل آرشیو نیست",
- "archives": "بایگانی",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "تعیین عضو",
- "attached": "ضمیمه شده",
- "attachment": "ضمیمه",
- "attachment-delete-pop": "حذف پیوست دایمی و بی بازگشت خواهد بود.",
- "attachmentDeletePopup-title": "آیا می خواهید ضمیمه را حذف کنید؟",
- "attachments": "ضمائم",
- "auto-watch": "اضافه شدن خودکار دیده بانی تخته زمانی که ایجاد می شوند",
- "avatar-too-big": "تصویر کاربر بسیار بزرگ است ـ حداکثر۷۰ کیلوبایت ـ",
- "back": "بازگشت",
- "board-change-color": "تغییر رنگ",
- "board-nb-stars": "%s ستاره",
- "board-not-found": "تخته مورد نظر پیدا نشد",
- "board-private-info": "این تخته <strong>خصوصی</strong> خواهد بود.",
- "board-public-info": "این تخته <strong>عمومی</strong> خواهد بود.",
- "boardChangeColorPopup-title": "تغییر پس زمینه تخته",
- "boardChangeTitlePopup-title": "تغییر نام تخته",
- "boardChangeVisibilityPopup-title": "تغییر وضعیت نمایش",
- "boardChangeWatchPopup-title": "تغییر دیده بانی",
- "boardMenuPopup-title": "Board Settings",
- "boards": "تخته‌ها",
- "board-view": "نمایش تخته",
- "board-view-cal": "تقویم",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "فهرست‌ها",
- "bucket-example": "برای مثال چیزی شبیه \"لیست سبدها\"",
- "cancel": "انصراف",
- "card-archived": "این کارت به آرشیو انتقال داده شد",
- "board-archived": "این برد به آرشیو انتقال یافت",
- "card-comments-title": "این کارت دارای %s نظر است.",
- "card-delete-notice": "حذف دائمی. تمامی موارد مرتبط با این کارت از بین خواهند رفت.",
- "card-delete-pop": "همه اقدامات از این پردازه حذف خواهد شد و امکان بازگرداندن کارت وجود نخواهد داشت.",
- "card-delete-suggest-archive": "شما می توانید کارت را به بایگانی منتقل کنید تا آن را از هیئت مدیره حذف کنید و فعالیت را حفظ کنید.",
- "card-due": "تا",
- "card-due-on": "تا",
- "card-spent": "زمان صرف شده",
- "card-edit-attachments": "ویرایش ضمائم",
- "card-edit-custom-fields": "ویرایش فیلدهای شخصی",
- "card-edit-labels": "ویرایش برچسب",
- "card-edit-members": "ویرایش اعضا",
- "card-labels-title": "تغییر برچسب کارت",
- "card-members-title": "افزودن یا حذف اعضا از کارت.",
- "card-start": "شروع",
- "card-start-on": "شروع از",
- "cardAttachmentsPopup-title": "ضمیمه از",
- "cardCustomField-datePopup-title": "تغییر تاریخ",
- "cardCustomFieldsPopup-title": "ویرایش فیلدهای شخصی",
- "cardDeletePopup-title": "آیا می خواهید کارت را حذف کنید؟",
- "cardDetailsActionsPopup-title": "اعمال کارت",
- "cardLabelsPopup-title": "برچسب ها",
- "cardMembersPopup-title": "اعضا",
- "cardMorePopup-title": "بیشتر",
- "cardTemplatePopup-title": "Create template",
- "cards": "کارت‌ها",
- "cards-count": "کارت‌ها",
- "casSignIn": "ورود با استفاده از CAS",
- "cardType-card": "کارت",
- "cardType-linkedCard": "کارت‌های مرتبط",
- "cardType-linkedBoard": "تخته‌های مرتبط",
- "change": "تغییر",
- "change-avatar": "تغییر تصویر",
- "change-password": "تغییر کلمه عبور",
- "change-permissions": "تغییر دسترسی‌ها",
- "change-settings": "تغییر تنظیمات",
- "changeAvatarPopup-title": "تغییر تصویر",
- "changeLanguagePopup-title": "تغییر زبان",
- "changePasswordPopup-title": "تغییر کلمه عبور",
- "changePermissionsPopup-title": "تغییر دسترسی‌ها",
- "changeSettingsPopup-title": "تغییر تنظیمات",
- "subtasks": "زیر وظیفه",
- "checklists": "سیاهه‌ها",
- "click-to-star": "با کلیک کردن ستاره بدهید",
- "click-to-unstar": "با کلیک کردن ستاره را کم کنید",
- "clipboard": "ذخیره در حافظه ویا بردار-رهاکن",
- "close": "بستن",
- "close-board": "بستن برد",
- "close-board-pop": "شما می توانید با کلیک کردن بر روی دکمه «بایگانی» از صفحه هدر، صفحه را بازگردانید.",
- "color-black": "مشکی",
- "color-blue": "آبی",
- "color-crimson": "قرمز",
- "color-darkgreen": "سبز تیره",
- "color-gold": "طلایی",
- "color-gray": "خاکستری",
- "color-green": "سبز",
- "color-indigo": "نیلی",
- "color-lime": "لیمویی",
- "color-magenta": "ارغوانی",
- "color-mistyrose": "صورتی روشن",
- "color-navy": "لاجوردی",
- "color-orange": "نارنجی",
- "color-paleturquoise": "فیروزه‌ای کدر",
- "color-peachpuff": "هلویی",
- "color-pink": "صورتی",
- "color-plum": "بنفش کدر",
- "color-purple": "بنفش",
- "color-red": "قرمز",
- "color-saddlebrown": "کاکائویی",
- "color-silver": "نقره‌ای",
- "color-sky": "آبی آسمانی",
- "color-slateblue": "آبی فولادی",
- "color-white": "سفید",
- "color-yellow": "زرد",
- "unset-color": "بازنشانی",
- "comment": "نظر",
- "comment-placeholder": "درج نظر",
- "comment-only": "فقط نظر",
- "comment-only-desc": "فقط می‌تواند روی کارت‌ها نظر دهد.",
- "no-comments": "هیچ کامنتی موجود نیست",
- "no-comments-desc": "نظرات و فعالیت ها را نمی توان دید.",
- "computer": "رایانه",
- "confirm-subtask-delete-dialog": "از حذف این زیر وظیفه اطمینان دارید؟",
- "confirm-checklist-delete-dialog": "مطمئنا چک لیست پاک شود؟",
- "copy-card-link-to-clipboard": "درج پیوند کارت در حافظه",
- "linkCardPopup-title": "ارتباط دادن کارت",
- "searchElementPopup-title": "جستجو",
- "copyCardPopup-title": "کپی کارت",
- "copyChecklistToManyCardsPopup-title": "کپی قالب کارت به کارت‌های متعدد",
- "copyChecklistToManyCardsPopup-instructions": "عنوان و توضیحات کارت مقصد در این قالب JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "ایجاد",
- "createBoardPopup-title": "ایجاد تخته",
- "chooseBoardSourcePopup-title": "بارگذاری تخته",
- "createLabelPopup-title": "ایجاد برچسب",
- "createCustomField": "ایجاد فیلد",
- "createCustomFieldPopup-title": "ایجاد فیلد",
- "current": "جاری",
- "custom-field-delete-pop": "این اقدام فیلدشخصی را بهمراه تمامی تاریخچه آن از کارت ها پاک می کند و برگشت پذیر نمی باشد",
- "custom-field-checkbox": "جعبه انتخابی",
- "custom-field-date": "تاریخ",
- "custom-field-dropdown": "لیست افتادنی",
- "custom-field-dropdown-none": "(هیچ)",
- "custom-field-dropdown-options": "لیست امکانات",
- "custom-field-dropdown-options-placeholder": "کلید Enter را جهت افزودن امکانات بیشتر فشار دهید",
- "custom-field-dropdown-unknown": "(ناشناخته)",
- "custom-field-number": "عدد",
- "custom-field-text": "متن",
- "custom-fields": "فیلدهای شخصی",
- "date": "تاریخ",
- "decline": "رد",
- "default-avatar": "تصویر پیش فرض",
- "delete": "حذف",
- "deleteCustomFieldPopup-title": "آیا فیلدشخصی پاک شود؟",
- "deleteLabelPopup-title": "آیا می خواهید برچسب را حذف کنید؟",
- "description": "توضیحات",
- "disambiguateMultiLabelPopup-title": "عمل ابهام زدایی از برچسب",
- "disambiguateMultiMemberPopup-title": "عمل ابهام زدایی از کاربر",
- "discard": "لغو",
- "done": "انجام شده",
- "download": "دریافت",
- "edit": "ویرایش",
- "edit-avatar": "تغییر تصویر",
- "edit-profile": "ویرایش پروفایل",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "تغییر تاریخ آغاز",
- "editCardDueDatePopup-title": "تغییر تاریخ پایان",
- "editCustomFieldPopup-title": "ویرایش فیلد",
- "editCardSpentTimePopup-title": "تغییر زمان صرف شده",
- "editLabelPopup-title": "تغیر برچسب",
- "editNotificationPopup-title": "اصلاح اعلان",
- "editProfilePopup-title": "ویرایش پروفایل",
- "email": "پست الکترونیک",
- "email-enrollAccount-subject": "یک حساب کاربری برای شما در __siteName__ ایجاد شد",
- "email-enrollAccount-text": "سلام __user__ \nبرای شروع به استفاده از این سرویس برروی آدرس زیر کلیک کنید.\n__url__\nبا تشکر.",
- "email-fail": "عدم موفقیت در فرستادن رایانامه",
- "email-fail-text": "خطا در تلاش برای فرستادن رایانامه",
- "email-invalid": "رایانامه نادرست",
- "email-invite": "دعوت از طریق رایانامه",
- "email-invite-subject": "__inviter__ برای شما دعوت نامه ارسال کرده است",
- "email-invite-text": "__User__ عزیز\n __inviter__ شما را به عضویت تخته \"__board__\" برای همکاری دعوت کرده است.\nلطفا لینک زیر را دنبال کنید، باتشکر:\n__url__",
- "email-resetPassword-subject": "تنظیم مجدد کلمه عبور در __siteName__",
- "email-resetPassword-text": "سلام __user__\nجهت تنظیم مجدد کلمه عبور آدرس زیر را دنبال نمایید، باتشکر:\n__url__",
- "email-sent": "نامه الکترونیکی فرستاده شد",
- "email-verifyEmail-subject": "تایید آدرس الکترونیکی شما در __siteName__",
- "email-verifyEmail-text": "سلام __user__\nبه منظور تایید آدرس الکترونیکی حساب خود، آدرس زیر را دنبال نمایید، باتشکر:\n__url__.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "تخته مورد نظر وجود ندارد",
- "error-board-notAdmin": "شما جهت انجام آن باید مدیر تخته باشید",
- "error-board-notAMember": "شما انجام آن ،اید عضو این تخته باشید.",
- "error-json-malformed": "متن درغالب صحیح Json نمی باشد.",
- "error-json-schema": "داده های Json شما، شامل اطلاعات صحیح در غالب درستی نمی باشد.",
- "error-list-doesNotExist": "این لیست موجود نیست",
- "error-user-doesNotExist": "این کاربر وجود ندارد",
- "error-user-notAllowSelf": "عدم امکان دعوت خود",
- "error-user-notCreated": "این کاربر ایجاد نشده است",
- "error-username-taken": "این نام کاربری استفاده شده است",
- "error-email-taken": "رایانامه توسط گیرنده دریافت شده است",
- "export-board": "انتقال به بیرون تخته",
- "filter": "صافی ـFilterـ",
- "filter-cards": "صافی ـFilterـ کارت‌ها",
- "filter-clear": "حذف صافی ـFilterـ",
- "filter-no-label": "بدون برچسب",
- "filter-no-member": "بدون عضو",
- "filter-no-custom-fields": "هیچ فیلدشخصی ای وجود ندارد",
- "filter-on": "صافی ـFilterـ فعال است",
- "filter-on-desc": "شما صافی ـFilterـ برای کارتهای تخته را روشن کرده اید. جهت ویرایش کلیک نمایید.",
- "filter-to-selection": "صافی ـFilterـ برای موارد انتخابی",
- "advanced-filter-label": "صافی پیشرفته",
- "advanced-filter-description": "فیلتر پیشرفته اجازه می دهد تا برای نوشتن رشته حاوی اپراتورهای زیر: ==! = <=> = && || () یک فضای به عنوان یک جداساز بین اپراتورها استفاده می شود. با تایپ کردن نام ها و مقادیر آنها می توانید برای تمام زمینه های سفارشی فیلتر کنید. به عنوان مثال: Field1 == Value1. نکته: اگر فیلدها یا مقادیر حاوی فضاها باشند، شما باید آنها را به یک نقل قول کپسول کنید. برای مثال: 'فیلد 1' == 'مقدار 1'. برای تک تک کاراکترهای کنترل (\\\\) که می توانید از آنها استفاده کنید، می توانید از \\ استفاده کنید. به عنوان مثال: Field1 == I \\ 'm. همچنین شما می توانید شرایط مختلف را ترکیب کنید. برای مثال: F1 == V1 || F1 == V2. به طور معمول همه اپراتورها از چپ به راست تفسیر می شوند. شما می توانید سفارش را با قرار دادن براکت تغییر دهید. برای مثال: F1 == V1 && (F2 == V2 || F2 == V3). همچنین می توانید فیلدهای متنی را با استفاده از regex جستجو کنید: F1 == /Tes.*/i",
- "fullname": "نام و نام خانوادگی",
- "header-logo-title": "بازگشت به صفحه تخته.",
- "hide-system-messages": "عدم نمایش پیامهای سیستمی",
- "headerBarCreateBoardPopup-title": "ایجاد تخته",
- "home": "خانه",
- "import": "وارد کردن",
- "link": "ارتباط",
- "import-board": "وارد کردن تخته",
- "import-board-c": "وارد کردن تخته",
- "import-board-title-trello": "وارد کردن تخته از Trello",
- "import-board-title-wekan": "بارگذاری برد ها از آخرین خروجی",
- "import-sandstorm-backup-warning": "قبل از بررسی این داده ها را از صفحه اصلی صادر شده یا Trello وارد نمیکنید این دانه دوباره باز می شود و یا دوباره باز می شود، یا برد را پیدا نمی کنید، این بدان معنی است که از دست دادن اطلاعات.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "از Trello",
- "from-wekan": "از آخرین خروجی",
- "import-board-instruction-trello": "در Trello-ی خود به 'Menu'، 'More'، 'Print'، 'Export to JSON رفته و متن نهایی را دراینجا وارد نمایید.",
- "import-board-instruction-wekan": "در هیئت مدیره خود، به 'Menu' بروید، سپس 'Export Board'، و متن را در فایل دانلود شده کپی کنید.",
- "import-board-instruction-about-errors": "اگر هنگام بازگردانی با خطا مواجه شدید بعضی اوقات بازگردانی انجام می شود و تمامی برد ها در داخل صفحه All Boards هستند",
- "import-json-placeholder": "اطلاعات Json معتبر خود را اینجا وارد کنید.",
- "import-map-members": "نگاشت اعضا",
- "import-members-map": "برد ها بازگردانده شده تعدادی کاربر دارند . لطفا کاربر های که می خواهید را انتخاب نمایید",
- "import-show-user-mapping": "بررسی نقشه کاربران",
- "import-user-select": "کاربر فعلی خود را انتخاب نمایید اگر میخواهیپ بعنوان کاربر باشد",
- "importMapMembersAddPopup-title": "انتخاب کاربر",
- "info": "نسخه",
- "initials": "تخصیصات اولیه",
- "invalid-date": "تاریخ نامعتبر",
- "invalid-time": "زمان نامعتبر",
- "invalid-user": "کاربر نامعتیر",
- "joined": "متصل",
- "just-invited": "هم اکنون، شما به این تخته دعوت شده اید.",
- "keyboard-shortcuts": "میانبر کلیدها",
- "label-create": "ایجاد برچسب",
- "label-default": "%s برچسب(پیش فرض)",
- "label-delete-pop": "این اقدام، برچسب را از همه کارت‌ها پاک خواهد کرد و تاریخچه آن را نیز از بین می‌برد.",
- "labels": "برچسب ها",
- "language": "زبان",
- "last-admin-desc": "شما نمی توانید نقش ـroleـ را تغییر دهید چراکه باید حداقل یک مدیری وجود داشته باشد.",
- "leave-board": "خروج از تخته",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "ارجاع به این کارت",
- "list-archive-cards": "انتقال تمامی کارت های این لیست به آرشیو",
- "list-archive-cards-pop": "این کارتباعث حذف تمامی کارت های این لیست از برد می شود . برای مشاهده کارت ها در آرشیو و برگرداندن آنها به برد بر بروی \"Menu\">\"Archive\" کلیک نمایید",
- "list-move-cards": "انتقال تمام کارت های این لیست",
- "list-select-cards": "انتخاب تمام کارت های این لیست",
- "set-color-list": "انتخاب رنگ",
- "listActionPopup-title": "لیست اقدامات",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "اضافه کردن مسیر شناور",
- "listImportCardPopup-title": "وارد کردن کارت Trello",
- "listMorePopup-title": "بیشتر",
- "link-list": "پیوند به این فهرست",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "شما می توانید لیست را به آرشیو انتقال دهید تا آن را از برد حذف نمایید و فعالیت های خود را حفظ نمایید",
- "lists": "لیست ها",
- "swimlanes": "Swimlanes",
- "log-out": "خروج",
- "log-in": "ورود",
- "loginPopup-title": "ورود",
- "memberMenuPopup-title": "تنظیمات اعضا",
- "members": "اعضا",
- "menu": "منو",
- "move-selection": "حرکت مورد انتخابی",
- "moveCardPopup-title": "حرکت کارت",
- "moveCardToBottom-title": "انتقال به پایین",
- "moveCardToTop-title": "انتقال به بالا",
- "moveSelectionPopup-title": "حرکت مورد انتخابی",
- "multi-selection": "امکان چند انتخابی",
- "multi-selection-on": "حالت چند انتخابی روشن است",
- "muted": "بی صدا",
- "muted-info": "شما هیچگاه از تغییرات این تخته مطلع نخواهید شد",
- "my-boards": "تخته‌های من",
- "name": "نام",
- "no-archived-cards": "هیچ کارتی در آرشیو موجود نمی باشد",
- "no-archived-lists": "هیچ لیستی در آرشیو موجود نمی باشد",
- "no-archived-swimlanes": "هیچ مسیری در آرشیو موجود نمی باشد",
- "no-results": "بدون نتیجه",
- "normal": "عادی",
- "normal-desc": "امکان نمایش و تنظیم کارت بدون امکان تغییر تنظیمات",
- "not-accepted-yet": "دعوت نامه هنوز پذیرفته نشده است",
- "notify-participate": "اطلاع رسانی از هرگونه تغییر در کارتهایی که ایجاد کرده اید ویا عضو آن هستید",
- "notify-watch": "اطلاع رسانی از هرگونه تغییر در تخته، لیست یا کارتهایی که از آنها دیده بانی میکنید",
- "optional": "انتخابی",
- "or": "یا",
- "page-maybe-private": "این صفحه ممکن است خصوصی باشد. شما با<a href='%s'>ورود</a> می‌توانید آن را ببینید.",
- "page-not-found": "صفحه پیدا نشد.",
- "password": "کلمه عبور",
- "paste-or-dragdrop": "جهت چسباندن، یا برداشتن-رهاسازی فایل تصویر به آن (تصویر)",
- "participating": "شرکت کنندگان",
- "preview": "پیش‌نمایش",
- "previewAttachedImagePopup-title": "پیش‌نمایش",
- "previewClipboardImagePopup-title": "پیش‌نمایش",
- "private": "خصوصی",
- "private-desc": "این تخته خصوصی است. فقط تنها افراد اضافه شده به آن می توانند مشاهده و ویرایش کنند.",
- "profile": "حساب کاربری",
- "public": "عمومی",
- "public-desc": "این تخته عمومی است. برای هر کسی با آدرس ویا جستجو درموتورها مانند گوگل قابل مشاهده است . فقط افرادی که به آن اضافه شده اند امکان ویرایش دارند.",
- "quick-access-description": "جهت افزودن یک تخته به اینجا،آنرا ستاره دار نمایید.",
- "remove-cover": "حذف کاور",
- "remove-from-board": "حذف از تخته",
- "remove-label": "حذف برچسب",
- "listDeletePopup-title": "حذف فهرست؟",
- "remove-member": "حذف عضو",
- "remove-member-from-card": "حذف از کارت",
- "remove-member-pop": "آیا __name__ (__username__) را از __boardTitle__ حذف می کنید? کاربر از تمام کارت ها در این تخته حذف خواهد شد و آنها ازین اقدام مطلع خواهند شد.",
- "removeMemberPopup-title": "آیا می خواهید کاربر را حذف کنید؟",
- "rename": "تغیر نام",
- "rename-board": "تغییر نام تخته",
- "restore": "بازیابی",
- "save": "ذخیره",
- "search": "جستجو",
- "rules": "قوانین",
- "search-cards": "جستجو در میان عناوین و توضیحات در این تخته",
- "search-example": "متن مورد جستجو؟",
- "select-color": "انتخاب رنگ",
- "set-wip-limit-value": "تعیین بیشینه تعداد وظایف در این فهرست",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "اختصاص خود به کارت فعلی",
- "shortcut-autocomplete-emoji": "تکمیل خودکار شکلکها",
- "shortcut-autocomplete-members": "تکمیل خودکار کاربرها",
- "shortcut-clear-filters": "حذف تمامی صافی ـfilterـ",
- "shortcut-close-dialog": "بستن محاوره",
- "shortcut-filter-my-cards": "کارت های من",
- "shortcut-show-shortcuts": "بالا آوردن میانبر این لیست",
- "shortcut-toggle-filterbar": "ضامن نوار جداکننده صافی ـfilterـ",
- "shortcut-toggle-sidebar": "ضامن نوار جداکننده تخته",
- "show-cards-minimum-count": "نمایش تعداد کارتها اگر لیست شامل بیشتراز",
- "sidebar-open": "بازکردن جداکننده",
- "sidebar-close": "بستن جداکننده",
- "signupPopup-title": "ایجاد یک کاربر",
- "star-board-title": "برای ستاره دادن، کلیک کنید.این در بالای لیست تخته های شما نمایش داده خواهد شد.",
- "starred-boards": "تخته های ستاره دار",
- "starred-boards-description": "تخته های ستاره دار در بالای لیست تخته ها نمایش داده می شود.",
- "subscribe": "عضوشدن",
- "team": "تیم",
- "this-board": "این تخته",
- "this-card": "این کارت",
- "spent-time-hours": "زمان صرف شده (ساعت)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "زمان",
- "title": "عنوان",
- "tracking": "پیگردی",
- "tracking-info": "شما از هرگونه تغییر در کارتهایی که بعنوان ایجاد کننده ویا عضو آن هستید، آگاه خواهید شد",
- "type": "نوع",
- "unassign-member": "عدم انتصاب کاربر",
- "unsaved-description": "شما توضیحات ذخیره نشده دارید.",
- "unwatch": "عدم دیده بانی",
- "upload": "ارسال",
- "upload-avatar": "ارسال تصویر",
- "uploaded-avatar": "تصویر ارسال شد",
- "username": "نام کاربری",
- "view-it": "مشاهده",
- "warn-list-archived": "اخطار:این کارت در یک لیست در آرشیو موجود می باشد",
- "watch": "دیده بانی",
- "watching": "درحال دیده بانی",
- "watching-info": "شما از هر تغییری دراین تخته آگاه خواهید شد",
- "welcome-board": "به این تخته خوش آمدید",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "پایه ای ها",
- "welcome-list2": "پیشرفته",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "چه کاری می خواهید انجام دهید؟",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "پیشخوان مدیریتی",
- "settings": "تنظمات",
- "people": "افراد",
- "registration": "ثبت نام",
- "disable-self-registration": "‌غیرفعال‌سازی خودثبت‌نامی",
- "invite": "دعوت",
- "invite-people": "دعوت از افراد",
- "to-boards": "به تخته(ها)",
- "email-addresses": "نشانی رایانامه",
- "smtp-host-description": "آدرس سرور SMTP ای که پست الکترونیکی شما برروی آن است",
- "smtp-port-description": "شماره درگاه ـPortـ ای که سرور SMTP شما جهت ارسال از آن استفاده می کند",
- "smtp-tls-description": "پشتیبانی از TLS برای سرور SMTP",
- "smtp-host": "آدرس سرور SMTP",
- "smtp-port": "شماره درگاه ـPortـ سرور SMTP",
- "smtp-username": "نام کاربری",
- "smtp-password": "کلمه عبور",
- "smtp-tls": "پشتیبانی از SMTP",
- "send-from": "از",
- "send-smtp-test": "فرستادن رایانامه آزمایشی به خود",
- "invitation-code": "کد دعوت نامه",
- "email-invite-register-subject": "__inviter__ برای شما دعوت نامه ارسال کرده است",
- "email-invite-register-text": "__user__ عزیز,\n\n__inviter__ شما را به این برد دعوت کرده است.\n\nلطفا روی لینک زیر کلیک نمایید:\n__url__\n\nو کد معرفی شما: __icode__\n\nبا تشکر.",
- "email-smtp-test-subject": "SMTP تست ایمیل",
- "email-smtp-test-text": "با موفقیت، یک رایانامه را فرستادید",
- "error-invitation-code-not-exist": "چنین کد دعوتی یافت نشد",
- "error-notAuthorized": "شما مجاز به دیدن این صفحه نیستید.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "فیلتر موضوع کارت",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(ناشناخته)",
- "Node_version": "نسخه Node",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "روزه‌ها",
- "hours": "ساعت",
- "minutes": "دقیقه",
- "seconds": "ثانیه",
- "show-field-on-card": "این رشته را در کارت نمایش بده",
- "automatically-field-on-card": "اتوماتیک این رشته را در همه ی کارت ها اضافه کن",
- "showLabel-field-on-card": "نمایش نام رشته در کارت های کوچک",
- "yes": "بله",
- "no": "خیر",
- "accounts": "حساب‌ها",
- "accounts-allowEmailChange": "اجازه تغییر رایانامه",
- "accounts-allowUserNameChange": "اجازه تغییر نام کاربری",
- "createdAt": "ساخته شده در",
- "verified": "معتبر",
- "active": "فعال",
- "card-received": "رسیده",
- "card-received-on": "رسیده در",
- "card-end": "پایان",
- "card-end-on": "پایان در",
- "editCardReceivedDatePopup-title": "تغییر تاریخ رسید",
- "editCardEndDatePopup-title": "تغییر تاریخ پایان",
- "setCardColorPopup-title": "انتخاب رنگ",
- "setCardActionsColorPopup-title": "انتخاب کردن رنگ",
- "setSwimlaneColorPopup-title": "انتخاب کردن رنگ",
- "setListColorPopup-title": "انتخاب کردن رنگ",
- "assigned-by": "محول شده توسط",
- "requested-by": "تقاضا شده توسط",
- "board-delete-notice": "حذف دائمی است شما تمام لیست ها، کارت ها و اقدامات مرتبط با این برد را از دست خواهید داد.",
- "delete-board-confirm-popup": "تمام لیست ها، کارت ها، برچسب ها و فعالیت ها حذف خواهند شد و شما نمی توانید محتوای برد را بازیابی کنید. هیچ واکنشی وجود ندارد",
- "boardDeletePopup-title": "حذف تخته؟",
- "delete-board": "حذف تخته",
- "default-subtasks-board": "ریزکار برای __board__ برد",
- "default": "پیش‌فرض",
- "queue": "صف",
- "subtask-settings": "تنظیمات ریزکارها",
- "boardSubtaskSettingsPopup-title": "تنظیمات ریزکار های برد",
- "show-subtasks-field": "کارت می تواند ریزکار داشته باشد",
- "deposit-subtasks-board": "افزودن ریزکار به برد:",
- "deposit-subtasks-list": "لیست برای ریزکار های افزوده شده",
- "show-parent-in-minicard": "نمایش خانواده در ریز کارت",
- "prefix-with-full-path": "پیشوند با مسیر کامل",
- "prefix-with-parent": "پیشوند با خانواده",
- "subtext-with-full-path": "زیرنویس با مسیر کامل",
- "subtext-with-parent": "زیرنویس با خانواده",
- "change-card-parent": "تغییرخانواده کارت",
- "parent-card": "کارت خانواده",
- "source-board": "کارت مرجع",
- "no-parent": "خانواده نمایش داده نشود",
- "activity-added-label": "افزودن لیبل '%s' به %s",
- "activity-removed-label": "حذف لیبل '%s' از %s",
- "activity-delete-attach": "حذف ضمیمه از %s",
- "activity-added-label-card": "افزودن لیبل '%s'",
- "activity-removed-label-card": "حذف لیبل '%s'",
- "activity-delete-attach-card": "حذف ضمیمه",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "نقش",
- "r-add-trigger": "افزودن گیره",
- "r-add-action": "افزودن عملیات",
- "r-board-rules": "قوانین برد",
- "r-add-rule": "افزودن نقش",
- "r-view-rule": "نمایش قانون",
- "r-delete-rule": "حذف قانون",
- "r-new-rule-name": "تیتر قانون جدید",
- "r-no-rules": "بدون قانون",
- "r-when-a-card": "زمانی که کارت",
- "r-is": "هست",
- "r-is-moved": "جابه‌جا شده",
- "r-added-to": "اضافه شد به",
- "r-removed-from": "حذف از",
- "r-the-board": "برد",
- "r-list": "لیست",
- "set-filter": "اضافه کردن فیلتر",
- "r-moved-to": "انتقال به",
- "r-moved-from": "انتقال از",
- "r-archived": "انتقال به آرشیو",
- "r-unarchived": "بازگردانی از آرشیو",
- "r-a-card": "کارت",
- "r-when-a-label-is": "زمانی که لیبل هست",
- "r-when-the-label": "زمانی که لیبل هست",
- "r-list-name": "نام لیست",
- "r-when-a-member": "زمانی که کاربر هست",
- "r-when-the-member": "زمانی که کاربر",
- "r-name": "نام",
- "r-when-a-attach": "زمانی که ضمیمه",
- "r-when-a-checklist": "زمانی که چک لیست هست",
- "r-when-the-checklist": "زمانی که چک لیست",
- "r-completed": "تمام شده",
- "r-made-incomplete": "تمام نشده",
- "r-when-a-item": "زمانی که چک لیست ایتم هست",
- "r-when-the-item": "زمانی که چک لیست ایتم",
- "r-checked": "انتخاب شده",
- "r-unchecked": "لغو انتخاب",
- "r-move-card-to": "انتقال کارت به",
- "r-top-of": "بالای",
- "r-bottom-of": "پایین",
- "r-its-list": "لیست خود",
- "r-archive": "انتقال به آرشیو",
- "r-unarchive": "بازگردانی از آرشیو",
- "r-card": "کارت",
- "r-add": "افزودن",
- "r-remove": "حذف",
- "r-label": "برچسب",
- "r-member": "عضو",
- "r-remove-all": "حذف همه کاربران از کارت",
- "r-set-color": "انتخاب رنگ به",
- "r-checklist": "چک لیست",
- "r-check-all": "انتخاب همه",
- "r-uncheck-all": "لغو انتخاب همه",
- "r-items-check": "آیتم از چک لیست",
- "r-check": "انتخاب",
- "r-uncheck": "لغو انتخاب",
- "r-item": "آیتم",
- "r-of-checklist": "از چک لیست",
- "r-send-email": "ارسال ایمیل",
- "r-to": "به",
- "r-subject": "عنوان",
- "r-rule-details": "جزئیات قوانین",
- "r-d-move-to-top-gen": "انتقال کارت به ابتدای لیست خود",
- "r-d-move-to-top-spec": "انتقال کارت به ابتدای لیست",
- "r-d-move-to-bottom-gen": "انتقال کارت به انتهای لیست خود",
- "r-d-move-to-bottom-spec": "انتقال کارت به انتهای لیست",
- "r-d-send-email": "ارسال ایمیل",
- "r-d-send-email-to": "به",
- "r-d-send-email-subject": "عنوان",
- "r-d-send-email-message": "پیام",
- "r-d-archive": "انتقال کارت به آرشیو",
- "r-d-unarchive": "بازگردانی کارت از آرشیو",
- "r-d-add-label": "افزودن برچسب",
- "r-d-remove-label": "حذف برچسب",
- "r-create-card": "ساخت کارت جدید",
- "r-in-list": "در لیست",
- "r-in-swimlane": "در مسیرِ شناور",
- "r-d-add-member": "افزودن عضو",
- "r-d-remove-member": "حذف عضو",
- "r-d-remove-all-member": "حذف تمامی کاربران",
- "r-d-check-all": "انتخاب تمام آیتم های لیست",
- "r-d-uncheck-all": "لغوانتخاب تمام آیتم های لیست",
- "r-d-check-one": "انتخاب آیتم",
- "r-d-uncheck-one": "لغو انتخاب آیتم",
- "r-d-check-of-list": "از چک لیست",
- "r-d-add-checklist": "افزودن چک لیست",
- "r-d-remove-checklist": "حذف چک لیست",
- "r-by": "توسط",
- "r-add-checklist": "افزودن چک لیست",
- "r-with-items": "با موارد",
- "r-items-list": "مورد۱،مورد۲،مورد۳",
- "r-add-swimlane": "اضافه کردن مسیر شناور",
- "r-swimlane-name": "نام مسیر شناور",
- "r-board-note": "نکته: برای نمایش موارد ممکن کادر را خالی بگذارید.",
- "r-checklist-note": "نکته: چک‌لیست‌ها باید توسط کاما از یک‌دیگر جدا شوند.",
- "r-when-a-card-is-moved": "دمانی که یک کارت به لیست دیگری منتقل شد",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "شروع",
- "r-df-due-at": "ناشی از",
- "r-df-end-at": "پایان",
- "r-df-received-at": "رسیده",
- "r-to-current-datetime": "به تاریخ/زمان فعلی",
- "r-remove-value-from": "حذف مقدار از",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "متد اعتبارسنجی",
- "authentication-type": "نوع اعتبارسنجی",
- "custom-product-name": "نام سفارشی محصول",
- "layout": "لایه",
- "hide-logo": "مخفی سازی نماد",
- "add-custom-html-after-body-start": "افزودن کد های HTML بعد از <body> شروع",
- "add-custom-html-before-body-end": "افزودن کد های HTML قبل از </body> پایان",
- "error-undefined": "یک اشتباه رخ داده شده است",
- "error-ldap-login": "هنگام تلاش برای ورود به یک خطا رخ داد",
- "display-authentication-method": "نمایش نوع اعتبارسنجی",
- "default-authentication-method": "نوع اعتبارسنجی پیشفرض",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "آخرین زمان بوده",
- "act-a-dueAt": "اصلاح زمان انجام به \nکِی: __timeValue__\nکجا: __card__\n زمان قبلی انجام __timeOldValue__ بوده",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "به شما در [__board__] __card__ اشاره شده",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "پذیرش",
+ "act-activity-notify": "اعلان فعالیت",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "اعمال",
+ "activities": "فعالیت‌ها",
+ "activity": "فعالیت",
+ "activity-added": "%s به %s اضافه شد",
+ "activity-archived": "%s به آرشیو انتقال یافت",
+ "activity-attached": "%s به %s پیوست شد",
+ "activity-created": "%s ایجاد شد",
+ "activity-customfield-created": "%s فیلدشخصی ایجاد شد",
+ "activity-excluded": "%s از %s مستثنی گردید",
+ "activity-imported": "%s از %s وارد %s شد",
+ "activity-imported-board": "%s از %s وارد شد",
+ "activity-joined": "اتصال به %s",
+ "activity-moved": "%s از %s به %s منتقل شد",
+ "activity-on": "%s",
+ "activity-removed": "%s از %s حذف شد",
+ "activity-sent": "ارسال %s به %s",
+ "activity-unjoined": "قطع اتصال %s",
+ "activity-subtask-added": "زیروظیفه به %s اضافه شد",
+ "activity-checked-item": "چک شده %s در چک لیست %s از %s",
+ "activity-unchecked-item": "چک نشده %s در چک لیست %s از %s",
+ "activity-checklist-added": "سیاهه به %s اضافه شد",
+ "activity-checklist-removed": "از چک لیست حذف گردید",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "تمام نشده ها در چک لیست %s از %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "حذف شده از چک لیست '%s' در %s",
+ "add": "افزودن",
+ "activity-checked-item-card": "چک شده %s در چک لیست %s",
+ "activity-unchecked-item-card": "چک نشده %s در چک لیست %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "چک لیست تمام نشده %s",
+ "add-attachment": "افزودن ضمیمه",
+ "add-board": "افزودن برد",
+ "add-card": "افزودن کارت",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "افزودن زیر وظیفه",
+ "add-checklist": "افزودن چک لیست",
+ "add-checklist-item": "افزودن مورد به سیاهه",
+ "add-cover": "جلد کردن",
+ "add-label": "افزودن لیبل",
+ "add-list": "افزودن لیست",
+ "add-members": "افزودن اعضا",
+ "added": "اضافه گردید",
+ "addMemberPopup-title": "اعضا",
+ "admin": "مدیر",
+ "admin-desc": "امکان دیدن و ویرایش کارتها،پاک کردن کاربران و تغییر تنظیمات برای تخته",
+ "admin-announcement": "اعلان",
+ "admin-announcement-active": "اعلان سراسری فعال",
+ "admin-announcement-title": "اعلان از سوی مدیر",
+ "all-boards": "تمام تخته‌ها",
+ "and-n-other-card": "و __count__ کارت دیگر",
+ "and-n-other-card_plural": "و __count__ کارت دیگر",
+ "apply": "اعمال",
+ "app-is-offline": "در حال بارگزاری لطفا منتظر بمانید. بازخوانی صفحه باعث از بین رفتن اطلاعات می شود. اگر بارگذاری کار نمی کند، لطفا بررسی کنید که این سرور متوقف نشده است.",
+ "archive": "انتقال به آرشیو",
+ "archive-all": "انتقال همه به آرشیو",
+ "archive-board": "انتقال برد به آرشیو",
+ "archive-card": "انتقال کارت به آرشیو",
+ "archive-list": "انتقال لیست به آرشیو",
+ "archive-swimlane": "انتقال مسیر به آرشیو",
+ "archive-selection": "انتقال انتخاب شده ها به آرشیو",
+ "archiveBoardPopup-title": "انتقال برد به آرشیو؟",
+ "archived-items": "بایگانی",
+ "archived-boards": "برد های داخل آرشیو",
+ "restore-board": "بازیابی تخته",
+ "no-archived-boards": "هیچ بردی داخل آرشیو نیست",
+ "archives": "بایگانی",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "تعیین عضو",
+ "attached": "ضمیمه شده",
+ "attachment": "ضمیمه",
+ "attachment-delete-pop": "حذف پیوست دایمی و بی بازگشت خواهد بود.",
+ "attachmentDeletePopup-title": "آیا می خواهید ضمیمه را حذف کنید؟",
+ "attachments": "ضمائم",
+ "auto-watch": "اضافه شدن خودکار دیده بانی تخته زمانی که ایجاد می شوند",
+ "avatar-too-big": "تصویر کاربر بسیار بزرگ است ـ حداکثر۷۰ کیلوبایت ـ",
+ "back": "بازگشت",
+ "board-change-color": "تغییر رنگ",
+ "board-nb-stars": "%s ستاره",
+ "board-not-found": "تخته مورد نظر پیدا نشد",
+ "board-private-info": "این تخته <strong>خصوصی</strong> خواهد بود.",
+ "board-public-info": "این تخته <strong>عمومی</strong> خواهد بود.",
+ "boardChangeColorPopup-title": "تغییر پس زمینه تخته",
+ "boardChangeTitlePopup-title": "تغییر نام تخته",
+ "boardChangeVisibilityPopup-title": "تغییر وضعیت نمایش",
+ "boardChangeWatchPopup-title": "تغییر دیده بانی",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "تخته‌ها",
+ "board-view": "نمایش تخته",
+ "board-view-cal": "تقویم",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "فهرست‌ها",
+ "bucket-example": "برای مثال چیزی شبیه \"لیست سبدها\"",
+ "cancel": "انصراف",
+ "card-archived": "این کارت به آرشیو انتقال داده شد",
+ "board-archived": "این برد به آرشیو انتقال یافت",
+ "card-comments-title": "این کارت دارای %s نظر است.",
+ "card-delete-notice": "حذف دائمی. تمامی موارد مرتبط با این کارت از بین خواهند رفت.",
+ "card-delete-pop": "همه اقدامات از این پردازه حذف خواهد شد و امکان بازگرداندن کارت وجود نخواهد داشت.",
+ "card-delete-suggest-archive": "شما می توانید کارت را به بایگانی منتقل کنید تا آن را از هیئت مدیره حذف کنید و فعالیت را حفظ کنید.",
+ "card-due": "تا",
+ "card-due-on": "تا",
+ "card-spent": "زمان صرف شده",
+ "card-edit-attachments": "ویرایش ضمائم",
+ "card-edit-custom-fields": "ویرایش فیلدهای شخصی",
+ "card-edit-labels": "ویرایش برچسب",
+ "card-edit-members": "ویرایش اعضا",
+ "card-labels-title": "تغییر برچسب کارت",
+ "card-members-title": "افزودن یا حذف اعضا از کارت.",
+ "card-start": "شروع",
+ "card-start-on": "شروع از",
+ "cardAttachmentsPopup-title": "ضمیمه از",
+ "cardCustomField-datePopup-title": "تغییر تاریخ",
+ "cardCustomFieldsPopup-title": "ویرایش فیلدهای شخصی",
+ "cardDeletePopup-title": "آیا می خواهید کارت را حذف کنید؟",
+ "cardDetailsActionsPopup-title": "اعمال کارت",
+ "cardLabelsPopup-title": "برچسب ها",
+ "cardMembersPopup-title": "اعضا",
+ "cardMorePopup-title": "بیشتر",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "کارت‌ها",
+ "cards-count": "کارت‌ها",
+ "casSignIn": "ورود با استفاده از CAS",
+ "cardType-card": "کارت",
+ "cardType-linkedCard": "کارت‌های مرتبط",
+ "cardType-linkedBoard": "تخته‌های مرتبط",
+ "change": "تغییر",
+ "change-avatar": "تغییر تصویر",
+ "change-password": "تغییر کلمه عبور",
+ "change-permissions": "تغییر دسترسی‌ها",
+ "change-settings": "تغییر تنظیمات",
+ "changeAvatarPopup-title": "تغییر تصویر",
+ "changeLanguagePopup-title": "تغییر زبان",
+ "changePasswordPopup-title": "تغییر کلمه عبور",
+ "changePermissionsPopup-title": "تغییر دسترسی‌ها",
+ "changeSettingsPopup-title": "تغییر تنظیمات",
+ "subtasks": "زیر وظیفه",
+ "checklists": "سیاهه‌ها",
+ "click-to-star": "با کلیک کردن ستاره بدهید",
+ "click-to-unstar": "با کلیک کردن ستاره را کم کنید",
+ "clipboard": "ذخیره در حافظه ویا بردار-رهاکن",
+ "close": "بستن",
+ "close-board": "بستن برد",
+ "close-board-pop": "شما می توانید با کلیک کردن بر روی دکمه «بایگانی» از صفحه هدر، صفحه را بازگردانید.",
+ "color-black": "مشکی",
+ "color-blue": "آبی",
+ "color-crimson": "قرمز",
+ "color-darkgreen": "سبز تیره",
+ "color-gold": "طلایی",
+ "color-gray": "خاکستری",
+ "color-green": "سبز",
+ "color-indigo": "نیلی",
+ "color-lime": "لیمویی",
+ "color-magenta": "ارغوانی",
+ "color-mistyrose": "صورتی روشن",
+ "color-navy": "لاجوردی",
+ "color-orange": "نارنجی",
+ "color-paleturquoise": "فیروزه‌ای کدر",
+ "color-peachpuff": "هلویی",
+ "color-pink": "صورتی",
+ "color-plum": "بنفش کدر",
+ "color-purple": "بنفش",
+ "color-red": "قرمز",
+ "color-saddlebrown": "کاکائویی",
+ "color-silver": "نقره‌ای",
+ "color-sky": "آبی آسمانی",
+ "color-slateblue": "آبی فولادی",
+ "color-white": "سفید",
+ "color-yellow": "زرد",
+ "unset-color": "بازنشانی",
+ "comment": "نظر",
+ "comment-placeholder": "درج نظر",
+ "comment-only": "فقط نظر",
+ "comment-only-desc": "فقط می‌تواند روی کارت‌ها نظر دهد.",
+ "no-comments": "هیچ کامنتی موجود نیست",
+ "no-comments-desc": "نظرات و فعالیت ها را نمی توان دید.",
+ "computer": "رایانه",
+ "confirm-subtask-delete-dialog": "از حذف این زیر وظیفه اطمینان دارید؟",
+ "confirm-checklist-delete-dialog": "مطمئنا چک لیست پاک شود؟",
+ "copy-card-link-to-clipboard": "درج پیوند کارت در حافظه",
+ "linkCardPopup-title": "ارتباط دادن کارت",
+ "searchElementPopup-title": "جستجو",
+ "copyCardPopup-title": "کپی کارت",
+ "copyChecklistToManyCardsPopup-title": "کپی قالب کارت به کارت‌های متعدد",
+ "copyChecklistToManyCardsPopup-instructions": "عنوان و توضیحات کارت مقصد در این قالب JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "ایجاد",
+ "createBoardPopup-title": "ایجاد تخته",
+ "chooseBoardSourcePopup-title": "بارگذاری تخته",
+ "createLabelPopup-title": "ایجاد برچسب",
+ "createCustomField": "ایجاد فیلد",
+ "createCustomFieldPopup-title": "ایجاد فیلد",
+ "current": "جاری",
+ "custom-field-delete-pop": "این اقدام فیلدشخصی را بهمراه تمامی تاریخچه آن از کارت ها پاک می کند و برگشت پذیر نمی باشد",
+ "custom-field-checkbox": "جعبه انتخابی",
+ "custom-field-date": "تاریخ",
+ "custom-field-dropdown": "لیست افتادنی",
+ "custom-field-dropdown-none": "(هیچ)",
+ "custom-field-dropdown-options": "لیست امکانات",
+ "custom-field-dropdown-options-placeholder": "کلید Enter را جهت افزودن امکانات بیشتر فشار دهید",
+ "custom-field-dropdown-unknown": "(ناشناخته)",
+ "custom-field-number": "عدد",
+ "custom-field-text": "متن",
+ "custom-fields": "فیلدهای شخصی",
+ "date": "تاریخ",
+ "decline": "رد",
+ "default-avatar": "تصویر پیش فرض",
+ "delete": "حذف",
+ "deleteCustomFieldPopup-title": "آیا فیلدشخصی پاک شود؟",
+ "deleteLabelPopup-title": "آیا می خواهید برچسب را حذف کنید؟",
+ "description": "توضیحات",
+ "disambiguateMultiLabelPopup-title": "عمل ابهام زدایی از برچسب",
+ "disambiguateMultiMemberPopup-title": "عمل ابهام زدایی از کاربر",
+ "discard": "لغو",
+ "done": "انجام شده",
+ "download": "دریافت",
+ "edit": "ویرایش",
+ "edit-avatar": "تغییر تصویر",
+ "edit-profile": "ویرایش پروفایل",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "تغییر تاریخ آغاز",
+ "editCardDueDatePopup-title": "تغییر تاریخ پایان",
+ "editCustomFieldPopup-title": "ویرایش فیلد",
+ "editCardSpentTimePopup-title": "تغییر زمان صرف شده",
+ "editLabelPopup-title": "تغیر برچسب",
+ "editNotificationPopup-title": "اصلاح اعلان",
+ "editProfilePopup-title": "ویرایش پروفایل",
+ "email": "پست الکترونیک",
+ "email-enrollAccount-subject": "یک حساب کاربری برای شما در __siteName__ ایجاد شد",
+ "email-enrollAccount-text": "سلام __user__ \nبرای شروع به استفاده از این سرویس برروی آدرس زیر کلیک کنید.\n__url__\nبا تشکر.",
+ "email-fail": "عدم موفقیت در فرستادن رایانامه",
+ "email-fail-text": "خطا در تلاش برای فرستادن رایانامه",
+ "email-invalid": "رایانامه نادرست",
+ "email-invite": "دعوت از طریق رایانامه",
+ "email-invite-subject": "__inviter__ برای شما دعوت نامه ارسال کرده است",
+ "email-invite-text": "__User__ عزیز\n __inviter__ شما را به عضویت تخته \"__board__\" برای همکاری دعوت کرده است.\nلطفا لینک زیر را دنبال کنید، باتشکر:\n__url__",
+ "email-resetPassword-subject": "تنظیم مجدد کلمه عبور در __siteName__",
+ "email-resetPassword-text": "سلام __user__\nجهت تنظیم مجدد کلمه عبور آدرس زیر را دنبال نمایید، باتشکر:\n__url__",
+ "email-sent": "نامه الکترونیکی فرستاده شد",
+ "email-verifyEmail-subject": "تایید آدرس الکترونیکی شما در __siteName__",
+ "email-verifyEmail-text": "سلام __user__\nبه منظور تایید آدرس الکترونیکی حساب خود، آدرس زیر را دنبال نمایید، باتشکر:\n__url__.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "تخته مورد نظر وجود ندارد",
+ "error-board-notAdmin": "شما جهت انجام آن باید مدیر تخته باشید",
+ "error-board-notAMember": "شما انجام آن ،اید عضو این تخته باشید.",
+ "error-json-malformed": "متن درغالب صحیح Json نمی باشد.",
+ "error-json-schema": "داده های Json شما، شامل اطلاعات صحیح در غالب درستی نمی باشد.",
+ "error-list-doesNotExist": "این لیست موجود نیست",
+ "error-user-doesNotExist": "این کاربر وجود ندارد",
+ "error-user-notAllowSelf": "عدم امکان دعوت خود",
+ "error-user-notCreated": "این کاربر ایجاد نشده است",
+ "error-username-taken": "این نام کاربری استفاده شده است",
+ "error-email-taken": "رایانامه توسط گیرنده دریافت شده است",
+ "export-board": "انتقال به بیرون تخته",
+ "filter": "صافی ـFilterـ",
+ "filter-cards": "صافی ـFilterـ کارت‌ها",
+ "filter-clear": "حذف صافی ـFilterـ",
+ "filter-no-label": "بدون برچسب",
+ "filter-no-member": "بدون عضو",
+ "filter-no-custom-fields": "هیچ فیلدشخصی ای وجود ندارد",
+ "filter-on": "صافی ـFilterـ فعال است",
+ "filter-on-desc": "شما صافی ـFilterـ برای کارتهای تخته را روشن کرده اید. جهت ویرایش کلیک نمایید.",
+ "filter-to-selection": "صافی ـFilterـ برای موارد انتخابی",
+ "advanced-filter-label": "صافی پیشرفته",
+ "advanced-filter-description": "فیلتر پیشرفته اجازه می دهد تا برای نوشتن رشته حاوی اپراتورهای زیر: ==! = <=> = && || () یک فضای به عنوان یک جداساز بین اپراتورها استفاده می شود. با تایپ کردن نام ها و مقادیر آنها می توانید برای تمام زمینه های سفارشی فیلتر کنید. به عنوان مثال: Field1 == Value1. نکته: اگر فیلدها یا مقادیر حاوی فضاها باشند، شما باید آنها را به یک نقل قول کپسول کنید. برای مثال: 'فیلد 1' == 'مقدار 1'. برای تک تک کاراکترهای کنترل (\\\\) که می توانید از آنها استفاده کنید، می توانید از \\ استفاده کنید. به عنوان مثال: Field1 == I \\ 'm. همچنین شما می توانید شرایط مختلف را ترکیب کنید. برای مثال: F1 == V1 || F1 == V2. به طور معمول همه اپراتورها از چپ به راست تفسیر می شوند. شما می توانید سفارش را با قرار دادن براکت تغییر دهید. برای مثال: F1 == V1 && (F2 == V2 || F2 == V3). همچنین می توانید فیلدهای متنی را با استفاده از regex جستجو کنید: F1 == /Tes.*/i",
+ "fullname": "نام و نام خانوادگی",
+ "header-logo-title": "بازگشت به صفحه تخته.",
+ "hide-system-messages": "عدم نمایش پیامهای سیستمی",
+ "headerBarCreateBoardPopup-title": "ایجاد تخته",
+ "home": "خانه",
+ "import": "وارد کردن",
+ "link": "ارتباط",
+ "import-board": "وارد کردن تخته",
+ "import-board-c": "وارد کردن تخته",
+ "import-board-title-trello": "وارد کردن تخته از Trello",
+ "import-board-title-wekan": "بارگذاری برد ها از آخرین خروجی",
+ "import-sandstorm-backup-warning": "قبل از بررسی این داده ها را از صفحه اصلی صادر شده یا Trello وارد نمیکنید این دانه دوباره باز می شود و یا دوباره باز می شود، یا برد را پیدا نمی کنید، این بدان معنی است که از دست دادن اطلاعات.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "از Trello",
+ "from-wekan": "از آخرین خروجی",
+ "import-board-instruction-trello": "در Trello-ی خود به 'Menu'، 'More'، 'Print'، 'Export to JSON رفته و متن نهایی را دراینجا وارد نمایید.",
+ "import-board-instruction-wekan": "در هیئت مدیره خود، به 'Menu' بروید، سپس 'Export Board'، و متن را در فایل دانلود شده کپی کنید.",
+ "import-board-instruction-about-errors": "اگر هنگام بازگردانی با خطا مواجه شدید بعضی اوقات بازگردانی انجام می شود و تمامی برد ها در داخل صفحه All Boards هستند",
+ "import-json-placeholder": "اطلاعات Json معتبر خود را اینجا وارد کنید.",
+ "import-map-members": "نگاشت اعضا",
+ "import-members-map": "برد ها بازگردانده شده تعدادی کاربر دارند . لطفا کاربر های که می خواهید را انتخاب نمایید",
+ "import-show-user-mapping": "بررسی نقشه کاربران",
+ "import-user-select": "کاربر فعلی خود را انتخاب نمایید اگر میخواهیپ بعنوان کاربر باشد",
+ "importMapMembersAddPopup-title": "انتخاب کاربر",
+ "info": "نسخه",
+ "initials": "تخصیصات اولیه",
+ "invalid-date": "تاریخ نامعتبر",
+ "invalid-time": "زمان نامعتبر",
+ "invalid-user": "کاربر نامعتیر",
+ "joined": "متصل",
+ "just-invited": "هم اکنون، شما به این تخته دعوت شده اید.",
+ "keyboard-shortcuts": "میانبر کلیدها",
+ "label-create": "ایجاد برچسب",
+ "label-default": "%s برچسب(پیش فرض)",
+ "label-delete-pop": "این اقدام، برچسب را از همه کارت‌ها پاک خواهد کرد و تاریخچه آن را نیز از بین می‌برد.",
+ "labels": "برچسب ها",
+ "language": "زبان",
+ "last-admin-desc": "شما نمی توانید نقش ـroleـ را تغییر دهید چراکه باید حداقل یک مدیری وجود داشته باشد.",
+ "leave-board": "خروج از تخته",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "ارجاع به این کارت",
+ "list-archive-cards": "انتقال تمامی کارت های این لیست به آرشیو",
+ "list-archive-cards-pop": "این کارتباعث حذف تمامی کارت های این لیست از برد می شود . برای مشاهده کارت ها در آرشیو و برگرداندن آنها به برد بر بروی \"Menu\">\"Archive\" کلیک نمایید",
+ "list-move-cards": "انتقال تمام کارت های این لیست",
+ "list-select-cards": "انتخاب تمام کارت های این لیست",
+ "set-color-list": "انتخاب رنگ",
+ "listActionPopup-title": "لیست اقدامات",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "اضافه کردن مسیر شناور",
+ "listImportCardPopup-title": "وارد کردن کارت Trello",
+ "listMorePopup-title": "بیشتر",
+ "link-list": "پیوند به این فهرست",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "شما می توانید لیست را به آرشیو انتقال دهید تا آن را از برد حذف نمایید و فعالیت های خود را حفظ نمایید",
+ "lists": "لیست ها",
+ "swimlanes": "Swimlanes",
+ "log-out": "خروج",
+ "log-in": "ورود",
+ "loginPopup-title": "ورود",
+ "memberMenuPopup-title": "تنظیمات اعضا",
+ "members": "اعضا",
+ "menu": "منو",
+ "move-selection": "حرکت مورد انتخابی",
+ "moveCardPopup-title": "حرکت کارت",
+ "moveCardToBottom-title": "انتقال به پایین",
+ "moveCardToTop-title": "انتقال به بالا",
+ "moveSelectionPopup-title": "حرکت مورد انتخابی",
+ "multi-selection": "امکان چند انتخابی",
+ "multi-selection-on": "حالت چند انتخابی روشن است",
+ "muted": "بی صدا",
+ "muted-info": "شما هیچگاه از تغییرات این تخته مطلع نخواهید شد",
+ "my-boards": "تخته‌های من",
+ "name": "نام",
+ "no-archived-cards": "هیچ کارتی در آرشیو موجود نمی باشد",
+ "no-archived-lists": "هیچ لیستی در آرشیو موجود نمی باشد",
+ "no-archived-swimlanes": "هیچ مسیری در آرشیو موجود نمی باشد",
+ "no-results": "بدون نتیجه",
+ "normal": "عادی",
+ "normal-desc": "امکان نمایش و تنظیم کارت بدون امکان تغییر تنظیمات",
+ "not-accepted-yet": "دعوت نامه هنوز پذیرفته نشده است",
+ "notify-participate": "اطلاع رسانی از هرگونه تغییر در کارتهایی که ایجاد کرده اید ویا عضو آن هستید",
+ "notify-watch": "اطلاع رسانی از هرگونه تغییر در تخته، لیست یا کارتهایی که از آنها دیده بانی میکنید",
+ "optional": "انتخابی",
+ "or": "یا",
+ "page-maybe-private": "این صفحه ممکن است خصوصی باشد. شما با<a href='%s'>ورود</a> می‌توانید آن را ببینید.",
+ "page-not-found": "صفحه پیدا نشد.",
+ "password": "کلمه عبور",
+ "paste-or-dragdrop": "جهت چسباندن، یا برداشتن-رهاسازی فایل تصویر به آن (تصویر)",
+ "participating": "شرکت کنندگان",
+ "preview": "پیش‌نمایش",
+ "previewAttachedImagePopup-title": "پیش‌نمایش",
+ "previewClipboardImagePopup-title": "پیش‌نمایش",
+ "private": "خصوصی",
+ "private-desc": "این تخته خصوصی است. فقط تنها افراد اضافه شده به آن می توانند مشاهده و ویرایش کنند.",
+ "profile": "حساب کاربری",
+ "public": "عمومی",
+ "public-desc": "این تخته عمومی است. برای هر کسی با آدرس ویا جستجو درموتورها مانند گوگل قابل مشاهده است . فقط افرادی که به آن اضافه شده اند امکان ویرایش دارند.",
+ "quick-access-description": "جهت افزودن یک تخته به اینجا،آنرا ستاره دار نمایید.",
+ "remove-cover": "حذف کاور",
+ "remove-from-board": "حذف از تخته",
+ "remove-label": "حذف برچسب",
+ "listDeletePopup-title": "حذف فهرست؟",
+ "remove-member": "حذف عضو",
+ "remove-member-from-card": "حذف از کارت",
+ "remove-member-pop": "آیا __name__ (__username__) را از __boardTitle__ حذف می کنید? کاربر از تمام کارت ها در این تخته حذف خواهد شد و آنها ازین اقدام مطلع خواهند شد.",
+ "removeMemberPopup-title": "آیا می خواهید کاربر را حذف کنید؟",
+ "rename": "تغیر نام",
+ "rename-board": "تغییر نام تخته",
+ "restore": "بازیابی",
+ "save": "ذخیره",
+ "search": "جستجو",
+ "rules": "قوانین",
+ "search-cards": "جستجو در میان عناوین و توضیحات در این تخته",
+ "search-example": "متن مورد جستجو؟",
+ "select-color": "انتخاب رنگ",
+ "set-wip-limit-value": "تعیین بیشینه تعداد وظایف در این فهرست",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "اختصاص خود به کارت فعلی",
+ "shortcut-autocomplete-emoji": "تکمیل خودکار شکلکها",
+ "shortcut-autocomplete-members": "تکمیل خودکار کاربرها",
+ "shortcut-clear-filters": "حذف تمامی صافی ـfilterـ",
+ "shortcut-close-dialog": "بستن محاوره",
+ "shortcut-filter-my-cards": "کارت های من",
+ "shortcut-show-shortcuts": "بالا آوردن میانبر این لیست",
+ "shortcut-toggle-filterbar": "ضامن نوار جداکننده صافی ـfilterـ",
+ "shortcut-toggle-sidebar": "ضامن نوار جداکننده تخته",
+ "show-cards-minimum-count": "نمایش تعداد کارتها اگر لیست شامل بیشتراز",
+ "sidebar-open": "بازکردن جداکننده",
+ "sidebar-close": "بستن جداکننده",
+ "signupPopup-title": "ایجاد یک کاربر",
+ "star-board-title": "برای ستاره دادن، کلیک کنید.این در بالای لیست تخته های شما نمایش داده خواهد شد.",
+ "starred-boards": "تخته های ستاره دار",
+ "starred-boards-description": "تخته های ستاره دار در بالای لیست تخته ها نمایش داده می شود.",
+ "subscribe": "عضوشدن",
+ "team": "تیم",
+ "this-board": "این تخته",
+ "this-card": "این کارت",
+ "spent-time-hours": "زمان صرف شده (ساعت)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "زمان",
+ "title": "عنوان",
+ "tracking": "پیگردی",
+ "tracking-info": "شما از هرگونه تغییر در کارتهایی که بعنوان ایجاد کننده ویا عضو آن هستید، آگاه خواهید شد",
+ "type": "نوع",
+ "unassign-member": "عدم انتصاب کاربر",
+ "unsaved-description": "شما توضیحات ذخیره نشده دارید.",
+ "unwatch": "عدم دیده بانی",
+ "upload": "ارسال",
+ "upload-avatar": "ارسال تصویر",
+ "uploaded-avatar": "تصویر ارسال شد",
+ "username": "نام کاربری",
+ "view-it": "مشاهده",
+ "warn-list-archived": "اخطار:این کارت در یک لیست در آرشیو موجود می باشد",
+ "watch": "دیده بانی",
+ "watching": "درحال دیده بانی",
+ "watching-info": "شما از هر تغییری دراین تخته آگاه خواهید شد",
+ "welcome-board": "به این تخته خوش آمدید",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "پایه ای ها",
+ "welcome-list2": "پیشرفته",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "چه کاری می خواهید انجام دهید؟",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "پیشخوان مدیریتی",
+ "settings": "تنظمات",
+ "people": "افراد",
+ "registration": "ثبت نام",
+ "disable-self-registration": "‌غیرفعال‌سازی خودثبت‌نامی",
+ "invite": "دعوت",
+ "invite-people": "دعوت از افراد",
+ "to-boards": "به تخته(ها)",
+ "email-addresses": "نشانی رایانامه",
+ "smtp-host-description": "آدرس سرور SMTP ای که پست الکترونیکی شما برروی آن است",
+ "smtp-port-description": "شماره درگاه ـPortـ ای که سرور SMTP شما جهت ارسال از آن استفاده می کند",
+ "smtp-tls-description": "پشتیبانی از TLS برای سرور SMTP",
+ "smtp-host": "آدرس سرور SMTP",
+ "smtp-port": "شماره درگاه ـPortـ سرور SMTP",
+ "smtp-username": "نام کاربری",
+ "smtp-password": "کلمه عبور",
+ "smtp-tls": "پشتیبانی از SMTP",
+ "send-from": "از",
+ "send-smtp-test": "فرستادن رایانامه آزمایشی به خود",
+ "invitation-code": "کد دعوت نامه",
+ "email-invite-register-subject": "__inviter__ برای شما دعوت نامه ارسال کرده است",
+ "email-invite-register-text": "__user__ عزیز,\n\n__inviter__ شما را به این برد دعوت کرده است.\n\nلطفا روی لینک زیر کلیک نمایید:\n__url__\n\nو کد معرفی شما: __icode__\n\nبا تشکر.",
+ "email-smtp-test-subject": "SMTP تست ایمیل",
+ "email-smtp-test-text": "با موفقیت، یک رایانامه را فرستادید",
+ "error-invitation-code-not-exist": "چنین کد دعوتی یافت نشد",
+ "error-notAuthorized": "شما مجاز به دیدن این صفحه نیستید.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "فیلتر موضوع کارت",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(ناشناخته)",
+ "Node_version": "نسخه Node",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "روزه‌ها",
+ "hours": "ساعت",
+ "minutes": "دقیقه",
+ "seconds": "ثانیه",
+ "show-field-on-card": "این رشته را در کارت نمایش بده",
+ "automatically-field-on-card": "اتوماتیک این رشته را در همه ی کارت ها اضافه کن",
+ "showLabel-field-on-card": "نمایش نام رشته در کارت های کوچک",
+ "yes": "بله",
+ "no": "خیر",
+ "accounts": "حساب‌ها",
+ "accounts-allowEmailChange": "اجازه تغییر رایانامه",
+ "accounts-allowUserNameChange": "اجازه تغییر نام کاربری",
+ "createdAt": "ساخته شده در",
+ "verified": "معتبر",
+ "active": "فعال",
+ "card-received": "رسیده",
+ "card-received-on": "رسیده در",
+ "card-end": "پایان",
+ "card-end-on": "پایان در",
+ "editCardReceivedDatePopup-title": "تغییر تاریخ رسید",
+ "editCardEndDatePopup-title": "تغییر تاریخ پایان",
+ "setCardColorPopup-title": "انتخاب رنگ",
+ "setCardActionsColorPopup-title": "انتخاب کردن رنگ",
+ "setSwimlaneColorPopup-title": "انتخاب کردن رنگ",
+ "setListColorPopup-title": "انتخاب کردن رنگ",
+ "assigned-by": "محول شده توسط",
+ "requested-by": "تقاضا شده توسط",
+ "board-delete-notice": "حذف دائمی است شما تمام لیست ها، کارت ها و اقدامات مرتبط با این برد را از دست خواهید داد.",
+ "delete-board-confirm-popup": "تمام لیست ها، کارت ها، برچسب ها و فعالیت ها حذف خواهند شد و شما نمی توانید محتوای برد را بازیابی کنید. هیچ واکنشی وجود ندارد",
+ "boardDeletePopup-title": "حذف تخته؟",
+ "delete-board": "حذف تخته",
+ "default-subtasks-board": "ریزکار برای __board__ برد",
+ "default": "پیش‌فرض",
+ "queue": "صف",
+ "subtask-settings": "تنظیمات ریزکارها",
+ "boardSubtaskSettingsPopup-title": "تنظیمات ریزکار های برد",
+ "show-subtasks-field": "کارت می تواند ریزکار داشته باشد",
+ "deposit-subtasks-board": "افزودن ریزکار به برد:",
+ "deposit-subtasks-list": "لیست برای ریزکار های افزوده شده",
+ "show-parent-in-minicard": "نمایش خانواده در ریز کارت",
+ "prefix-with-full-path": "پیشوند با مسیر کامل",
+ "prefix-with-parent": "پیشوند با خانواده",
+ "subtext-with-full-path": "زیرنویس با مسیر کامل",
+ "subtext-with-parent": "زیرنویس با خانواده",
+ "change-card-parent": "تغییرخانواده کارت",
+ "parent-card": "کارت خانواده",
+ "source-board": "کارت مرجع",
+ "no-parent": "خانواده نمایش داده نشود",
+ "activity-added-label": "افزودن لیبل '%s' به %s",
+ "activity-removed-label": "حذف لیبل '%s' از %s",
+ "activity-delete-attach": "حذف ضمیمه از %s",
+ "activity-added-label-card": "افزودن لیبل '%s'",
+ "activity-removed-label-card": "حذف لیبل '%s'",
+ "activity-delete-attach-card": "حذف ضمیمه",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "نقش",
+ "r-add-trigger": "افزودن گیره",
+ "r-add-action": "افزودن عملیات",
+ "r-board-rules": "قوانین برد",
+ "r-add-rule": "افزودن نقش",
+ "r-view-rule": "نمایش قانون",
+ "r-delete-rule": "حذف قانون",
+ "r-new-rule-name": "تیتر قانون جدید",
+ "r-no-rules": "بدون قانون",
+ "r-when-a-card": "زمانی که کارت",
+ "r-is": "هست",
+ "r-is-moved": "جابه‌جا شده",
+ "r-added-to": "اضافه شد به",
+ "r-removed-from": "حذف از",
+ "r-the-board": "برد",
+ "r-list": "لیست",
+ "set-filter": "اضافه کردن فیلتر",
+ "r-moved-to": "انتقال به",
+ "r-moved-from": "انتقال از",
+ "r-archived": "انتقال به آرشیو",
+ "r-unarchived": "بازگردانی از آرشیو",
+ "r-a-card": "کارت",
+ "r-when-a-label-is": "زمانی که لیبل هست",
+ "r-when-the-label": "زمانی که لیبل هست",
+ "r-list-name": "نام لیست",
+ "r-when-a-member": "زمانی که کاربر هست",
+ "r-when-the-member": "زمانی که کاربر",
+ "r-name": "نام",
+ "r-when-a-attach": "زمانی که ضمیمه",
+ "r-when-a-checklist": "زمانی که چک لیست هست",
+ "r-when-the-checklist": "زمانی که چک لیست",
+ "r-completed": "تمام شده",
+ "r-made-incomplete": "تمام نشده",
+ "r-when-a-item": "زمانی که چک لیست ایتم هست",
+ "r-when-the-item": "زمانی که چک لیست ایتم",
+ "r-checked": "انتخاب شده",
+ "r-unchecked": "لغو انتخاب",
+ "r-move-card-to": "انتقال کارت به",
+ "r-top-of": "بالای",
+ "r-bottom-of": "پایین",
+ "r-its-list": "لیست خود",
+ "r-archive": "انتقال به آرشیو",
+ "r-unarchive": "بازگردانی از آرشیو",
+ "r-card": "کارت",
+ "r-add": "افزودن",
+ "r-remove": "حذف",
+ "r-label": "برچسب",
+ "r-member": "عضو",
+ "r-remove-all": "حذف همه کاربران از کارت",
+ "r-set-color": "انتخاب رنگ به",
+ "r-checklist": "چک لیست",
+ "r-check-all": "انتخاب همه",
+ "r-uncheck-all": "لغو انتخاب همه",
+ "r-items-check": "آیتم از چک لیست",
+ "r-check": "انتخاب",
+ "r-uncheck": "لغو انتخاب",
+ "r-item": "آیتم",
+ "r-of-checklist": "از چک لیست",
+ "r-send-email": "ارسال ایمیل",
+ "r-to": "به",
+ "r-subject": "عنوان",
+ "r-rule-details": "جزئیات قوانین",
+ "r-d-move-to-top-gen": "انتقال کارت به ابتدای لیست خود",
+ "r-d-move-to-top-spec": "انتقال کارت به ابتدای لیست",
+ "r-d-move-to-bottom-gen": "انتقال کارت به انتهای لیست خود",
+ "r-d-move-to-bottom-spec": "انتقال کارت به انتهای لیست",
+ "r-d-send-email": "ارسال ایمیل",
+ "r-d-send-email-to": "به",
+ "r-d-send-email-subject": "عنوان",
+ "r-d-send-email-message": "پیام",
+ "r-d-archive": "انتقال کارت به آرشیو",
+ "r-d-unarchive": "بازگردانی کارت از آرشیو",
+ "r-d-add-label": "افزودن برچسب",
+ "r-d-remove-label": "حذف برچسب",
+ "r-create-card": "ساخت کارت جدید",
+ "r-in-list": "در لیست",
+ "r-in-swimlane": "در مسیرِ شناور",
+ "r-d-add-member": "افزودن عضو",
+ "r-d-remove-member": "حذف عضو",
+ "r-d-remove-all-member": "حذف تمامی کاربران",
+ "r-d-check-all": "انتخاب تمام آیتم های لیست",
+ "r-d-uncheck-all": "لغوانتخاب تمام آیتم های لیست",
+ "r-d-check-one": "انتخاب آیتم",
+ "r-d-uncheck-one": "لغو انتخاب آیتم",
+ "r-d-check-of-list": "از چک لیست",
+ "r-d-add-checklist": "افزودن چک لیست",
+ "r-d-remove-checklist": "حذف چک لیست",
+ "r-by": "توسط",
+ "r-add-checklist": "افزودن چک لیست",
+ "r-with-items": "با موارد",
+ "r-items-list": "مورد۱،مورد۲،مورد۳",
+ "r-add-swimlane": "اضافه کردن مسیر شناور",
+ "r-swimlane-name": "نام مسیر شناور",
+ "r-board-note": "نکته: برای نمایش موارد ممکن کادر را خالی بگذارید.",
+ "r-checklist-note": "نکته: چک‌لیست‌ها باید توسط کاما از یک‌دیگر جدا شوند.",
+ "r-when-a-card-is-moved": "دمانی که یک کارت به لیست دیگری منتقل شد",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "شروع",
+ "r-df-due-at": "ناشی از",
+ "r-df-end-at": "پایان",
+ "r-df-received-at": "رسیده",
+ "r-to-current-datetime": "به تاریخ/زمان فعلی",
+ "r-remove-value-from": "حذف مقدار از",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "متد اعتبارسنجی",
+ "authentication-type": "نوع اعتبارسنجی",
+ "custom-product-name": "نام سفارشی محصول",
+ "layout": "لایه",
+ "hide-logo": "مخفی سازی نماد",
+ "add-custom-html-after-body-start": "افزودن کد های HTML بعد از <body> شروع",
+ "add-custom-html-before-body-end": "افزودن کد های HTML قبل از </body> پایان",
+ "error-undefined": "یک اشتباه رخ داده شده است",
+ "error-ldap-login": "هنگام تلاش برای ورود به یک خطا رخ داد",
+ "display-authentication-method": "نمایش نوع اعتبارسنجی",
+ "default-authentication-method": "نوع اعتبارسنجی پیشفرض",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "آخرین زمان بوده",
+ "act-a-dueAt": "اصلاح زمان انجام به \nکِی: __timeValue__\nکجا: __card__\n زمان قبلی انجام __timeOldValue__ بوده",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "به شما در [__board__] __card__ اشاره شده",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json
index ebf5d199..0b5f26f4 100644
--- a/i18n/fi.i18n.json
+++ b/i18n/fi.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Hyväksy",
- "act-activity-notify": "Toimintailmoitus",
- "act-addAttachment": "lisätty liite __attachment__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-deleteAttachment": "poistettu liite __attachment__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addSubtask": "lisätty alitehtävä __subtask__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addLabel": "Lisätty tunniste __label__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addedLabel": "Lisätty tunniste __label__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-removeLabel": "Poistettu tunniste __label__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-removedLabel": "Poistettu tunniste __label__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addChecklist": "lisätty tarkistuslista __checklist__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addChecklistItem": "lisätty tarkistuslistan kohta __checklistItem__ tarkistuslistalle __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-removeChecklist": "poistettu tarkistuslista __checklist__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-removeChecklistItem": "poistettu tarkistuslistan kohta __checklistItem__ tarkistuslistalta __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-checkedItem": "ruksattu __checklistItem__ tarkistuslistalla __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-uncheckedItem": "poistettu ruksi __checklistItem__ tarkistuslistalta __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-completeChecklist": "valmistui tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-uncompleteChecklist": "tehty ei valmistuneeksi tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-addComment": "kommentoitu kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-editComment": "muokkasi kommenttia kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ at taululla __board__",
- "act-deleteComment": "poisti kommentin kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-createBoard": "luotu taulu __board__",
- "act-createSwimlane": "loi swimlanen __swimlane__ taululle __board__",
- "act-createCard": "luotu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
- "act-createCustomField": "loi mukautetun kentän __customField__ taululla __board__",
- "act-deleteCustomField": "poisti mukautetun kentän __customField__ taululla __board__",
- "act-setCustomField": "muokkasi mukautettua kenttää __customField__: __customFieldValue__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-createList": "lisätty lista __list__ taululle __board__",
- "act-addBoardMember": "lisätty jäsen __member__ taululle __board__",
- "act-archivedBoard": "Taulu __board__ siirretty Arkistoon",
- "act-archivedCard": "Kortti __card__ listalla __list__ swimlanella __swimlane__ taululla __board__ siirretty Arkistoon",
- "act-archivedList": "Lista __list__ swimlanella __swimlane__ taululla __board__ siirretty Arkistoon",
- "act-archivedSwimlane": "Swimlane __swimlane__ taululla __board__ siirretty Arkistoon",
- "act-importBoard": "tuotu taulu __board__",
- "act-importCard": "tuotu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
- "act-importList": "tuotu lista __list__ swimlanelle __swimlane__ taululla __board__",
- "act-joinMember": "lisätty jäsen __member__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-moveCard": "siirsi kortin __card__ taululla __board__ listasta __oldList__ swimlanelta __oldSwimlane__ listalle __list__ swimlanelle __swimlane__",
- "act-moveCardToOtherBoard": "siirretty kortti __card__ listasta __oldList__ swimlanella __oldSwimlane__ taululla __oldBoard__ listalle __list__ swimlanella __swimlane__ taululla __board__",
- "act-removeBoardMember": "poistettu jäsen __member__ taululta __board__",
- "act-restoredCard": "palautettu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
- "act-unjoinMember": "poistettu jäsen __member__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Toimet",
- "activities": "Toimet",
- "activity": "Toiminta",
- "activity-added": "lisätty %s kohteeseen %s",
- "activity-archived": "%s siirretty Arkistoon",
- "activity-attached": "liitetty %s kohteeseen %s",
- "activity-created": "luotu %s",
- "activity-customfield-created": "luotu mukautettu kenttä %s",
- "activity-excluded": "poistettu %s kohteesta %s",
- "activity-imported": "tuotu %s kohteeseen %s lähteestä %s",
- "activity-imported-board": "tuotu %s lähteestä %s",
- "activity-joined": "liitytty kohteeseen %s",
- "activity-moved": "siirretty %s kohteesta %s kohteeseen %s",
- "activity-on": "kohteessa %s",
- "activity-removed": "poistettu %s kohteesta %s",
- "activity-sent": "lähetetty %s kohteeseen %s",
- "activity-unjoined": "peruttu %s liittyminen",
- "activity-subtask-added": "lisätty alitehtävä kohteeseen %s",
- "activity-checked-item": "ruksattu %s tarkistuslistassa %s / %s",
- "activity-unchecked-item": "poistettu ruksi %s tarkistuslistassa %s / %s",
- "activity-checklist-added": "lisätty tarkistuslista kortille %s",
- "activity-checklist-removed": "poistettu tarkistuslista kohteesta %s",
- "activity-checklist-completed": "valmistui tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "activity-checklist-uncompleted": "ei saatu valmiiksi tarkistuslista %s / %s",
- "activity-checklist-item-added": "lisäsi kohdan tarkistuslistaan '%s' kortilla %s",
- "activity-checklist-item-removed": "poistettu tarkistuslistan kohta '%s' / %s",
- "add": "Lisää",
- "activity-checked-item-card": "ruksattu %s tarkistuslistassa %s",
- "activity-unchecked-item-card": "poistettu ruksi %s tarkistuslistassa %s",
- "activity-checklist-completed-card": "valmistui tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
- "activity-checklist-uncompleted-card": "ei valmistunut tarkistuslista %s",
- "add-attachment": "Lisää liite",
- "add-board": "Lisää taulu",
- "add-card": "Lisää kortti",
- "add-swimlane": "Lisää Swimlane",
- "add-subtask": "Lisää alitehtävä",
- "add-checklist": "Lisää tarkistuslista",
- "add-checklist-item": "Lisää kohta tarkistuslistaan",
- "add-cover": "Lisää kansi",
- "add-label": "Lisää tunniste",
- "add-list": "Lisää lista",
- "add-members": "Lisää jäseniä",
- "added": "Lisätty",
- "addMemberPopup-title": "Jäsenet",
- "admin": "Ylläpitäjä",
- "admin-desc": "Voi nähdä ja muokata kortteja, poistaa jäseniä, ja muuttaa taulun asetuksia.",
- "admin-announcement": "Ilmoitus",
- "admin-announcement-active": "Aktiivinen järjestelmänlaajuinen ilmoitus",
- "admin-announcement-title": "Ilmoitus ylläpitäjältä",
- "all-boards": "Kaikki taulut",
- "and-n-other-card": "Ja __count__ muu kortti",
- "and-n-other-card_plural": "Ja __count__ muuta korttia",
- "apply": "Käytä",
- "app-is-offline": "Ladataan, odota. Sivun uudelleenlataus aiheuttaa tietojen menettämisen. Jos lataaminen ei toimi, tarkista että palvelin ei ole pysähtynyt.",
- "archive": "Siirrä Arkistoon",
- "archive-all": "Siirrä kaikki Arkistoon",
- "archive-board": "Siirrä taulu Arkistoon",
- "archive-card": "Siirrä kortti Arkistoon",
- "archive-list": "Siirrä lista Arkistoon",
- "archive-swimlane": "Siirrä Swimlane Arkistoon",
- "archive-selection": "Siirrä valinta Arkistoon",
- "archiveBoardPopup-title": "Siirrä taulu Arkistoon?",
- "archived-items": "Arkisto",
- "archived-boards": "Taulut Arkistossa",
- "restore-board": "Palauta taulu",
- "no-archived-boards": "Ei tauluja Arkistossa.",
- "archives": "Arkisto",
- "template": "Malli",
- "templates": "Mallit",
- "assign-member": "Valitse jäsen",
- "attached": "liitetty",
- "attachment": "Liitetiedosto",
- "attachment-delete-pop": "Liitetiedoston poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
- "attachmentDeletePopup-title": "Poista liitetiedosto?",
- "attachments": "Liitetiedostot",
- "auto-watch": "Automaattisesti seuraa tauluja kun ne on luotu",
- "avatar-too-big": "Profiilikuva on liian suuri (enintään 70 kt)",
- "back": "Takaisin",
- "board-change-color": "Muokkaa väriä",
- "board-nb-stars": "%s tähteä",
- "board-not-found": "Taulua ei löytynyt",
- "board-private-info": "Tämä taulu tulee olemaan <strong>yksityinen</strong>.",
- "board-public-info": "Tämä taulu tulee olemaan <strong>julkinen</strong>.",
- "boardChangeColorPopup-title": "Muokkaa taulun taustaa",
- "boardChangeTitlePopup-title": "Nimeä taulu uudelleen",
- "boardChangeVisibilityPopup-title": "Muokkaa näkyvyyttä",
- "boardChangeWatchPopup-title": "Muokkaa seuraamista",
- "boardMenuPopup-title": "Tauluasetukset",
- "boards": "Taulut",
- "board-view": "Taulunäkymä",
- "board-view-cal": "Kalenteri",
- "board-view-swimlanes": "Swimlanet",
- "board-view-lists": "Listat",
- "bucket-example": "Kuten “Laatikko lista” esimerkiksi",
- "cancel": "Peruuta",
- "card-archived": "Tämä kortti on siirretty Arkistoon.",
- "board-archived": "Tämä taulu on siirretty Arkistoon.",
- "card-comments-title": "Tässä kortissa on %s kommenttia.",
- "card-delete-notice": "Poistaminen on lopullista. Menetät kaikki tähän korttiin liitetyt toimet.",
- "card-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä, etkä pysty avata korttia uudelleen. Tätä ei voi peruuttaa.",
- "card-delete-suggest-archive": "Voit siirtää kortin Arkistoon poistaaksesi sen taululta ja säilyttääksesi toimintalokin.",
- "card-due": "Erääntyy",
- "card-due-on": "Erääntyy",
- "card-spent": "Käytetty aika",
- "card-edit-attachments": "Muokkaa liitetiedostoja",
- "card-edit-custom-fields": "Muokkaa mukautettuja kenttiä",
- "card-edit-labels": "Muokkaa tunnisteita",
- "card-edit-members": "Muokkaa jäseniä",
- "card-labels-title": "Muokkaa kortin tunnisteita.",
- "card-members-title": "Lisää tai poista taulun jäseniä tältä kortilta.",
- "card-start": "Alkaa",
- "card-start-on": "Alkaa",
- "cardAttachmentsPopup-title": "Liitä mistä",
- "cardCustomField-datePopup-title": "Muokkaa päivää",
- "cardCustomFieldsPopup-title": "Muokkaa mukautettuja kenttiä",
- "cardDeletePopup-title": "Poista kortti?",
- "cardDetailsActionsPopup-title": "Korttitoimet",
- "cardLabelsPopup-title": "Tunnisteet",
- "cardMembersPopup-title": "Jäsenet",
- "cardMorePopup-title": "Lisää",
- "cardTemplatePopup-title": "Luo malli",
- "cards": "Kortit",
- "cards-count": "korttia",
- "casSignIn": "CAS-kirjautuminen",
- "cardType-card": "Kortti",
- "cardType-linkedCard": "Linkitetty kortti",
- "cardType-linkedBoard": "Linkitetty taulu",
- "change": "Muokkaa",
- "change-avatar": "Muokkaa profiilikuvaa",
- "change-password": "Vaihda salasana",
- "change-permissions": "Muokkaa oikeuksia",
- "change-settings": "Muokkaa asetuksia",
- "changeAvatarPopup-title": "Muokkaa profiilikuvaa",
- "changeLanguagePopup-title": "Vaihda kieltä",
- "changePasswordPopup-title": "Vaihda salasana",
- "changePermissionsPopup-title": "Muokkaa oikeuksia",
- "changeSettingsPopup-title": "Muokkaa asetuksia",
- "subtasks": "Alitehtävät",
- "checklists": "Tarkistuslistat",
- "click-to-star": "Klikkaa merkataksesi tämä taulu tähdellä.",
- "click-to-unstar": "Klikkaa poistaaksesi tähtimerkintä taululta.",
- "clipboard": "Leikepöytä tai raahaa ja pudota",
- "close": "Sulje",
- "close-board": "Sulje taulu",
- "close-board-pop": "Voit palauttaa taulun klikkaamalla “Arkisto”-painiketta taululistan yläpalkista.",
- "color-black": "musta",
- "color-blue": "sininen",
- "color-crimson": "karmiininpunainen",
- "color-darkgreen": "tummanvihreä",
- "color-gold": "kulta",
- "color-gray": "harmaa",
- "color-green": "vihreä",
- "color-indigo": "syvän sininen",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "vaaleanpunainen ruusu",
- "color-navy": "laivastonsininen",
- "color-orange": "oranssi",
- "color-paleturquoise": "vaalean turkoosi",
- "color-peachpuff": "persikanpunainen",
- "color-pink": "vaaleanpunainen",
- "color-plum": "luumunvärinen",
- "color-purple": "violetti",
- "color-red": "punainen",
- "color-saddlebrown": "satulanruskea",
- "color-silver": "hopea",
- "color-sky": "taivas",
- "color-slateblue": "liuskekivi sininen",
- "color-white": "valkoinen",
- "color-yellow": "keltainen",
- "unset-color": "Peru väri",
- "comment": "Kommentti",
- "comment-placeholder": "Kirjoita kommentti",
- "comment-only": "Vain kommentointi",
- "comment-only-desc": "Voi vain kommentoida kortteja",
- "no-comments": "Ei kommentteja",
- "no-comments-desc": "Ei voi nähdä kommentteja ja toimintaa.",
- "computer": "Tietokone",
- "confirm-subtask-delete-dialog": "Haluatko varmasti poistaa alitehtävän?",
- "confirm-checklist-delete-dialog": "Haluatko varmasti poistaa tarkistuslistan?",
- "copy-card-link-to-clipboard": "Kopioi kortin linkki leikepöydälle",
- "linkCardPopup-title": "Linkitä kortti",
- "searchElementPopup-title": "Etsi",
- "copyCardPopup-title": "Kopioi kortti",
- "copyChecklistToManyCardsPopup-title": "Kopioi tarkistuslistan malli monille korteille",
- "copyChecklistToManyCardsPopup-instructions": "Kohde korttien otsikot ja kuvaukset JSON-muodossa",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Ensimmäisen kortin otsikko\", \"description\":\"Ensimmäisen kortin kuvaus\"}, {\"title\":\"Toisen kortin otsikko\",\"description\":\"Toisen kortin kuvaus\"},{\"title\":\"Viimeisen kortin otsikko\",\"description\":\"Viimeisen kortin kuvaus\"} ]",
- "create": "Luo",
- "createBoardPopup-title": "Luo taulu",
- "chooseBoardSourcePopup-title": "Tuo taulu",
- "createLabelPopup-title": "Luo tunniste",
- "createCustomField": "Luo kenttä",
- "createCustomFieldPopup-title": "Luo kenttä",
- "current": "nykyinen",
- "custom-field-delete-pop": "Tätä ei voi peruuttaa. Tämä poistaa tämän mukautetun kentän kaikista korteista ja poistaa sen historian.",
- "custom-field-checkbox": "Valintaruutu",
- "custom-field-date": "Päivämäärä",
- "custom-field-dropdown": "Pudotusvalikko",
- "custom-field-dropdown-none": "(ei mitään)",
- "custom-field-dropdown-options": "Listan vaihtoehdot",
- "custom-field-dropdown-options-placeholder": "Paina Enter lisätäksesi lisää vaihtoehtoja",
- "custom-field-dropdown-unknown": "(tuntematon)",
- "custom-field-number": "Numero",
- "custom-field-text": "Teksti",
- "custom-fields": "Mukautetut kentät",
- "date": "Päivämäärä",
- "decline": "Kieltäydy",
- "default-avatar": "Oletusprofiilikuva",
- "delete": "Poista",
- "deleteCustomFieldPopup-title": "Poista mukautettu kenttä?",
- "deleteLabelPopup-title": "Poista tunniste?",
- "description": "Kuvaus",
- "disambiguateMultiLabelPopup-title": "Yksikäsitteistä tunnistetoiminta",
- "disambiguateMultiMemberPopup-title": "Yksikäsitteistä jäsentoiminta",
- "discard": "Hylkää",
- "done": "Valmis",
- "download": "Lataa",
- "edit": "Muokkaa",
- "edit-avatar": "Muokkaa profiilikuvaa",
- "edit-profile": "Muokkaa profiilia",
- "edit-wip-limit": "Muokkaa WIP-rajaa",
- "soft-wip-limit": "Pehmeä WIP-raja",
- "editCardStartDatePopup-title": "Muokkaa aloituspäivää",
- "editCardDueDatePopup-title": "Muokkaa eräpäivää",
- "editCustomFieldPopup-title": "Muokkaa kenttää",
- "editCardSpentTimePopup-title": "Muuta käytettyä aikaa",
- "editLabelPopup-title": "Muokkaa tunnistetta",
- "editNotificationPopup-title": "Muokkaa ilmoituksia",
- "editProfilePopup-title": "Muokkaa profiilia",
- "email": "Sähköposti",
- "email-enrollAccount-subject": "Sinulle on luotu tili palveluun __siteName__",
- "email-enrollAccount-text": "Hei __user__,\n\nKlikkaa alla olevaa linkkiä aloittaaksesi palvelun käytön.\n\n__url__\n\nKiitos.",
- "email-fail": "Sähköpostin lähettäminen epäonnistui",
- "email-fail-text": "Virhe yrittäessä lähettää sähköpostia",
- "email-invalid": "Virheellinen sähköposti",
- "email-invite": "Kutsu sähköpostilla",
- "email-invite-subject": "__inviter__ lähetti sinulle kutsun",
- "email-invite-text": "Hyvä __user__,\n\n__inviter__ kutsuu sinut liittymään taululle \"__board__\" yhteistyötä varten.\n\nOle hyvä ja seuraa alla olevaa linkkiä:\n\n__url__\n\nKiitos.",
- "email-resetPassword-subject": "Nollaa salasanasi palvelussa __siteName__",
- "email-resetPassword-text": "Hei __user__,\n\nNollataksesi salasanasi, klikkaa alla olevaa linkkiä.\n\n__url__\n\nKiitos.",
- "email-sent": "Sähköposti lähetetty",
- "email-verifyEmail-subject": "Varmista sähköpostiosoitteesi osoitteessa __url__",
- "email-verifyEmail-text": "Hei __user__,\n\nvahvistaaksesi sähköpostiosoitteesi, klikkaa alla olevaa linkkiä.\n\n__url__\n\nKiitos.",
- "enable-wip-limit": "Ota käyttöön WIP-raja",
- "error-board-doesNotExist": "Tätä taulua ei ole olemassa",
- "error-board-notAdmin": "Tehdäksesi tämän sinun täytyy olla tämän taulun ylläpitäjä",
- "error-board-notAMember": "Tehdäksesi tämän sinun täytyy olla tämän taulun jäsen",
- "error-json-malformed": "Tekstisi ei ole kelvollisessa JSON-muodossa",
- "error-json-schema": "JSON-tietosi ei sisällä oikeaa tietoa oikeassa muodossa",
- "error-list-doesNotExist": "Tätä listaa ei ole olemassa",
- "error-user-doesNotExist": "Tätä käyttäjää ei ole olemassa",
- "error-user-notAllowSelf": "Et voi kutsua itseäsi",
- "error-user-notCreated": "Tätä käyttäjää ei ole luotu",
- "error-username-taken": "Tämä käyttäjätunnus on jo käytössä",
- "error-email-taken": "Sähköpostiosoite on jo käytössä",
- "export-board": "Vie taulu",
- "filter": "Suodata",
- "filter-cards": "Suodata kortit",
- "filter-clear": "Poista suodatin",
- "filter-no-label": "Ei tunnistetta",
- "filter-no-member": "Ei jäseniä",
- "filter-no-custom-fields": "Ei mukautettuja kenttiä",
- "filter-on": "Suodatus on päällä",
- "filter-on-desc": "Suodatat kortteja tällä taululla. Klikkaa tästä muokataksesi suodatinta.",
- "filter-to-selection": "Suodata valintaan",
- "advanced-filter-label": "Edistynyt suodatin",
- "advanced-filter-description": "Edistynyt suodatin mahdollistaa merkkijonon, joka sisältää seuraavat operaattorit: == != <= >= && || ( ) Operaattorien välissä käytetään välilyöntiä. Voit suodattaa kaikki mukautetut kentät kirjoittamalla niiden nimet ja arvot. Esimerkiksi: Field1 == Value1. Huom: Jos kentillä tai arvoilla on välilyöntejä, sinun on sijoitettava ne yksittäisiin lainausmerkkeihin. Esimerkki: 'Kenttä 1' == 'Arvo 1'. Voit hypätä yksittäisen kontrollimerkkien (' \\/) yli käyttämällä \\. Esimerkki: Field1 = I\\'m. Voit myös yhdistää useita ehtoja. Esimerkiksi: F1 == V1 || F1 == V2. Yleensä kaikki operaattorit tulkitaan vasemmalta oikealle. Voit muuttaa järjestystä asettamalla sulkuja. Esimerkiksi: F1 == V1 && (F2 == V2 || F2 == V3). Voit myös etsiä tekstikentistä regexillä: F1 == /Tes.*/i",
- "fullname": "Koko nimi",
- "header-logo-title": "Palaa taulut sivullesi.",
- "hide-system-messages": "Piilota järjestelmäviestit",
- "headerBarCreateBoardPopup-title": "Luo taulu",
- "home": "Koti",
- "import": "Tuo",
- "link": "Linkitä",
- "import-board": "tuo taulu",
- "import-board-c": "Tuo taulu",
- "import-board-title-trello": "Tuo taulu Trellosta",
- "import-board-title-wekan": "Tuo taulu edellisestä viennistä",
- "import-sandstorm-backup-warning": "Älä poista tietoja joita toit alkuperäisestä viennistä tai Trellosta ennen kuin tarkistat onnistuuko sulkea ja avata tämä jyvä uudelleen, vai näkyykö Board not found -virhe, joka tarkoittaa tietojen häviämistä.",
- "import-sandstorm-warning": "Tuotu taulu poistaa kaikki olemassa olevan taulun tiedot ja korvaa ne tuodulla taululla.",
- "from-trello": "Trellosta",
- "from-wekan": "Edellisestä viennistä",
- "import-board-instruction-trello": "Mene Trello-taulullasi 'Menu', sitten 'More', 'Print and Export', 'Export JSON', ja kopioi tuloksena saamasi teksti",
- "import-board-instruction-wekan": "Taulullasi, mene 'Valikko', sitten 'Vie taulu', ja kopioi teksti ladatusta tiedostosta.",
- "import-board-instruction-about-errors": "Jos virheitä tulee taulua tuotaessa, joskus tuonti silti toimii, ja taulu on Kaikki taulut sivulla.",
- "import-json-placeholder": "Liitä kelvollinen JSON-tietosi tähän",
- "import-map-members": "Vastaavat jäsenet",
- "import-members-map": "Tuomallasi taululla on muutamia jäseniä. Ole hyvä ja valitse tuomiasi jäseniä vastaavat käyttäjäsi",
- "import-show-user-mapping": "Tarkasta vastaavat jäsenet",
- "import-user-select": "Valitse olemassaoleva käyttäjä jota haluat käyttää tänä käyttäjänä",
- "importMapMembersAddPopup-title": "Valitse käyttäjä",
- "info": "Versio",
- "initials": "Nimikirjaimet",
- "invalid-date": "Virheellinen päivämäärä",
- "invalid-time": "Virheellinen aika",
- "invalid-user": "Virheellinen käyttäjä",
- "joined": "liittyi",
- "just-invited": "Sinut on juuri kutsuttu tälle taululle",
- "keyboard-shortcuts": "Pikanäppäimet",
- "label-create": "Luo tunniste",
- "label-default": "%s tunniste (oletus)",
- "label-delete-pop": "Tätä ei voi peruuttaa. Tämä poistaa tämän tunnisteen kaikista korteista ja tuhoaa sen historian.",
- "labels": "Tunnisteet",
- "language": "Kieli",
- "last-admin-desc": "Et voi vaihtaa rooleja koska täytyy olla olemassa ainakin yksi ylläpitäjä.",
- "leave-board": "Jää pois taululta",
- "leave-board-pop": "Haluatko varmasti poistua taululta __boardTitle__? Sinut poistetaan kaikista tämän taulun korteista.",
- "leaveBoardPopup-title": "Poistu taululta?",
- "link-card": "Linkki tähän korttiin",
- "list-archive-cards": "Siirrä kaikki tämän listan kortit Arkistoon",
- "list-archive-cards-pop": "Tämä poistaa kaikki tämän listan kortit taululta. Nähdäksesi Arkistossa olevat kortit ja tuodaksesi ne takaisin taululle, klikkaa “Valikko” > “Arkisto”.",
- "list-move-cards": "Siirrä kaikki kortit tässä listassa",
- "list-select-cards": "Valitse kaikki kortit tässä listassa",
- "set-color-list": "Aseta väri",
- "listActionPopup-title": "Listatoimet",
- "swimlaneActionPopup-title": "Swimlane-toimet",
- "swimlaneAddPopup-title": "Lisää Swimlane alle",
- "listImportCardPopup-title": "Tuo Trello-kortti",
- "listMorePopup-title": "Lisää",
- "link-list": "Linkki tähän listaan",
- "list-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä ja listan poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
- "list-delete-suggest-archive": "Voit siirtää listan Arkistoon poistaaksesi sen taululta ja säilyttääksesi toimintalokin.",
- "lists": "Listat",
- "swimlanes": "Swimlanet",
- "log-out": "Kirjaudu ulos",
- "log-in": "Kirjaudu sisään",
- "loginPopup-title": "Kirjaudu sisään",
- "memberMenuPopup-title": "Jäsenasetukset",
- "members": "Jäsenet",
- "menu": "Valikko",
- "move-selection": "Siirrä valinta",
- "moveCardPopup-title": "Siirrä kortti",
- "moveCardToBottom-title": "Siirrä alimmaiseksi",
- "moveCardToTop-title": "Siirrä ylimmäiseksi",
- "moveSelectionPopup-title": "Siirrä valinta",
- "multi-selection": "Monivalinta",
- "multi-selection-on": "Monivalinta on päällä",
- "muted": "Vaimennettu",
- "muted-info": "Et saa koskaan ilmoituksia tämän taulun muutoksista",
- "my-boards": "Tauluni",
- "name": "Nimi",
- "no-archived-cards": "Ei kortteja Arkistossa.",
- "no-archived-lists": "Ei listoja Arkistossa.",
- "no-archived-swimlanes": "Ei Swimlaneja Arkistossa.",
- "no-results": "Ei tuloksia",
- "normal": "Normaali",
- "normal-desc": "Voi nähdä ja muokata kortteja. Ei voi muokata asetuksia.",
- "not-accepted-yet": "Kutsua ei ole hyväksytty vielä",
- "notify-participate": "Vastaanota päivityksiä kaikilta korteilta jotka olet tehnyt tai joihin osallistut.",
- "notify-watch": "Vastaanota päivityksiä kaikilta tauluilta, listoilta tai korteilta joita seuraat.",
- "optional": "valinnainen",
- "or": "tai",
- "page-maybe-private": "Tämä sivu voi olla yksityinen. Saatat nähdä sen <a href='%s'>kirjautumalla sisään</a>.",
- "page-not-found": "Sivua ei löytynyt.",
- "password": "Salasana",
- "paste-or-dragdrop": "liittääksesi, tai vedä & pudota kuvatiedosto siihen (vain kuva)",
- "participating": "Osallistutaan",
- "preview": "Esikatsele",
- "previewAttachedImagePopup-title": "Esikatsele",
- "previewClipboardImagePopup-title": "Esikatsele",
- "private": "Yksityinen",
- "private-desc": "Tämä taulu on yksityinen. Vain taululle lisätyt henkilöt voivat nähdä ja muokata sitä.",
- "profile": "Profiili",
- "public": "Julkinen",
- "public-desc": "Tämä taulu on julkinen. Se näkyy kenelle tahansa jolla on linkki ja näkyy myös hakukoneissa kuten Google. Vain taululle lisätyt henkilöt voivat muokata sitä.",
- "quick-access-description": "Merkkaa taulu tähdellä lisätäksesi pikavalinta tähän palkkiin.",
- "remove-cover": "Poista kansi",
- "remove-from-board": "Poista taululta",
- "remove-label": "Poista tunniste",
- "listDeletePopup-title": "Poista lista?",
- "remove-member": "Poista jäsen",
- "remove-member-from-card": "Poista kortilta",
- "remove-member-pop": "Poista __name__ (__username__) taululta __boardTitle__? Jäsen poistetaan kaikilta taulun korteilta. Heille lähetetään ilmoitus.",
- "removeMemberPopup-title": "Poista jäsen?",
- "rename": "Nimeä uudelleen",
- "rename-board": "Nimeä taulu uudelleen",
- "restore": "Palauta",
- "save": "Tallenna",
- "search": "Etsi",
- "rules": "Säännöt",
- "search-cards": "Etsi korttien otsikoista ja kuvauksista tällä taululla",
- "search-example": "Etsittävä teksti?",
- "select-color": "Valitse väri",
- "set-wip-limit-value": "Aseta tämän listan tehtävien enimmäismäärä",
- "setWipLimitPopup-title": "Aseta WIP-raja",
- "shortcut-assign-self": "Valitse itsesi nykyiselle kortille",
- "shortcut-autocomplete-emoji": "Automaattinen täydennys emojille",
- "shortcut-autocomplete-members": "Automaattinen täydennys jäsenille",
- "shortcut-clear-filters": "Poista kaikki suodattimet",
- "shortcut-close-dialog": "Sulje valintaikkuna",
- "shortcut-filter-my-cards": "Suodata korttini",
- "shortcut-show-shortcuts": "Tuo esiin tämä pikavalintalista",
- "shortcut-toggle-filterbar": "Muokkaa suodatussivupalkin näkyvyyttä",
- "shortcut-toggle-sidebar": "Muokkaa taulusivupalkin näkyvyyttä",
- "show-cards-minimum-count": "Näytä korttien lukumäärä jos lista sisältää enemmän kuin",
- "sidebar-open": "Avaa sivupalkki",
- "sidebar-close": "Sulje sivupalkki",
- "signupPopup-title": "Luo tili",
- "star-board-title": "Klikkaa merkataksesi taulu tähdellä. Se tulee näkymään ylimpänä taululistallasi.",
- "starred-boards": "Tähdellä merkatut taulut",
- "starred-boards-description": "Tähdellä merkatut taulut näkyvät ylimpänä taululistallasi.",
- "subscribe": "Tilaa",
- "team": "Tiimi",
- "this-board": "tämä taulu",
- "this-card": "tämä kortti",
- "spent-time-hours": "Käytetty aika (tuntia)",
- "overtime-hours": "Ylityö (tuntia)",
- "overtime": "Ylityö",
- "has-overtime-cards": "Sisältää ylityökortteja",
- "has-spenttime-cards": "Sisältää käytetty aika -kortteja",
- "time": "Aika",
- "title": "Otsikko",
- "tracking": "Ilmoitukset",
- "tracking-info": "Sinulle ilmoitetaan muutoksista korteissa joihin olet osallistunut luojana tai jäsenenä.",
- "type": "Tyyppi",
- "unassign-member": "Peru jäsenvalinta",
- "unsaved-description": "Sinulla on tallentamaton kuvaus.",
- "unwatch": "Lopeta seuraaminen",
- "upload": "Lähetä",
- "upload-avatar": "Lähetä profiilikuva",
- "uploaded-avatar": "Profiilikuva lähetetty",
- "username": "Käyttäjätunnus",
- "view-it": "Näytä se",
- "warn-list-archived": "varoitus: tämä kortti on Arkistossa olevassa listassa",
- "watch": "Seuraa",
- "watching": "Seurataan",
- "watching-info": "Sinulle ilmoitetaan tämän taulun muutoksista",
- "welcome-board": "Tervetuloa-taulu",
- "welcome-swimlane": "Merkkipaalu 1",
- "welcome-list1": "Perusasiat",
- "welcome-list2": "Edistynyt",
- "card-templates-swimlane": "Korttimallit",
- "list-templates-swimlane": "Listamallit",
- "board-templates-swimlane": "Taulumallit",
- "what-to-do": "Mitä haluat tehdä?",
- "wipLimitErrorPopup-title": "Virheellinen WIP-raja",
- "wipLimitErrorPopup-dialog-pt1": "Tässä listassa olevien tehtävien määrä on korkeampi kuin asettamasi WIP-raja.",
- "wipLimitErrorPopup-dialog-pt2": "Siirrä joitain tehtäviä pois tästä listasta tai määritä korkeampi WIP-raja.",
- "admin-panel": "Hallintapaneeli",
- "settings": "Asetukset",
- "people": "Ihmiset",
- "registration": "Rekisteröinti",
- "disable-self-registration": "Poista käytöstä itserekisteröityminen",
- "invite": "Kutsu",
- "invite-people": "Kutsu ihmisiä",
- "to-boards": "Taulu(i)lle",
- "email-addresses": "Sähköpostiosoite",
- "smtp-host-description": "SMTP-palvelimen osoite jolla sähköpostit lähetetään.",
- "smtp-port-description": "STMP-palvelimesi käyttämä lähteville sähköposteille tarkoitettu portti.",
- "smtp-tls-description": "Ota käyttöön TLS-tuki SMTP-palvelimelle",
- "smtp-host": "SMTP-isäntä",
- "smtp-port": "SMTP-portti",
- "smtp-username": "Käyttäjätunnus",
- "smtp-password": "Salasana",
- "smtp-tls": "TLS-tuki",
- "send-from": "Lähettäjä",
- "send-smtp-test": "Lähetä testisähköposti itsellesi",
- "invitation-code": "Kutsukoodi",
- "email-invite-register-subject": "__inviter__ lähetti sinulle kutsun",
- "email-invite-register-text": "Hei __user__,\n\n__inviter__ kutsuu sinut mukaan kanban-taulun käyttöön.\n\nOle hyvä ja seuraa alla olevaa linkkiä:\n__url__\n\nKutsukoodisi on: __icode__\n\nKiitos.",
- "email-smtp-test-subject": "SMTP-testisähköposti",
- "email-smtp-test-text": "Olet onnistuneesti lähettänyt sähköpostin",
- "error-invitation-code-not-exist": "Kutsukoodia ei ole olemassa",
- "error-notAuthorized": "Sinulla ei ole oikeutta tarkastella tätä sivua.",
- "outgoing-webhooks": "Lähtevät Webkoukut",
- "outgoingWebhooksPopup-title": "Lähtevät Webkoukut",
- "boardCardTitlePopup-title": "Kortin otsikkosuodatin",
- "new-outgoing-webhook": "Uusi lähtevä Webkoukku",
- "no-name": "(Tuntematon)",
- "Node_version": "Node-versio",
- "OS_Arch": "Käyttöjärjestelmän arkkitehtuuri",
- "OS_Cpus": "Käyttöjärjestelmän CPU-määrä",
- "OS_Freemem": "Käyttöjärjestelmän vapaa muisti",
- "OS_Loadavg": "Käyttöjärjestelmän kuorman keskiarvo",
- "OS_Platform": "Käyttöjärjestelmäalusta",
- "OS_Release": "Käyttöjärjestelmän julkaisu",
- "OS_Totalmem": "Käyttöjärjestelmän muistin kokonaismäärä",
- "OS_Type": "Käyttöjärjestelmän tyyppi",
- "OS_Uptime": "Käyttöjärjestelmä ollut käynnissä",
- "days": "päivää",
- "hours": "tuntia",
- "minutes": "minuuttia",
- "seconds": "sekuntia",
- "show-field-on-card": "Näytä tämä kenttä kortilla",
- "automatically-field-on-card": "Luo kenttä automaattisesti kaikille korteille",
- "showLabel-field-on-card": "Näytä kentän tunniste minikortilla",
- "yes": "Kyllä",
- "no": "Ei",
- "accounts": "Tilit",
- "accounts-allowEmailChange": "Salli sähköpostiosoitteen muuttaminen",
- "accounts-allowUserNameChange": "Salli käyttäjätunnuksen muuttaminen",
- "createdAt": "Luotu",
- "verified": "Varmistettu",
- "active": "Aktiivinen",
- "card-received": "Vastaanotettu",
- "card-received-on": "Vastaanotettu",
- "card-end": "Loppuu",
- "card-end-on": "Loppuu",
- "editCardReceivedDatePopup-title": "Vaihda vastaanottamispäivää",
- "editCardEndDatePopup-title": "Vaihda loppumispäivää",
- "setCardColorPopup-title": "Aseta väri",
- "setCardActionsColorPopup-title": "Valitse väri",
- "setSwimlaneColorPopup-title": "Valitse väri",
- "setListColorPopup-title": "Valitse väri",
- "assigned-by": "Tehtävänantaja",
- "requested-by": "Pyytäjä",
- "board-delete-notice": "Poistaminen on lopullista. Menetät kaikki listat, kortit ja toimet tällä taululla.",
- "delete-board-confirm-popup": "Kaikki listat, kortit, tunnisteet ja toimet poistetaan ja et pysty palauttamaan taulun sisältöä. Tätä ei voi peruuttaa.",
- "boardDeletePopup-title": "Poista taulu?",
- "delete-board": "Poista taulu",
- "default-subtasks-board": "Alitehtävät taululle __board__",
- "default": "Oletus",
- "queue": "Jono",
- "subtask-settings": "Alitehtävä-asetukset",
- "boardSubtaskSettingsPopup-title": "Taulualitehtävien asetukset",
- "show-subtasks-field": "Korteilla voi olla alitehtäviä",
- "deposit-subtasks-board": "Talleta alitehtävät tälle taululle:",
- "deposit-subtasks-list": "Laskeutumislista alatehtäville tallennettu tänne:",
- "show-parent-in-minicard": "Näytä ylätehtävä minikortilla:",
- "prefix-with-full-path": "Etuliite koko polulla",
- "prefix-with-parent": "Etuliite ylätehtävällä",
- "subtext-with-full-path": "Aliteksti koko polulla",
- "subtext-with-parent": "Aliteksti ylätehtävällä",
- "change-card-parent": "Muuta kortin ylätehtävää",
- "parent-card": "Ylätehtäväkortti",
- "source-board": "Lähdetaulu",
- "no-parent": "Älä näytä ylätehtävää",
- "activity-added-label": "lisätty tunniste '%s' kohteeseen %s",
- "activity-removed-label": "poistettu tunniste '%s' kohteesta %s",
- "activity-delete-attach": "poistettu liitetiedosto kohteesta %s",
- "activity-added-label-card": "lisätty tunniste '%s'",
- "activity-removed-label-card": "poistettu tunniste '%s'",
- "activity-delete-attach-card": "poistettu liitetiedosto",
- "activity-set-customfield": "asetettu mukautettu kentän '%s' sisällöksi '%s' kortilla %s",
- "activity-unset-customfield": "poistettu mukautettu kenttä '%s' kortilla %s",
- "r-rule": "Sääntö",
- "r-add-trigger": "Lisää liipaisin",
- "r-add-action": "Lisää toimi",
- "r-board-rules": "Taulusäännöt",
- "r-add-rule": "Lisää sääntö",
- "r-view-rule": "Näytä sääntö",
- "r-delete-rule": "Poista sääntö",
- "r-new-rule-name": "Uuden säännön otsikko",
- "r-no-rules": "Ei sääntöjä",
- "r-when-a-card": "Kun kortti",
- "r-is": "on",
- "r-is-moved": "on siirretty",
- "r-added-to": "lisätty kohteeseen",
- "r-removed-from": "Poistettu kohteesta",
- "r-the-board": "taulu",
- "r-list": "lista",
- "set-filter": "Aseta suodatin",
- "r-moved-to": "Siirretty kohteeseen",
- "r-moved-from": "Siirretty kohteesta",
- "r-archived": "Siirretty Arkistoon",
- "r-unarchived": "Palautettu Arkistosta",
- "r-a-card": "kortti",
- "r-when-a-label-is": "Kun tunniste on",
- "r-when-the-label": "Kun tunniste on",
- "r-list-name": "listan nimi",
- "r-when-a-member": "Kun jäsen on",
- "r-when-the-member": "Kun käyttäjä",
- "r-name": "nimi",
- "r-when-a-attach": "Kun liitetiedosto",
- "r-when-a-checklist": "Kun tarkistuslista on",
- "r-when-the-checklist": "Kun tarkistuslista",
- "r-completed": "Valmistunut",
- "r-made-incomplete": "Tehty ei valmistuneeksi",
- "r-when-a-item": "Kun tarkistuslistan kohta on",
- "r-when-the-item": "Kun tarkistuslistan kohta",
- "r-checked": "Ruksattu",
- "r-unchecked": "Poistettu ruksi",
- "r-move-card-to": "Siirrä kortti kohteeseen",
- "r-top-of": "Ylimmäiseksi",
- "r-bottom-of": "Alimmaiseksi",
- "r-its-list": "sen lista",
- "r-archive": "Siirrä Arkistoon",
- "r-unarchive": "Palauta Arkistosta",
- "r-card": "kortti",
- "r-add": "Lisää",
- "r-remove": "Poista",
- "r-label": "tunniste",
- "r-member": "jäsen",
- "r-remove-all": "Poista kaikki jäsenet kortilta",
- "r-set-color": "Aseta väriksi",
- "r-checklist": "tarkistuslista",
- "r-check-all": "Ruksaa kaikki",
- "r-uncheck-all": "Poista ruksi kaikista",
- "r-items-check": "kohtaa tarkistuslistassa",
- "r-check": "Ruksaa",
- "r-uncheck": "Poista ruksi",
- "r-item": "kohta",
- "r-of-checklist": "tarkistuslistasta",
- "r-send-email": "Lähetä sähköposti",
- "r-to": "vastaanottajalle",
- "r-subject": "aihe",
- "r-rule-details": "Säännön yksityiskohdat",
- "r-d-move-to-top-gen": "Siirrä kortti listansa alkuun",
- "r-d-move-to-top-spec": "Siirrä kortti listan alkuun",
- "r-d-move-to-bottom-gen": "Siirrä kortti listansa loppuun",
- "r-d-move-to-bottom-spec": "Siirrä kortti listan loppuun",
- "r-d-send-email": "Lähetä sähköposti",
- "r-d-send-email-to": "vastaanottajalle",
- "r-d-send-email-subject": "aihe",
- "r-d-send-email-message": "viesti",
- "r-d-archive": "Siirrä kortti Arkistoon",
- "r-d-unarchive": "Palauta kortti Arkistosta",
- "r-d-add-label": "Lisää tunniste",
- "r-d-remove-label": "Poista tunniste",
- "r-create-card": "Luo uusi kortti",
- "r-in-list": "listassa",
- "r-in-swimlane": "swimlanessa",
- "r-d-add-member": "Lisää jäsen",
- "r-d-remove-member": "Poista jäsen",
- "r-d-remove-all-member": "Poista kaikki jäsenet",
- "r-d-check-all": "Ruksaa kaikki listan kohdat",
- "r-d-uncheck-all": "Poista ruksi kaikista listan kohdista",
- "r-d-check-one": "Ruksaa kohta",
- "r-d-uncheck-one": "Poista ruksi kohdasta",
- "r-d-check-of-list": "tarkistuslistasta",
- "r-d-add-checklist": "Lisää tarkistuslista",
- "r-d-remove-checklist": "Poista tarkistuslista",
- "r-by": "mennessä",
- "r-add-checklist": "Lisää tarkistuslista",
- "r-with-items": "kohteiden kanssa",
- "r-items-list": "kohde1,kohde2,kohde3",
- "r-add-swimlane": "Lisää swimlane",
- "r-swimlane-name": "swimlanen nimi",
- "r-board-note": "Huom: jätä kenttä tyhjäksi täsmätäksesi jokaiseen mahdolliseen arvoon.",
- "r-checklist-note": "Huom: tarkistuslistan kohteet täytyy kirjoittaa pilkulla eroteltuina.",
- "r-when-a-card-is-moved": "Kun kortti on siirretty toiseen listaan",
- "r-set": "Aseta",
- "r-update": "Päivitä",
- "r-datefield": "päivämäärä kenttä",
- "r-df-start-at": "alkaa",
- "r-df-due-at": "erääntyy",
- "r-df-end-at": "loppuu",
- "r-df-received-at": "vastaanotettu",
- "r-to-current-datetime": "nykyiseen päivään/aikaan",
- "r-remove-value-from": "Poista arvo kohteesta",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Kirjautumistapa",
- "authentication-type": "Kirjautumistyyppi",
- "custom-product-name": "Mukautettu tuotenimi",
- "layout": "Ulkoasu",
- "hide-logo": "Piilota Logo",
- "add-custom-html-after-body-start": "Lisää HTML <body> alun jälkeen",
- "add-custom-html-before-body-end": "Lisä HTML ennen </body> loppua",
- "error-undefined": "Jotain meni pieleen",
- "error-ldap-login": "Virhe tapahtui yrittäessä kirjautua sisään",
- "display-authentication-method": "Näytä kirjautumistapa",
- "default-authentication-method": "Oletuskirjautumistapa",
- "duplicate-board": "Tee kaksoiskappale taulusta",
- "people-number": "Ihmisten määrä on:",
- "swimlaneDeletePopup-title": "Poista Swimlane?",
- "swimlane-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä ja swimlanen poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
- "restore-all": "Palauta kaikki",
- "delete-all": "Poista kaikki",
- "loading": "Ladataan, odota hetki.",
- "previous_as": "viimeksi oli",
- "act-a-dueAt": "muokattu eräätymisaikaa \nMilloin: __timeValue__\nMissä: __card__\n edellinen erääntymisaika oli __timeOldValue__",
- "act-a-endAt": "muokattu loppumisajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
- "act-a-startAt": "muokattu aloitusajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
- "act-a-receivedAt": "muutettu vastaanottamisajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
- "a-dueAt": "muutettu vastaanottamisajaksi",
- "a-endAt": "muokattu loppumisajaksi",
- "a-startAt": "muokattu aloitusajaksi",
- "a-receivedAt": "muokattu vastaanottamisajaksi",
- "almostdue": "nykyinen eräaika %s lähestyy",
- "pastdue": "nykyinen eräaika %s on mennyt",
- "duenow": "nykyinen eräaika %s on tänään",
- "act-withDue": "__card__ eräaika muistutukset [__board__]",
- "act-almostdue": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ lähestyvän",
- "act-pastdue": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ menneen",
- "act-duenow": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ olevan nyt",
- "act-atUserComment": "Sinut mainittiin [__board__] __card__",
- "delete-user-confirm-popup": "Haluatko varmasti poistaa tämän käyttäjätilin? Tätä ei voi peruuttaa.",
- "accounts-allowUserDelete": "Salli käyttäjien poistaa tilinsä itse"
-} \ No newline at end of file
+ "accept": "Hyväksy",
+ "act-activity-notify": "Toimintailmoitus",
+ "act-addAttachment": "lisätty liite __attachment__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-deleteAttachment": "poistettu liite __attachment__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addSubtask": "lisätty alitehtävä __subtask__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addLabel": "Lisätty tunniste __label__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addedLabel": "Lisätty tunniste __label__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-removeLabel": "Poistettu tunniste __label__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-removedLabel": "Poistettu tunniste __label__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addChecklist": "lisätty tarkistuslista __checklist__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addChecklistItem": "lisätty tarkistuslistan kohta __checklistItem__ tarkistuslistalle __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-removeChecklist": "poistettu tarkistuslista __checklist__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-removeChecklistItem": "poistettu tarkistuslistan kohta __checklistItem__ tarkistuslistalta __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-checkedItem": "ruksattu __checklistItem__ tarkistuslistalla __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-uncheckedItem": "poistettu ruksi __checklistItem__ tarkistuslistalta __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-completeChecklist": "valmistui tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-uncompleteChecklist": "tehty ei valmistuneeksi tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-addComment": "kommentoitu kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-editComment": "muokkasi kommenttia kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ at taululla __board__",
+ "act-deleteComment": "poisti kommentin kortilla __card__: __comment__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-createBoard": "luotu taulu __board__",
+ "act-createSwimlane": "loi swimlanen __swimlane__ taululle __board__",
+ "act-createCard": "luotu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
+ "act-createCustomField": "loi mukautetun kentän __customField__ taululla __board__",
+ "act-deleteCustomField": "poisti mukautetun kentän __customField__ taululla __board__",
+ "act-setCustomField": "muokkasi mukautettua kenttää __customField__: __customFieldValue__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-createList": "lisätty lista __list__ taululle __board__",
+ "act-addBoardMember": "lisätty jäsen __member__ taululle __board__",
+ "act-archivedBoard": "Taulu __board__ siirretty Arkistoon",
+ "act-archivedCard": "Kortti __card__ listalla __list__ swimlanella __swimlane__ taululla __board__ siirretty Arkistoon",
+ "act-archivedList": "Lista __list__ swimlanella __swimlane__ taululla __board__ siirretty Arkistoon",
+ "act-archivedSwimlane": "Swimlane __swimlane__ taululla __board__ siirretty Arkistoon",
+ "act-importBoard": "tuotu taulu __board__",
+ "act-importCard": "tuotu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
+ "act-importList": "tuotu lista __list__ swimlanelle __swimlane__ taululla __board__",
+ "act-joinMember": "lisätty jäsen __member__ kortille __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-moveCard": "siirsi kortin __card__ taululla __board__ listasta __oldList__ swimlanelta __oldSwimlane__ listalle __list__ swimlanelle __swimlane__",
+ "act-moveCardToOtherBoard": "siirretty kortti __card__ listasta __oldList__ swimlanella __oldSwimlane__ taululla __oldBoard__ listalle __list__ swimlanella __swimlane__ taululla __board__",
+ "act-removeBoardMember": "poistettu jäsen __member__ taululta __board__",
+ "act-restoredCard": "palautettu kortti __card__ listalle __list__ swimlanella __swimlane__ taululla __board__",
+ "act-unjoinMember": "poistettu jäsen __member__ kortilta __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Toimet",
+ "activities": "Toimet",
+ "activity": "Toiminta",
+ "activity-added": "lisätty %s kohteeseen %s",
+ "activity-archived": "%s siirretty Arkistoon",
+ "activity-attached": "liitetty %s kohteeseen %s",
+ "activity-created": "luotu %s",
+ "activity-customfield-created": "luotu mukautettu kenttä %s",
+ "activity-excluded": "poistettu %s kohteesta %s",
+ "activity-imported": "tuotu %s kohteeseen %s lähteestä %s",
+ "activity-imported-board": "tuotu %s lähteestä %s",
+ "activity-joined": "liitytty kohteeseen %s",
+ "activity-moved": "siirretty %s kohteesta %s kohteeseen %s",
+ "activity-on": "kohteessa %s",
+ "activity-removed": "poistettu %s kohteesta %s",
+ "activity-sent": "lähetetty %s kohteeseen %s",
+ "activity-unjoined": "peruttu %s liittyminen",
+ "activity-subtask-added": "lisätty alitehtävä kohteeseen %s",
+ "activity-checked-item": "ruksattu %s tarkistuslistassa %s / %s",
+ "activity-unchecked-item": "poistettu ruksi %s tarkistuslistassa %s / %s",
+ "activity-checklist-added": "lisätty tarkistuslista kortille %s",
+ "activity-checklist-removed": "poistettu tarkistuslista kohteesta %s",
+ "activity-checklist-completed": "valmistui tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "activity-checklist-uncompleted": "ei saatu valmiiksi tarkistuslista %s / %s",
+ "activity-checklist-item-added": "lisäsi kohdan tarkistuslistaan '%s' kortilla %s",
+ "activity-checklist-item-removed": "poistettu tarkistuslistan kohta '%s' / %s",
+ "add": "Lisää",
+ "activity-checked-item-card": "ruksattu %s tarkistuslistassa %s",
+ "activity-unchecked-item-card": "poistettu ruksi %s tarkistuslistassa %s",
+ "activity-checklist-completed-card": "valmistui tarkistuslista __checklist__ kortilla __card__ listalla __list__ swimlanella __swimlane__ taululla __board__",
+ "activity-checklist-uncompleted-card": "ei valmistunut tarkistuslista %s",
+ "add-attachment": "Lisää liite",
+ "add-board": "Lisää taulu",
+ "add-card": "Lisää kortti",
+ "add-swimlane": "Lisää Swimlane",
+ "add-subtask": "Lisää alitehtävä",
+ "add-checklist": "Lisää tarkistuslista",
+ "add-checklist-item": "Lisää kohta tarkistuslistaan",
+ "add-cover": "Lisää kansi",
+ "add-label": "Lisää tunniste",
+ "add-list": "Lisää lista",
+ "add-members": "Lisää jäseniä",
+ "added": "Lisätty",
+ "addMemberPopup-title": "Jäsenet",
+ "admin": "Ylläpitäjä",
+ "admin-desc": "Voi nähdä ja muokata kortteja, poistaa jäseniä, ja muuttaa taulun asetuksia.",
+ "admin-announcement": "Ilmoitus",
+ "admin-announcement-active": "Aktiivinen järjestelmänlaajuinen ilmoitus",
+ "admin-announcement-title": "Ilmoitus ylläpitäjältä",
+ "all-boards": "Kaikki taulut",
+ "and-n-other-card": "Ja __count__ muu kortti",
+ "and-n-other-card_plural": "Ja __count__ muuta korttia",
+ "apply": "Käytä",
+ "app-is-offline": "Ladataan, odota. Sivun uudelleenlataus aiheuttaa tietojen menettämisen. Jos lataaminen ei toimi, tarkista että palvelin ei ole pysähtynyt.",
+ "archive": "Siirrä Arkistoon",
+ "archive-all": "Siirrä kaikki Arkistoon",
+ "archive-board": "Siirrä taulu Arkistoon",
+ "archive-card": "Siirrä kortti Arkistoon",
+ "archive-list": "Siirrä lista Arkistoon",
+ "archive-swimlane": "Siirrä Swimlane Arkistoon",
+ "archive-selection": "Siirrä valinta Arkistoon",
+ "archiveBoardPopup-title": "Siirrä taulu Arkistoon?",
+ "archived-items": "Arkisto",
+ "archived-boards": "Taulut Arkistossa",
+ "restore-board": "Palauta taulu",
+ "no-archived-boards": "Ei tauluja Arkistossa.",
+ "archives": "Arkisto",
+ "template": "Malli",
+ "templates": "Mallit",
+ "assign-member": "Valitse jäsen",
+ "attached": "liitetty",
+ "attachment": "Liitetiedosto",
+ "attachment-delete-pop": "Liitetiedoston poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
+ "attachmentDeletePopup-title": "Poista liitetiedosto?",
+ "attachments": "Liitetiedostot",
+ "auto-watch": "Automaattisesti seuraa tauluja kun ne on luotu",
+ "avatar-too-big": "Profiilikuva on liian suuri (enintään 70 kt)",
+ "back": "Takaisin",
+ "board-change-color": "Muokkaa väriä",
+ "board-nb-stars": "%s tähteä",
+ "board-not-found": "Taulua ei löytynyt",
+ "board-private-info": "Tämä taulu tulee olemaan <strong>yksityinen</strong>.",
+ "board-public-info": "Tämä taulu tulee olemaan <strong>julkinen</strong>.",
+ "boardChangeColorPopup-title": "Muokkaa taulun taustaa",
+ "boardChangeTitlePopup-title": "Nimeä taulu uudelleen",
+ "boardChangeVisibilityPopup-title": "Muokkaa näkyvyyttä",
+ "boardChangeWatchPopup-title": "Muokkaa seuraamista",
+ "boardMenuPopup-title": "Tauluasetukset",
+ "boards": "Taulut",
+ "board-view": "Taulunäkymä",
+ "board-view-cal": "Kalenteri",
+ "board-view-swimlanes": "Swimlanet",
+ "board-view-lists": "Listat",
+ "bucket-example": "Kuten “Laatikko lista” esimerkiksi",
+ "cancel": "Peruuta",
+ "card-archived": "Tämä kortti on siirretty Arkistoon.",
+ "board-archived": "Tämä taulu on siirretty Arkistoon.",
+ "card-comments-title": "Tässä kortissa on %s kommenttia.",
+ "card-delete-notice": "Poistaminen on lopullista. Menetät kaikki tähän korttiin liitetyt toimet.",
+ "card-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä, etkä pysty avata korttia uudelleen. Tätä ei voi peruuttaa.",
+ "card-delete-suggest-archive": "Voit siirtää kortin Arkistoon poistaaksesi sen taululta ja säilyttääksesi toimintalokin.",
+ "card-due": "Erääntyy",
+ "card-due-on": "Erääntyy",
+ "card-spent": "Käytetty aika",
+ "card-edit-attachments": "Muokkaa liitetiedostoja",
+ "card-edit-custom-fields": "Muokkaa mukautettuja kenttiä",
+ "card-edit-labels": "Muokkaa tunnisteita",
+ "card-edit-members": "Muokkaa jäseniä",
+ "card-labels-title": "Muokkaa kortin tunnisteita.",
+ "card-members-title": "Lisää tai poista taulun jäseniä tältä kortilta.",
+ "card-start": "Alkaa",
+ "card-start-on": "Alkaa",
+ "cardAttachmentsPopup-title": "Liitä mistä",
+ "cardCustomField-datePopup-title": "Muokkaa päivää",
+ "cardCustomFieldsPopup-title": "Muokkaa mukautettuja kenttiä",
+ "cardDeletePopup-title": "Poista kortti?",
+ "cardDetailsActionsPopup-title": "Korttitoimet",
+ "cardLabelsPopup-title": "Tunnisteet",
+ "cardMembersPopup-title": "Jäsenet",
+ "cardMorePopup-title": "Lisää",
+ "cardTemplatePopup-title": "Luo malli",
+ "cards": "Kortit",
+ "cards-count": "korttia",
+ "casSignIn": "CAS-kirjautuminen",
+ "cardType-card": "Kortti",
+ "cardType-linkedCard": "Linkitetty kortti",
+ "cardType-linkedBoard": "Linkitetty taulu",
+ "change": "Muokkaa",
+ "change-avatar": "Muokkaa profiilikuvaa",
+ "change-password": "Vaihda salasana",
+ "change-permissions": "Muokkaa oikeuksia",
+ "change-settings": "Muokkaa asetuksia",
+ "changeAvatarPopup-title": "Muokkaa profiilikuvaa",
+ "changeLanguagePopup-title": "Vaihda kieltä",
+ "changePasswordPopup-title": "Vaihda salasana",
+ "changePermissionsPopup-title": "Muokkaa oikeuksia",
+ "changeSettingsPopup-title": "Muokkaa asetuksia",
+ "subtasks": "Alitehtävät",
+ "checklists": "Tarkistuslistat",
+ "click-to-star": "Klikkaa merkataksesi tämä taulu tähdellä.",
+ "click-to-unstar": "Klikkaa poistaaksesi tähtimerkintä taululta.",
+ "clipboard": "Leikepöytä tai raahaa ja pudota",
+ "close": "Sulje",
+ "close-board": "Sulje taulu",
+ "close-board-pop": "Voit palauttaa taulun klikkaamalla “Arkisto”-painiketta taululistan yläpalkista.",
+ "color-black": "musta",
+ "color-blue": "sininen",
+ "color-crimson": "karmiininpunainen",
+ "color-darkgreen": "tummanvihreä",
+ "color-gold": "kulta",
+ "color-gray": "harmaa",
+ "color-green": "vihreä",
+ "color-indigo": "syvän sininen",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "vaaleanpunainen ruusu",
+ "color-navy": "laivastonsininen",
+ "color-orange": "oranssi",
+ "color-paleturquoise": "vaalean turkoosi",
+ "color-peachpuff": "persikanpunainen",
+ "color-pink": "vaaleanpunainen",
+ "color-plum": "luumunvärinen",
+ "color-purple": "violetti",
+ "color-red": "punainen",
+ "color-saddlebrown": "satulanruskea",
+ "color-silver": "hopea",
+ "color-sky": "taivas",
+ "color-slateblue": "liuskekivi sininen",
+ "color-white": "valkoinen",
+ "color-yellow": "keltainen",
+ "unset-color": "Peru väri",
+ "comment": "Kommentti",
+ "comment-placeholder": "Kirjoita kommentti",
+ "comment-only": "Vain kommentointi",
+ "comment-only-desc": "Voi vain kommentoida kortteja",
+ "no-comments": "Ei kommentteja",
+ "no-comments-desc": "Ei voi nähdä kommentteja ja toimintaa.",
+ "computer": "Tietokone",
+ "confirm-subtask-delete-dialog": "Haluatko varmasti poistaa alitehtävän?",
+ "confirm-checklist-delete-dialog": "Haluatko varmasti poistaa tarkistuslistan?",
+ "copy-card-link-to-clipboard": "Kopioi kortin linkki leikepöydälle",
+ "linkCardPopup-title": "Linkitä kortti",
+ "searchElementPopup-title": "Etsi",
+ "copyCardPopup-title": "Kopioi kortti",
+ "copyChecklistToManyCardsPopup-title": "Kopioi tarkistuslistan malli monille korteille",
+ "copyChecklistToManyCardsPopup-instructions": "Kohde korttien otsikot ja kuvaukset JSON-muodossa",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Ensimmäisen kortin otsikko\", \"description\":\"Ensimmäisen kortin kuvaus\"}, {\"title\":\"Toisen kortin otsikko\",\"description\":\"Toisen kortin kuvaus\"},{\"title\":\"Viimeisen kortin otsikko\",\"description\":\"Viimeisen kortin kuvaus\"} ]",
+ "create": "Luo",
+ "createBoardPopup-title": "Luo taulu",
+ "chooseBoardSourcePopup-title": "Tuo taulu",
+ "createLabelPopup-title": "Luo tunniste",
+ "createCustomField": "Luo kenttä",
+ "createCustomFieldPopup-title": "Luo kenttä",
+ "current": "nykyinen",
+ "custom-field-delete-pop": "Tätä ei voi peruuttaa. Tämä poistaa tämän mukautetun kentän kaikista korteista ja poistaa sen historian.",
+ "custom-field-checkbox": "Valintaruutu",
+ "custom-field-date": "Päivämäärä",
+ "custom-field-dropdown": "Pudotusvalikko",
+ "custom-field-dropdown-none": "(ei mitään)",
+ "custom-field-dropdown-options": "Listan vaihtoehdot",
+ "custom-field-dropdown-options-placeholder": "Paina Enter lisätäksesi lisää vaihtoehtoja",
+ "custom-field-dropdown-unknown": "(tuntematon)",
+ "custom-field-number": "Numero",
+ "custom-field-text": "Teksti",
+ "custom-fields": "Mukautetut kentät",
+ "date": "Päivämäärä",
+ "decline": "Kieltäydy",
+ "default-avatar": "Oletusprofiilikuva",
+ "delete": "Poista",
+ "deleteCustomFieldPopup-title": "Poista mukautettu kenttä?",
+ "deleteLabelPopup-title": "Poista tunniste?",
+ "description": "Kuvaus",
+ "disambiguateMultiLabelPopup-title": "Yksikäsitteistä tunnistetoiminta",
+ "disambiguateMultiMemberPopup-title": "Yksikäsitteistä jäsentoiminta",
+ "discard": "Hylkää",
+ "done": "Valmis",
+ "download": "Lataa",
+ "edit": "Muokkaa",
+ "edit-avatar": "Muokkaa profiilikuvaa",
+ "edit-profile": "Muokkaa profiilia",
+ "edit-wip-limit": "Muokkaa WIP-rajaa",
+ "soft-wip-limit": "Pehmeä WIP-raja",
+ "editCardStartDatePopup-title": "Muokkaa aloituspäivää",
+ "editCardDueDatePopup-title": "Muokkaa eräpäivää",
+ "editCustomFieldPopup-title": "Muokkaa kenttää",
+ "editCardSpentTimePopup-title": "Muuta käytettyä aikaa",
+ "editLabelPopup-title": "Muokkaa tunnistetta",
+ "editNotificationPopup-title": "Muokkaa ilmoituksia",
+ "editProfilePopup-title": "Muokkaa profiilia",
+ "email": "Sähköposti",
+ "email-enrollAccount-subject": "Sinulle on luotu tili palveluun __siteName__",
+ "email-enrollAccount-text": "Hei __user__,\n\nKlikkaa alla olevaa linkkiä aloittaaksesi palvelun käytön.\n\n__url__\n\nKiitos.",
+ "email-fail": "Sähköpostin lähettäminen epäonnistui",
+ "email-fail-text": "Virhe yrittäessä lähettää sähköpostia",
+ "email-invalid": "Virheellinen sähköposti",
+ "email-invite": "Kutsu sähköpostilla",
+ "email-invite-subject": "__inviter__ lähetti sinulle kutsun",
+ "email-invite-text": "Hyvä __user__,\n\n__inviter__ kutsuu sinut liittymään taululle \"__board__\" yhteistyötä varten.\n\nOle hyvä ja seuraa alla olevaa linkkiä:\n\n__url__\n\nKiitos.",
+ "email-resetPassword-subject": "Nollaa salasanasi palvelussa __siteName__",
+ "email-resetPassword-text": "Hei __user__,\n\nNollataksesi salasanasi, klikkaa alla olevaa linkkiä.\n\n__url__\n\nKiitos.",
+ "email-sent": "Sähköposti lähetetty",
+ "email-verifyEmail-subject": "Varmista sähköpostiosoitteesi osoitteessa __url__",
+ "email-verifyEmail-text": "Hei __user__,\n\nvahvistaaksesi sähköpostiosoitteesi, klikkaa alla olevaa linkkiä.\n\n__url__\n\nKiitos.",
+ "enable-wip-limit": "Ota käyttöön WIP-raja",
+ "error-board-doesNotExist": "Tätä taulua ei ole olemassa",
+ "error-board-notAdmin": "Tehdäksesi tämän sinun täytyy olla tämän taulun ylläpitäjä",
+ "error-board-notAMember": "Tehdäksesi tämän sinun täytyy olla tämän taulun jäsen",
+ "error-json-malformed": "Tekstisi ei ole kelvollisessa JSON-muodossa",
+ "error-json-schema": "JSON-tietosi ei sisällä oikeaa tietoa oikeassa muodossa",
+ "error-list-doesNotExist": "Tätä listaa ei ole olemassa",
+ "error-user-doesNotExist": "Tätä käyttäjää ei ole olemassa",
+ "error-user-notAllowSelf": "Et voi kutsua itseäsi",
+ "error-user-notCreated": "Tätä käyttäjää ei ole luotu",
+ "error-username-taken": "Tämä käyttäjätunnus on jo käytössä",
+ "error-email-taken": "Sähköpostiosoite on jo käytössä",
+ "export-board": "Vie taulu",
+ "filter": "Suodata",
+ "filter-cards": "Suodata kortit",
+ "filter-clear": "Poista suodatin",
+ "filter-no-label": "Ei tunnistetta",
+ "filter-no-member": "Ei jäseniä",
+ "filter-no-custom-fields": "Ei mukautettuja kenttiä",
+ "filter-on": "Suodatus on päällä",
+ "filter-on-desc": "Suodatat kortteja tällä taululla. Klikkaa tästä muokataksesi suodatinta.",
+ "filter-to-selection": "Suodata valintaan",
+ "advanced-filter-label": "Edistynyt suodatin",
+ "advanced-filter-description": "Edistynyt suodatin mahdollistaa merkkijonon, joka sisältää seuraavat operaattorit: == != <= >= && || ( ) Operaattorien välissä käytetään välilyöntiä. Voit suodattaa kaikki mukautetut kentät kirjoittamalla niiden nimet ja arvot. Esimerkiksi: Field1 == Value1. Huom: Jos kentillä tai arvoilla on välilyöntejä, sinun on sijoitettava ne yksittäisiin lainausmerkkeihin. Esimerkki: 'Kenttä 1' == 'Arvo 1'. Voit hypätä yksittäisen kontrollimerkkien (' \\/) yli käyttämällä \\. Esimerkki: Field1 = I\\'m. Voit myös yhdistää useita ehtoja. Esimerkiksi: F1 == V1 || F1 == V2. Yleensä kaikki operaattorit tulkitaan vasemmalta oikealle. Voit muuttaa järjestystä asettamalla sulkuja. Esimerkiksi: F1 == V1 && (F2 == V2 || F2 == V3). Voit myös etsiä tekstikentistä regexillä: F1 == /Tes.*/i",
+ "fullname": "Koko nimi",
+ "header-logo-title": "Palaa taulut sivullesi.",
+ "hide-system-messages": "Piilota järjestelmäviestit",
+ "headerBarCreateBoardPopup-title": "Luo taulu",
+ "home": "Koti",
+ "import": "Tuo",
+ "link": "Linkitä",
+ "import-board": "tuo taulu",
+ "import-board-c": "Tuo taulu",
+ "import-board-title-trello": "Tuo taulu Trellosta",
+ "import-board-title-wekan": "Tuo taulu edellisestä viennistä",
+ "import-sandstorm-backup-warning": "Älä poista tietoja joita toit alkuperäisestä viennistä tai Trellosta ennen kuin tarkistat onnistuuko sulkea ja avata tämä jyvä uudelleen, vai näkyykö Board not found -virhe, joka tarkoittaa tietojen häviämistä.",
+ "import-sandstorm-warning": "Tuotu taulu poistaa kaikki olemassa olevan taulun tiedot ja korvaa ne tuodulla taululla.",
+ "from-trello": "Trellosta",
+ "from-wekan": "Edellisestä viennistä",
+ "import-board-instruction-trello": "Mene Trello-taulullasi 'Menu', sitten 'More', 'Print and Export', 'Export JSON', ja kopioi tuloksena saamasi teksti",
+ "import-board-instruction-wekan": "Taulullasi, mene 'Valikko', sitten 'Vie taulu', ja kopioi teksti ladatusta tiedostosta.",
+ "import-board-instruction-about-errors": "Jos virheitä tulee taulua tuotaessa, joskus tuonti silti toimii, ja taulu on Kaikki taulut sivulla.",
+ "import-json-placeholder": "Liitä kelvollinen JSON-tietosi tähän",
+ "import-map-members": "Vastaavat jäsenet",
+ "import-members-map": "Tuomallasi taululla on muutamia jäseniä. Ole hyvä ja valitse tuomiasi jäseniä vastaavat käyttäjäsi",
+ "import-show-user-mapping": "Tarkasta vastaavat jäsenet",
+ "import-user-select": "Valitse olemassaoleva käyttäjä jota haluat käyttää tänä käyttäjänä",
+ "importMapMembersAddPopup-title": "Valitse käyttäjä",
+ "info": "Versio",
+ "initials": "Nimikirjaimet",
+ "invalid-date": "Virheellinen päivämäärä",
+ "invalid-time": "Virheellinen aika",
+ "invalid-user": "Virheellinen käyttäjä",
+ "joined": "liittyi",
+ "just-invited": "Sinut on juuri kutsuttu tälle taululle",
+ "keyboard-shortcuts": "Pikanäppäimet",
+ "label-create": "Luo tunniste",
+ "label-default": "%s tunniste (oletus)",
+ "label-delete-pop": "Tätä ei voi peruuttaa. Tämä poistaa tämän tunnisteen kaikista korteista ja tuhoaa sen historian.",
+ "labels": "Tunnisteet",
+ "language": "Kieli",
+ "last-admin-desc": "Et voi vaihtaa rooleja koska täytyy olla olemassa ainakin yksi ylläpitäjä.",
+ "leave-board": "Jää pois taululta",
+ "leave-board-pop": "Haluatko varmasti poistua taululta __boardTitle__? Sinut poistetaan kaikista tämän taulun korteista.",
+ "leaveBoardPopup-title": "Poistu taululta?",
+ "link-card": "Linkki tähän korttiin",
+ "list-archive-cards": "Siirrä kaikki tämän listan kortit Arkistoon",
+ "list-archive-cards-pop": "Tämä poistaa kaikki tämän listan kortit taululta. Nähdäksesi Arkistossa olevat kortit ja tuodaksesi ne takaisin taululle, klikkaa “Valikko” > “Arkisto”.",
+ "list-move-cards": "Siirrä kaikki kortit tässä listassa",
+ "list-select-cards": "Valitse kaikki kortit tässä listassa",
+ "set-color-list": "Aseta väri",
+ "listActionPopup-title": "Listatoimet",
+ "swimlaneActionPopup-title": "Swimlane-toimet",
+ "swimlaneAddPopup-title": "Lisää Swimlane alle",
+ "listImportCardPopup-title": "Tuo Trello-kortti",
+ "listMorePopup-title": "Lisää",
+ "link-list": "Linkki tähän listaan",
+ "list-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä ja listan poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
+ "list-delete-suggest-archive": "Voit siirtää listan Arkistoon poistaaksesi sen taululta ja säilyttääksesi toimintalokin.",
+ "lists": "Listat",
+ "swimlanes": "Swimlanet",
+ "log-out": "Kirjaudu ulos",
+ "log-in": "Kirjaudu sisään",
+ "loginPopup-title": "Kirjaudu sisään",
+ "memberMenuPopup-title": "Jäsenasetukset",
+ "members": "Jäsenet",
+ "menu": "Valikko",
+ "move-selection": "Siirrä valinta",
+ "moveCardPopup-title": "Siirrä kortti",
+ "moveCardToBottom-title": "Siirrä alimmaiseksi",
+ "moveCardToTop-title": "Siirrä ylimmäiseksi",
+ "moveSelectionPopup-title": "Siirrä valinta",
+ "multi-selection": "Monivalinta",
+ "multi-selection-on": "Monivalinta on päällä",
+ "muted": "Vaimennettu",
+ "muted-info": "Et saa koskaan ilmoituksia tämän taulun muutoksista",
+ "my-boards": "Tauluni",
+ "name": "Nimi",
+ "no-archived-cards": "Ei kortteja Arkistossa.",
+ "no-archived-lists": "Ei listoja Arkistossa.",
+ "no-archived-swimlanes": "Ei Swimlaneja Arkistossa.",
+ "no-results": "Ei tuloksia",
+ "normal": "Normaali",
+ "normal-desc": "Voi nähdä ja muokata kortteja. Ei voi muokata asetuksia.",
+ "not-accepted-yet": "Kutsua ei ole hyväksytty vielä",
+ "notify-participate": "Vastaanota päivityksiä kaikilta korteilta jotka olet tehnyt tai joihin osallistut.",
+ "notify-watch": "Vastaanota päivityksiä kaikilta tauluilta, listoilta tai korteilta joita seuraat.",
+ "optional": "valinnainen",
+ "or": "tai",
+ "page-maybe-private": "Tämä sivu voi olla yksityinen. Saatat nähdä sen <a href='%s'>kirjautumalla sisään</a>.",
+ "page-not-found": "Sivua ei löytynyt.",
+ "password": "Salasana",
+ "paste-or-dragdrop": "liittääksesi, tai vedä & pudota kuvatiedosto siihen (vain kuva)",
+ "participating": "Osallistutaan",
+ "preview": "Esikatsele",
+ "previewAttachedImagePopup-title": "Esikatsele",
+ "previewClipboardImagePopup-title": "Esikatsele",
+ "private": "Yksityinen",
+ "private-desc": "Tämä taulu on yksityinen. Vain taululle lisätyt henkilöt voivat nähdä ja muokata sitä.",
+ "profile": "Profiili",
+ "public": "Julkinen",
+ "public-desc": "Tämä taulu on julkinen. Se näkyy kenelle tahansa jolla on linkki ja näkyy myös hakukoneissa kuten Google. Vain taululle lisätyt henkilöt voivat muokata sitä.",
+ "quick-access-description": "Merkkaa taulu tähdellä lisätäksesi pikavalinta tähän palkkiin.",
+ "remove-cover": "Poista kansi",
+ "remove-from-board": "Poista taululta",
+ "remove-label": "Poista tunniste",
+ "listDeletePopup-title": "Poista lista?",
+ "remove-member": "Poista jäsen",
+ "remove-member-from-card": "Poista kortilta",
+ "remove-member-pop": "Poista __name__ (__username__) taululta __boardTitle__? Jäsen poistetaan kaikilta taulun korteilta. Heille lähetetään ilmoitus.",
+ "removeMemberPopup-title": "Poista jäsen?",
+ "rename": "Nimeä uudelleen",
+ "rename-board": "Nimeä taulu uudelleen",
+ "restore": "Palauta",
+ "save": "Tallenna",
+ "search": "Etsi",
+ "rules": "Säännöt",
+ "search-cards": "Etsi korttien otsikoista ja kuvauksista tällä taululla",
+ "search-example": "Etsittävä teksti?",
+ "select-color": "Valitse väri",
+ "set-wip-limit-value": "Aseta tämän listan tehtävien enimmäismäärä",
+ "setWipLimitPopup-title": "Aseta WIP-raja",
+ "shortcut-assign-self": "Valitse itsesi nykyiselle kortille",
+ "shortcut-autocomplete-emoji": "Automaattinen täydennys emojille",
+ "shortcut-autocomplete-members": "Automaattinen täydennys jäsenille",
+ "shortcut-clear-filters": "Poista kaikki suodattimet",
+ "shortcut-close-dialog": "Sulje valintaikkuna",
+ "shortcut-filter-my-cards": "Suodata korttini",
+ "shortcut-show-shortcuts": "Tuo esiin tämä pikavalintalista",
+ "shortcut-toggle-filterbar": "Muokkaa suodatussivupalkin näkyvyyttä",
+ "shortcut-toggle-sidebar": "Muokkaa taulusivupalkin näkyvyyttä",
+ "show-cards-minimum-count": "Näytä korttien lukumäärä jos lista sisältää enemmän kuin",
+ "sidebar-open": "Avaa sivupalkki",
+ "sidebar-close": "Sulje sivupalkki",
+ "signupPopup-title": "Luo tili",
+ "star-board-title": "Klikkaa merkataksesi taulu tähdellä. Se tulee näkymään ylimpänä taululistallasi.",
+ "starred-boards": "Tähdellä merkatut taulut",
+ "starred-boards-description": "Tähdellä merkatut taulut näkyvät ylimpänä taululistallasi.",
+ "subscribe": "Tilaa",
+ "team": "Tiimi",
+ "this-board": "tämä taulu",
+ "this-card": "tämä kortti",
+ "spent-time-hours": "Käytetty aika (tuntia)",
+ "overtime-hours": "Ylityö (tuntia)",
+ "overtime": "Ylityö",
+ "has-overtime-cards": "Sisältää ylityökortteja",
+ "has-spenttime-cards": "Sisältää käytetty aika -kortteja",
+ "time": "Aika",
+ "title": "Otsikko",
+ "tracking": "Ilmoitukset",
+ "tracking-info": "Sinulle ilmoitetaan muutoksista korteissa joihin olet osallistunut luojana tai jäsenenä.",
+ "type": "Tyyppi",
+ "unassign-member": "Peru jäsenvalinta",
+ "unsaved-description": "Sinulla on tallentamaton kuvaus.",
+ "unwatch": "Lopeta seuraaminen",
+ "upload": "Lähetä",
+ "upload-avatar": "Lähetä profiilikuva",
+ "uploaded-avatar": "Profiilikuva lähetetty",
+ "username": "Käyttäjätunnus",
+ "view-it": "Näytä se",
+ "warn-list-archived": "varoitus: tämä kortti on Arkistossa olevassa listassa",
+ "watch": "Seuraa",
+ "watching": "Seurataan",
+ "watching-info": "Sinulle ilmoitetaan tämän taulun muutoksista",
+ "welcome-board": "Tervetuloa-taulu",
+ "welcome-swimlane": "Merkkipaalu 1",
+ "welcome-list1": "Perusasiat",
+ "welcome-list2": "Edistynyt",
+ "card-templates-swimlane": "Korttimallit",
+ "list-templates-swimlane": "Listamallit",
+ "board-templates-swimlane": "Taulumallit",
+ "what-to-do": "Mitä haluat tehdä?",
+ "wipLimitErrorPopup-title": "Virheellinen WIP-raja",
+ "wipLimitErrorPopup-dialog-pt1": "Tässä listassa olevien tehtävien määrä on korkeampi kuin asettamasi WIP-raja.",
+ "wipLimitErrorPopup-dialog-pt2": "Siirrä joitain tehtäviä pois tästä listasta tai määritä korkeampi WIP-raja.",
+ "admin-panel": "Hallintapaneeli",
+ "settings": "Asetukset",
+ "people": "Ihmiset",
+ "registration": "Rekisteröinti",
+ "disable-self-registration": "Poista käytöstä itserekisteröityminen",
+ "invite": "Kutsu",
+ "invite-people": "Kutsu ihmisiä",
+ "to-boards": "Taulu(i)lle",
+ "email-addresses": "Sähköpostiosoite",
+ "smtp-host-description": "SMTP-palvelimen osoite jolla sähköpostit lähetetään.",
+ "smtp-port-description": "STMP-palvelimesi käyttämä lähteville sähköposteille tarkoitettu portti.",
+ "smtp-tls-description": "Ota käyttöön TLS-tuki SMTP-palvelimelle",
+ "smtp-host": "SMTP-isäntä",
+ "smtp-port": "SMTP-portti",
+ "smtp-username": "Käyttäjätunnus",
+ "smtp-password": "Salasana",
+ "smtp-tls": "TLS-tuki",
+ "send-from": "Lähettäjä",
+ "send-smtp-test": "Lähetä testisähköposti itsellesi",
+ "invitation-code": "Kutsukoodi",
+ "email-invite-register-subject": "__inviter__ lähetti sinulle kutsun",
+ "email-invite-register-text": "Hei __user__,\n\n__inviter__ kutsuu sinut mukaan kanban-taulun käyttöön.\n\nOle hyvä ja seuraa alla olevaa linkkiä:\n__url__\n\nKutsukoodisi on: __icode__\n\nKiitos.",
+ "email-smtp-test-subject": "SMTP-testisähköposti",
+ "email-smtp-test-text": "Olet onnistuneesti lähettänyt sähköpostin",
+ "error-invitation-code-not-exist": "Kutsukoodia ei ole olemassa",
+ "error-notAuthorized": "Sinulla ei ole oikeutta tarkastella tätä sivua.",
+ "outgoing-webhooks": "Lähtevät Webkoukut",
+ "outgoingWebhooksPopup-title": "Lähtevät Webkoukut",
+ "boardCardTitlePopup-title": "Kortin otsikkosuodatin",
+ "new-outgoing-webhook": "Uusi lähtevä Webkoukku",
+ "no-name": "(Tuntematon)",
+ "Node_version": "Node-versio",
+ "OS_Arch": "Käyttöjärjestelmän arkkitehtuuri",
+ "OS_Cpus": "Käyttöjärjestelmän CPU-määrä",
+ "OS_Freemem": "Käyttöjärjestelmän vapaa muisti",
+ "OS_Loadavg": "Käyttöjärjestelmän kuorman keskiarvo",
+ "OS_Platform": "Käyttöjärjestelmäalusta",
+ "OS_Release": "Käyttöjärjestelmän julkaisu",
+ "OS_Totalmem": "Käyttöjärjestelmän muistin kokonaismäärä",
+ "OS_Type": "Käyttöjärjestelmän tyyppi",
+ "OS_Uptime": "Käyttöjärjestelmä ollut käynnissä",
+ "days": "päivää",
+ "hours": "tuntia",
+ "minutes": "minuuttia",
+ "seconds": "sekuntia",
+ "show-field-on-card": "Näytä tämä kenttä kortilla",
+ "automatically-field-on-card": "Luo kenttä automaattisesti kaikille korteille",
+ "showLabel-field-on-card": "Näytä kentän tunniste minikortilla",
+ "yes": "Kyllä",
+ "no": "Ei",
+ "accounts": "Tilit",
+ "accounts-allowEmailChange": "Salli sähköpostiosoitteen muuttaminen",
+ "accounts-allowUserNameChange": "Salli käyttäjätunnuksen muuttaminen",
+ "createdAt": "Luotu",
+ "verified": "Varmistettu",
+ "active": "Aktiivinen",
+ "card-received": "Vastaanotettu",
+ "card-received-on": "Vastaanotettu",
+ "card-end": "Loppuu",
+ "card-end-on": "Loppuu",
+ "editCardReceivedDatePopup-title": "Vaihda vastaanottamispäivää",
+ "editCardEndDatePopup-title": "Vaihda loppumispäivää",
+ "setCardColorPopup-title": "Aseta väri",
+ "setCardActionsColorPopup-title": "Valitse väri",
+ "setSwimlaneColorPopup-title": "Valitse väri",
+ "setListColorPopup-title": "Valitse väri",
+ "assigned-by": "Tehtävänantaja",
+ "requested-by": "Pyytäjä",
+ "board-delete-notice": "Poistaminen on lopullista. Menetät kaikki listat, kortit ja toimet tällä taululla.",
+ "delete-board-confirm-popup": "Kaikki listat, kortit, tunnisteet ja toimet poistetaan ja et pysty palauttamaan taulun sisältöä. Tätä ei voi peruuttaa.",
+ "boardDeletePopup-title": "Poista taulu?",
+ "delete-board": "Poista taulu",
+ "default-subtasks-board": "Alitehtävät taululle __board__",
+ "default": "Oletus",
+ "queue": "Jono",
+ "subtask-settings": "Alitehtävä-asetukset",
+ "boardSubtaskSettingsPopup-title": "Taulualitehtävien asetukset",
+ "show-subtasks-field": "Korteilla voi olla alitehtäviä",
+ "deposit-subtasks-board": "Talleta alitehtävät tälle taululle:",
+ "deposit-subtasks-list": "Laskeutumislista alatehtäville tallennettu tänne:",
+ "show-parent-in-minicard": "Näytä ylätehtävä minikortilla:",
+ "prefix-with-full-path": "Etuliite koko polulla",
+ "prefix-with-parent": "Etuliite ylätehtävällä",
+ "subtext-with-full-path": "Aliteksti koko polulla",
+ "subtext-with-parent": "Aliteksti ylätehtävällä",
+ "change-card-parent": "Muuta kortin ylätehtävää",
+ "parent-card": "Ylätehtäväkortti",
+ "source-board": "Lähdetaulu",
+ "no-parent": "Älä näytä ylätehtävää",
+ "activity-added-label": "lisätty tunniste '%s' kohteeseen %s",
+ "activity-removed-label": "poistettu tunniste '%s' kohteesta %s",
+ "activity-delete-attach": "poistettu liitetiedosto kohteesta %s",
+ "activity-added-label-card": "lisätty tunniste '%s'",
+ "activity-removed-label-card": "poistettu tunniste '%s'",
+ "activity-delete-attach-card": "poistettu liitetiedosto",
+ "activity-set-customfield": "asetettu mukautettu kentän '%s' sisällöksi '%s' kortilla %s",
+ "activity-unset-customfield": "poistettu mukautettu kenttä '%s' kortilla %s",
+ "r-rule": "Sääntö",
+ "r-add-trigger": "Lisää liipaisin",
+ "r-add-action": "Lisää toimi",
+ "r-board-rules": "Taulusäännöt",
+ "r-add-rule": "Lisää sääntö",
+ "r-view-rule": "Näytä sääntö",
+ "r-delete-rule": "Poista sääntö",
+ "r-new-rule-name": "Uuden säännön otsikko",
+ "r-no-rules": "Ei sääntöjä",
+ "r-when-a-card": "Kun kortti",
+ "r-is": "on",
+ "r-is-moved": "on siirretty",
+ "r-added-to": "lisätty kohteeseen",
+ "r-removed-from": "Poistettu kohteesta",
+ "r-the-board": "taulu",
+ "r-list": "lista",
+ "set-filter": "Aseta suodatin",
+ "r-moved-to": "Siirretty kohteeseen",
+ "r-moved-from": "Siirretty kohteesta",
+ "r-archived": "Siirretty Arkistoon",
+ "r-unarchived": "Palautettu Arkistosta",
+ "r-a-card": "kortti",
+ "r-when-a-label-is": "Kun tunniste on",
+ "r-when-the-label": "Kun tunniste on",
+ "r-list-name": "listan nimi",
+ "r-when-a-member": "Kun jäsen on",
+ "r-when-the-member": "Kun käyttäjä",
+ "r-name": "nimi",
+ "r-when-a-attach": "Kun liitetiedosto",
+ "r-when-a-checklist": "Kun tarkistuslista on",
+ "r-when-the-checklist": "Kun tarkistuslista",
+ "r-completed": "Valmistunut",
+ "r-made-incomplete": "Tehty ei valmistuneeksi",
+ "r-when-a-item": "Kun tarkistuslistan kohta on",
+ "r-when-the-item": "Kun tarkistuslistan kohta",
+ "r-checked": "Ruksattu",
+ "r-unchecked": "Poistettu ruksi",
+ "r-move-card-to": "Siirrä kortti kohteeseen",
+ "r-top-of": "Ylimmäiseksi",
+ "r-bottom-of": "Alimmaiseksi",
+ "r-its-list": "sen lista",
+ "r-archive": "Siirrä Arkistoon",
+ "r-unarchive": "Palauta Arkistosta",
+ "r-card": "kortti",
+ "r-add": "Lisää",
+ "r-remove": "Poista",
+ "r-label": "tunniste",
+ "r-member": "jäsen",
+ "r-remove-all": "Poista kaikki jäsenet kortilta",
+ "r-set-color": "Aseta väriksi",
+ "r-checklist": "tarkistuslista",
+ "r-check-all": "Ruksaa kaikki",
+ "r-uncheck-all": "Poista ruksi kaikista",
+ "r-items-check": "kohtaa tarkistuslistassa",
+ "r-check": "Ruksaa",
+ "r-uncheck": "Poista ruksi",
+ "r-item": "kohta",
+ "r-of-checklist": "tarkistuslistasta",
+ "r-send-email": "Lähetä sähköposti",
+ "r-to": "vastaanottajalle",
+ "r-subject": "aihe",
+ "r-rule-details": "Säännön yksityiskohdat",
+ "r-d-move-to-top-gen": "Siirrä kortti listansa alkuun",
+ "r-d-move-to-top-spec": "Siirrä kortti listan alkuun",
+ "r-d-move-to-bottom-gen": "Siirrä kortti listansa loppuun",
+ "r-d-move-to-bottom-spec": "Siirrä kortti listan loppuun",
+ "r-d-send-email": "Lähetä sähköposti",
+ "r-d-send-email-to": "vastaanottajalle",
+ "r-d-send-email-subject": "aihe",
+ "r-d-send-email-message": "viesti",
+ "r-d-archive": "Siirrä kortti Arkistoon",
+ "r-d-unarchive": "Palauta kortti Arkistosta",
+ "r-d-add-label": "Lisää tunniste",
+ "r-d-remove-label": "Poista tunniste",
+ "r-create-card": "Luo uusi kortti",
+ "r-in-list": "listassa",
+ "r-in-swimlane": "swimlanessa",
+ "r-d-add-member": "Lisää jäsen",
+ "r-d-remove-member": "Poista jäsen",
+ "r-d-remove-all-member": "Poista kaikki jäsenet",
+ "r-d-check-all": "Ruksaa kaikki listan kohdat",
+ "r-d-uncheck-all": "Poista ruksi kaikista listan kohdista",
+ "r-d-check-one": "Ruksaa kohta",
+ "r-d-uncheck-one": "Poista ruksi kohdasta",
+ "r-d-check-of-list": "tarkistuslistasta",
+ "r-d-add-checklist": "Lisää tarkistuslista",
+ "r-d-remove-checklist": "Poista tarkistuslista",
+ "r-by": "mennessä",
+ "r-add-checklist": "Lisää tarkistuslista",
+ "r-with-items": "kohteiden kanssa",
+ "r-items-list": "kohde1,kohde2,kohde3",
+ "r-add-swimlane": "Lisää swimlane",
+ "r-swimlane-name": "swimlanen nimi",
+ "r-board-note": "Huom: jätä kenttä tyhjäksi täsmätäksesi jokaiseen mahdolliseen arvoon.",
+ "r-checklist-note": "Huom: tarkistuslistan kohteet täytyy kirjoittaa pilkulla eroteltuina.",
+ "r-when-a-card-is-moved": "Kun kortti on siirretty toiseen listaan",
+ "r-set": "Aseta",
+ "r-update": "Päivitä",
+ "r-datefield": "päivämäärä kenttä",
+ "r-df-start-at": "alkaa",
+ "r-df-due-at": "erääntyy",
+ "r-df-end-at": "loppuu",
+ "r-df-received-at": "vastaanotettu",
+ "r-to-current-datetime": "nykyiseen päivään/aikaan",
+ "r-remove-value-from": "Poista arvo kohteesta",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Kirjautumistapa",
+ "authentication-type": "Kirjautumistyyppi",
+ "custom-product-name": "Mukautettu tuotenimi",
+ "layout": "Ulkoasu",
+ "hide-logo": "Piilota Logo",
+ "add-custom-html-after-body-start": "Lisää HTML <body> alun jälkeen",
+ "add-custom-html-before-body-end": "Lisä HTML ennen </body> loppua",
+ "error-undefined": "Jotain meni pieleen",
+ "error-ldap-login": "Virhe tapahtui yrittäessä kirjautua sisään",
+ "display-authentication-method": "Näytä kirjautumistapa",
+ "default-authentication-method": "Oletuskirjautumistapa",
+ "duplicate-board": "Tee kaksoiskappale taulusta",
+ "people-number": "Ihmisten määrä on:",
+ "swimlaneDeletePopup-title": "Poista Swimlane?",
+ "swimlane-delete-pop": "Kaikki toimet poistetaan toimintasyötteestä ja swimlanen poistaminen on lopullista. Tätä ei pysty peruuttamaan.",
+ "restore-all": "Palauta kaikki",
+ "delete-all": "Poista kaikki",
+ "loading": "Ladataan, odota hetki.",
+ "previous_as": "viimeksi oli",
+ "act-a-dueAt": "muokattu eräätymisaikaa \nMilloin: __timeValue__\nMissä: __card__\n edellinen erääntymisaika oli __timeOldValue__",
+ "act-a-endAt": "muokattu loppumisajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
+ "act-a-startAt": "muokattu aloitusajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
+ "act-a-receivedAt": "muutettu vastaanottamisajaksi __timeValue__ alkuperäisestä (__timeOldValue__)",
+ "a-dueAt": "muutettu vastaanottamisajaksi",
+ "a-endAt": "muokattu loppumisajaksi",
+ "a-startAt": "muokattu aloitusajaksi",
+ "a-receivedAt": "muokattu vastaanottamisajaksi",
+ "almostdue": "nykyinen eräaika %s lähestyy",
+ "pastdue": "nykyinen eräaika %s on mennyt",
+ "duenow": "nykyinen eräaika %s on tänään",
+ "act-withDue": "__card__ eräaika muistutukset [__board__]",
+ "act-almostdue": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ lähestyvän",
+ "act-pastdue": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ menneen",
+ "act-duenow": "muistutti nykyisen eräajan (__timeValue__) kortilla __card__ olevan nyt",
+ "act-atUserComment": "Sinut mainittiin [__board__] __card__",
+ "delete-user-confirm-popup": "Haluatko varmasti poistaa tämän käyttäjätilin? Tätä ei voi peruuttaa.",
+ "accounts-allowUserDelete": "Salli käyttäjien poistaa tilinsä itse",
+ "hide-minicard-label-text": "Piilota minikortin tunniste teksti"
+}
diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json
index b0457cc0..ec9bf5e8 100644
--- a/i18n/fr.i18n.json
+++ b/i18n/fr.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Accepter",
- "act-activity-notify": "Notification d'activité",
- "act-addAttachment": "a ajouté la pièce jointe __attachment__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-deleteAttachment": "a supprimé la pièce jointe __attachment__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-addSubtask": "a ajouté la sous-tâche __checklist__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-addLabel": "a ajouté l'étiquette __label__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-addedLabel": "a ajouté l'étiquette __label__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-removeLabel": "a enlevé l'étiquette __label__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-removedLabel": "a enlevé l'étiquette __label__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-addChecklist": "a ajouté la checklist __checklist__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-addChecklistItem": "a ajouté l'élément __checklistItem__ à la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-removeChecklist": "a supprimé la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-removeChecklistItem": "a supprimé l'élément __checklistItem__ de la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-checkedItem": "a coché __checklistItem__ de la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-uncheckedItem": "a décoché __checklistItem__ de la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-completeChecklist": "a complété la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-uncompleteChecklist": "a rendu incomplet la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-addComment": "a commenté la carte __card__ : __comment__ dans la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-editComment": "a édité le commentaire de la carte __card__ : __comment__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-deleteComment": "a supprimé le commentaire de la carte __card__ : __comment__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-createBoard": "a créé le tableau __board__",
- "act-createSwimlane": "a créé le couloir __swimlane__ dans le tableau __board__",
- "act-createCard": "a créé la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-createCustomField": "a créé le champ personnalisé __customField__ du tableau __board__",
- "act-deleteCustomField": "a supprimé le champ personnalisé __customField__ du tableau __board__",
- "act-setCustomField": "a édité le champ personnalisé __customField__ : __customFieldValue de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-createList": "a ajouté la liste __list__ au tableau __board__",
- "act-addBoardMember": "a ajouté le participant __member__ au tableau __board__",
- "act-archivedBoard": "Le tableau __board__ a été déplacé vers les archives",
- "act-archivedCard": "Carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__ archivée",
- "act-archivedList": "Liste __list__ du couloir __swimlane__ du tableau __board__ archivée",
- "act-archivedSwimlane": "Couloir __swimlane__ du tableau __board__ archivé",
- "act-importBoard": "a importé le tableau __board__",
- "act-importCard": "a importé la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-importList": "a importé la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-joinMember": "a ajouté le participant __member__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-moveCard": "a déplacé la carte __card__ du tableau __board__ de la liste __oldList__ du couloir __oldSwimlane__ vers la liste __list__ du couloir __swimlane__",
- "act-moveCardToOtherBoard": "a déplacé la carte __card__ de la liste __oldList__ du couloir __oldSwimlane__ du tableau __oldBoard__ vers la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-removeBoardMember": "a supprimé le participant __member__ du tableau __board__",
- "act-restoredCard": "a restauré la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-unjoinMember": "a supprimé le participant __member__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activités",
- "activity": "Activité",
- "activity-added": "a ajouté %s à %s",
- "activity-archived": "%s a été archivé",
- "activity-attached": "a attaché %s à %s",
- "activity-created": "a créé %s",
- "activity-customfield-created": "a créé le champ personnalisé %s",
- "activity-excluded": "a exclu %s de %s",
- "activity-imported": "a importé %s vers %s depuis %s",
- "activity-imported-board": "a importé %s depuis %s",
- "activity-joined": "a rejoint %s",
- "activity-moved": "a déplacé %s de %s vers %s",
- "activity-on": "sur %s",
- "activity-removed": "a supprimé %s de %s",
- "activity-sent": "a envoyé %s vers %s",
- "activity-unjoined": "a quitté %s",
- "activity-subtask-added": "a ajouté une sous-tâche à %s",
- "activity-checked-item": "a coché %s dans la checklist %s de %s",
- "activity-unchecked-item": "a décoché %s dans la checklist %s de %s",
- "activity-checklist-added": "a ajouté une checklist à %s",
- "activity-checklist-removed": "a supprimé une checklist de %s",
- "activity-checklist-completed": "a complété la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "activity-checklist-uncompleted": "a rendu incomplète la checklist %s de %s",
- "activity-checklist-item-added": "a ajouté un élément à la checklist '%s' dans %s",
- "activity-checklist-item-removed": "a supprimé une checklist de '%s' dans %s",
- "add": "Ajouter",
- "activity-checked-item-card": "a coché %s dans la checklist %s",
- "activity-unchecked-item-card": "a décoché %s dans la checklist %s",
- "activity-checklist-completed-card": "a complété la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
- "activity-checklist-uncompleted-card": "a rendu incomplète la checklist %s",
- "add-attachment": "Ajouter une pièce jointe",
- "add-board": "Ajouter un tableau",
- "add-card": "Ajouter une carte",
- "add-swimlane": "Ajouter un couloir",
- "add-subtask": "Ajouter une sous-tâche",
- "add-checklist": "Ajouter une checklist",
- "add-checklist-item": "Ajouter un élément à la checklist",
- "add-cover": "Ajouter la couverture",
- "add-label": "Ajouter une étiquette",
- "add-list": "Ajouter une liste",
- "add-members": "Assigner des participants",
- "added": "Ajouté le",
- "addMemberPopup-title": "Participants",
- "admin": "Admin",
- "admin-desc": "Peut voir et éditer les cartes, supprimer des participants et changer les paramètres du tableau.",
- "admin-announcement": "Annonce",
- "admin-announcement-active": "Annonce destinée à tous",
- "admin-announcement-title": "Annonce de l'administrateur",
- "all-boards": "Tous les tableaux",
- "and-n-other-card": "Et __count__ autre carte",
- "and-n-other-card_plural": "Et __count__ autres cartes",
- "apply": "Appliquer",
- "app-is-offline": "Chargement en cours, veuillez patienter. Vous risquez de perdre des données si vous rechargez la page. Si le chargement échoue, veuillez vérifier que le serveur n'est pas arrêté.",
- "archive": "Archiver",
- "archive-all": "Tout archiver",
- "archive-board": "Archiver le tableau",
- "archive-card": "Archiver la carte",
- "archive-list": "Archiver la liste",
- "archive-swimlane": "Archiver le couloir",
- "archive-selection": "Archiver la sélection",
- "archiveBoardPopup-title": "Archiver le tableau ?",
- "archived-items": "Archives",
- "archived-boards": "Tableaux archivés",
- "restore-board": "Restaurer le tableau",
- "no-archived-boards": "Aucun tableau archivé.",
- "archives": "Archives",
- "template": "Modèle",
- "templates": "Modèles",
- "assign-member": "Affecter un participant",
- "attached": "joint",
- "attachment": "Pièce jointe",
- "attachment-delete-pop": "La suppression d'une pièce jointe est définitive. Elle ne peut être annulée.",
- "attachmentDeletePopup-title": "Supprimer la pièce jointe ?",
- "attachments": "Pièces jointes",
- "auto-watch": "Surveiller automatiquement les tableaux quand ils sont créés",
- "avatar-too-big": "La taille du fichier de l'avatar est trop importante (70 ko au maximum)",
- "back": "Retour",
- "board-change-color": "Changer la couleur",
- "board-nb-stars": "%s étoiles",
- "board-not-found": "Tableau non trouvé",
- "board-private-info": "Ce tableau sera <strong>privé</strong>",
- "board-public-info": "Ce tableau sera <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change la couleur de fond du tableau",
- "boardChangeTitlePopup-title": "Renommer le tableau",
- "boardChangeVisibilityPopup-title": "Changer la visibilité",
- "boardChangeWatchPopup-title": "Modifier le suivi",
- "boardMenuPopup-title": "Paramètres du tableau",
- "boards": "Tableaux",
- "board-view": "Vue du tableau",
- "board-view-cal": "Calendrier",
- "board-view-swimlanes": "Couloirs",
- "board-view-lists": "Listes",
- "bucket-example": "Comme « todo list » par exemple",
- "cancel": "Annuler",
- "card-archived": "Cette carte est archivée",
- "board-archived": "Ce tableau est archivé",
- "card-comments-title": "Cette carte a %s commentaires.",
- "card-delete-notice": "La suppression est permanente. Vous perdrez toutes les actions associées à cette carte.",
- "card-delete-pop": "Toutes les actions vont être supprimées du suivi d'activités et vous ne pourrez plus utiliser cette carte. Cette action est irréversible.",
- "card-delete-suggest-archive": "Vous pouvez déplacer une carte vers les archives afin de l'enlever du tableau tout en préservant l'activité.",
- "card-due": "À échéance",
- "card-due-on": "Échéance le",
- "card-spent": "Temps passé",
- "card-edit-attachments": "Modifier les pièces jointes",
- "card-edit-custom-fields": "Éditer les champs personnalisés",
- "card-edit-labels": "Gérer les étiquettes",
- "card-edit-members": "Gérer les participants",
- "card-labels-title": "Modifier les étiquettes de la carte.",
- "card-members-title": "Assigner ou supprimer des participants à la carte.",
- "card-start": "Début",
- "card-start-on": "Commence le",
- "cardAttachmentsPopup-title": "Ajouter depuis",
- "cardCustomField-datePopup-title": "Modifier la date",
- "cardCustomFieldsPopup-title": "Éditer les champs personnalisés",
- "cardDeletePopup-title": "Supprimer la carte ?",
- "cardDetailsActionsPopup-title": "Actions sur la carte",
- "cardLabelsPopup-title": "Étiquettes",
- "cardMembersPopup-title": "Participants",
- "cardMorePopup-title": "Plus",
- "cardTemplatePopup-title": "Créer un modèle",
- "cards": "Cartes",
- "cards-count": "Cartes",
- "casSignIn": "Se connecter avec CAS",
- "cardType-card": "Carte",
- "cardType-linkedCard": "Carte liée",
- "cardType-linkedBoard": "Tableau lié",
- "change": "Modifier",
- "change-avatar": "Modifier l'avatar",
- "change-password": "Modifier le mot de passe",
- "change-permissions": "Modifier les permissions",
- "change-settings": "Modifier les paramètres",
- "changeAvatarPopup-title": "Modifier l'avatar",
- "changeLanguagePopup-title": "Modifier la langue",
- "changePasswordPopup-title": "Modifier le mot de passe",
- "changePermissionsPopup-title": "Modifier les permissions",
- "changeSettingsPopup-title": "Modifier les paramètres",
- "subtasks": "Sous-tâches",
- "checklists": "Checklists",
- "click-to-star": "Cliquez pour ajouter ce tableau aux favoris.",
- "click-to-unstar": "Cliquez pour retirer ce tableau des favoris.",
- "clipboard": "Presse-papier ou glisser-déposer",
- "close": "Fermer",
- "close-board": "Fermer le tableau",
- "close-board-pop": "Vous pouvez restaurer le tableau en cliquant sur le bouton « Archives » depuis le menu en entête.",
- "color-black": "noir",
- "color-blue": "bleu",
- "color-crimson": "rouge cramoisi",
- "color-darkgreen": "vert foncé",
- "color-gold": "or",
- "color-gray": "gris",
- "color-green": "vert",
- "color-indigo": "indigo",
- "color-lime": "citron vert",
- "color-magenta": "magenta",
- "color-mistyrose": "rose brumeux",
- "color-navy": "bleu marin",
- "color-orange": "orange",
- "color-paleturquoise": "azurin",
- "color-peachpuff": "beige pêche",
- "color-pink": "rose",
- "color-plum": "prune",
- "color-purple": "violet",
- "color-red": "rouge",
- "color-saddlebrown": "brun cuir",
- "color-silver": "argent",
- "color-sky": "ciel",
- "color-slateblue": "bleu ardoise",
- "color-white": "blanc",
- "color-yellow": "jaune",
- "unset-color": "Enlever",
- "comment": "Commenter",
- "comment-placeholder": "Écrire un commentaire",
- "comment-only": "Commentaire uniquement",
- "comment-only-desc": "Ne peut que commenter des cartes.",
- "no-comments": "Aucun commentaire",
- "no-comments-desc": "Ne peut pas voir les commentaires et les activités.",
- "computer": "Ordinateur",
- "confirm-subtask-delete-dialog": "Êtes-vous sûr de vouloir supprimer la sous-tâche ?",
- "confirm-checklist-delete-dialog": "Êtes-vous sûr de vouloir supprimer la checklist ?",
- "copy-card-link-to-clipboard": "Copier le lien vers la carte dans le presse-papier",
- "linkCardPopup-title": "Lier une Carte",
- "searchElementPopup-title": "Chercher",
- "copyCardPopup-title": "Copier la carte",
- "copyChecklistToManyCardsPopup-title": "Copier le modèle de checklist vers plusieurs cartes",
- "copyChecklistToManyCardsPopup-instructions": "Titres et descriptions des cartes de destination dans ce format JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titre de la première carte\", \"description\":\"Description de la première carte\"}, {\"title\":\"Titre de la seconde carte\",\"description\":\"Description de la seconde carte\"},{\"title\":\"Titre de la dernière carte\",\"description\":\"Description de la dernière carte\"} ]",
- "create": "Créer",
- "createBoardPopup-title": "Créer un tableau",
- "chooseBoardSourcePopup-title": "Importer un tableau",
- "createLabelPopup-title": "Créer une étiquette",
- "createCustomField": "Créer un champ personnalisé",
- "createCustomFieldPopup-title": "Créer un champ personnalisé",
- "current": "actuel",
- "custom-field-delete-pop": "Cette action n'est pas réversible. Elle supprimera ce champ personnalisé de toutes les cartes et détruira son historique.",
- "custom-field-checkbox": "Case à cocher",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Liste de choix",
- "custom-field-dropdown-none": "(aucun)",
- "custom-field-dropdown-options": "Options de liste",
- "custom-field-dropdown-options-placeholder": "Appuyez sur Entrée pour ajouter d'autres options",
- "custom-field-dropdown-unknown": "(inconnu)",
- "custom-field-number": "Nombre",
- "custom-field-text": "Texte",
- "custom-fields": "Champs personnalisés",
- "date": "Date",
- "decline": "Refuser",
- "default-avatar": "Avatar par défaut",
- "delete": "Supprimer",
- "deleteCustomFieldPopup-title": "Supprimer le champ personnalisé ?",
- "deleteLabelPopup-title": "Supprimer l'étiquette ?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Préciser l'action sur l'étiquette",
- "disambiguateMultiMemberPopup-title": "Préciser l'action sur le participant",
- "discard": "Mettre à la corbeille",
- "done": "Fait",
- "download": "Télécharger",
- "edit": "Modifier",
- "edit-avatar": "Modifier l'avatar",
- "edit-profile": "Modifier le profil",
- "edit-wip-limit": "Éditer la limite WIP",
- "soft-wip-limit": "Limite WIP douce",
- "editCardStartDatePopup-title": "Modifier la date de début",
- "editCardDueDatePopup-title": "Modifier la date d'échéance",
- "editCustomFieldPopup-title": "Éditer le champ personnalisé",
- "editCardSpentTimePopup-title": "Modifier le temps passé",
- "editLabelPopup-title": "Modifier l'étiquette",
- "editNotificationPopup-title": "Modifier la notification",
- "editProfilePopup-title": "Modifier le profil",
- "email": "E-mail",
- "email-enrollAccount-subject": "Un compte a été créé pour vous sur __siteName__",
- "email-enrollAccount-text": "Bonjour __user__,\n\nPour commencer à utiliser ce service, il suffit de cliquer sur le lien ci-dessous.\n\n__url__\n\nMerci.",
- "email-fail": "Échec de l'envoi du courriel.",
- "email-fail-text": "Une erreur est survenue en tentant d'envoyer l'email",
- "email-invalid": "Adresse e-mail incorrecte.",
- "email-invite": "Inviter par e-mail",
- "email-invite-subject": "__inviter__ vous a envoyé une invitation",
- "email-invite-text": "Cher __user__,\n\n__inviter__ vous invite à rejoindre le tableau \"__board__\" pour collaborer.\n\nVeuillez suivre le lien ci-dessous :\n\n__url__\n\nMerci.",
- "email-resetPassword-subject": "Réinitialiser votre mot de passe sur __siteName__",
- "email-resetPassword-text": "Bonjour __user__,\n\nPour réinitialiser votre mot de passe, cliquez sur le lien ci-dessous.\n\n__url__\n\nMerci.",
- "email-sent": "Courriel envoyé",
- "email-verifyEmail-subject": "Vérifier votre adresse de courriel sur __siteName__",
- "email-verifyEmail-text": "Bonjour __user__,\n\nPour vérifier votre compte courriel, il suffit de cliquer sur le lien ci-dessous.\n\n__url__\n\nMerci.",
- "enable-wip-limit": "Activer la limite WIP",
- "error-board-doesNotExist": "Ce tableau n'existe pas",
- "error-board-notAdmin": "Vous devez être administrateur de ce tableau pour faire cela",
- "error-board-notAMember": "Vous devez être participant de ce tableau pour faire cela",
- "error-json-malformed": "Votre texte JSON n'est pas valide",
- "error-json-schema": "Vos données JSON ne contiennent pas l'information appropriée dans un format correct",
- "error-list-doesNotExist": "Cette liste n'existe pas",
- "error-user-doesNotExist": "Cet utilisateur n'existe pas",
- "error-user-notAllowSelf": "Vous ne pouvez pas vous inviter vous-même",
- "error-user-notCreated": "Cet utilisateur n'a pas encore été créé",
- "error-username-taken": "Ce nom d'utilisateur est déjà utilisé",
- "error-email-taken": "Cette adresse mail est déjà utilisée",
- "export-board": "Exporter le tableau",
- "filter": "Filtrer",
- "filter-cards": "Filtrer les cartes",
- "filter-clear": "Supprimer les filtres",
- "filter-no-label": "Aucune étiquette",
- "filter-no-member": "Aucun participant",
- "filter-no-custom-fields": "Pas de champs personnalisés",
- "filter-on": "Le filtre est actif",
- "filter-on-desc": "Vous êtes en train de filtrer les cartes sur ce tableau. Cliquez ici pour modifier les filtres.",
- "filter-to-selection": "Filtre vers la sélection",
- "advanced-filter-label": "Filtre avancé",
- "advanced-filter-description": "Le filtre avancé permet d'écrire une chaîne contenant les opérateur suivants : == != <= >= && || ( ). Les opérateurs doivent être séparés par des espaces. Vous pouvez filtrer tous les champs personnalisés en saisissant leur nom et leur valeur. Par exemple : champ1 == valeur1. Remarque : si des champs ou valeurs contiennent des espaces, vous devez les mettre entre apostrophes. Par exemple : 'champ 1' = 'valeur 1'. Pour échapper un caractère de contrôle (' \\/), vous pouvez utiliser \\. Par exemple : champ1 = I\\'m. Il est également possible de combiner plusieurs conditions. Par exemple : f1 == v1 || f2 == v2. Normalement, tous les opérateurs sont interprétés de gauche à droite. Vous pouvez changer l'ordre à l'aide de parenthèses. Par exemple : f1 == v1 and (f2 == v2 || f2 == v3). Vous pouvez également chercher parmi les champs texte en utilisant des expressions régulières : f1 == /Test.*/i",
- "fullname": "Nom complet",
- "header-logo-title": "Retourner à la page des tableaux",
- "hide-system-messages": "Masquer les messages système",
- "headerBarCreateBoardPopup-title": "Créer un tableau",
- "home": "Accueil",
- "import": "Importer",
- "link": "Lien",
- "import-board": "importer un tableau",
- "import-board-c": "Importer un tableau",
- "import-board-title-trello": "Importer un tableau depuis Trello",
- "import-board-title-wekan": "Importer un tableau depuis un export précédent",
- "import-sandstorm-backup-warning": "Ne supprimez pas les données que vous importez d'un tableau exporté d'origine ou de Trello avant de vérifier que la graine peut se fermer et s'ouvrir à nouveau ou qu'une erreur \"Tableau introuvable\" survient, sinon vous perdrez vos données.",
- "import-sandstorm-warning": "Le tableau importé supprimera toutes les données du tableau et les remplacera avec celles du tableau importé.",
- "from-trello": "Depuis Trello",
- "from-wekan": "Depuis un export précédent",
- "import-board-instruction-trello": "Dans votre tableau Trello, allez sur 'Menu', puis sur 'Plus', 'Imprimer et exporter', 'Exporter en JSON' et copiez le texte du résultat",
- "import-board-instruction-wekan": "Dans votre tableau, allez dans 'Menu', puis 'Exporter un tableau', et copier le texte du fichier téléchargé.",
- "import-board-instruction-about-errors": "Si une erreur survient en important le tableau, il se peut que l'import ait fonctionné, et que le tableau se trouve sur la page \"Tous les tableaux\".",
- "import-json-placeholder": "Collez ici les données JSON valides",
- "import-map-members": "Assigner des participants",
- "import-members-map": "Le tableau que vous venez d'importer contient des participants. Veuillez assigner les participants que vous souhaitez importer à vos utilisateurs.",
- "import-show-user-mapping": "Contrôler l'assignation des participants",
- "import-user-select": "Sélectionnez l'utilisateur existant que vous voulez associer à ce participant",
- "importMapMembersAddPopup-title": "Sélectionner le participant",
- "info": "Version",
- "initials": "Initiales",
- "invalid-date": "Date invalide",
- "invalid-time": "Heure invalide",
- "invalid-user": "Utilisateur invalide",
- "joined": "a rejoint",
- "just-invited": "Vous venez d'être invité à ce tableau",
- "keyboard-shortcuts": "Raccourcis clavier",
- "label-create": "Créer une étiquette",
- "label-default": "étiquette %s (défaut)",
- "label-delete-pop": "Cette action est irréversible. Elle supprimera cette étiquette de toutes les cartes ainsi que l'historique associé.",
- "labels": "Étiquettes",
- "language": "Langue",
- "last-admin-desc": "Vous ne pouvez pas changer les rôles car il doit y avoir au moins un administrateur.",
- "leave-board": "Quitter le tableau",
- "leave-board-pop": "Êtes-vous sur de vouloir quitter __boardTitle__ ? Vous ne serez plus associé aux cartes de ce tableau.",
- "leaveBoardPopup-title": "Quitter le tableau",
- "link-card": "Lier à cette carte",
- "list-archive-cards": "Déplacer toutes les cartes de cette liste vers les archives",
- "list-archive-cards-pop": "Cela supprimera du tableau toutes les cartes de cette liste. Pour voir les cartes archivées et les renvoyer vers le tableau, cliquez sur « Menu » puis « Archives ».",
- "list-move-cards": "Déplacer toutes les cartes de cette liste",
- "list-select-cards": "Sélectionner toutes les cartes de cette liste",
- "set-color-list": "Définir la couleur",
- "listActionPopup-title": "Actions sur la liste",
- "swimlaneActionPopup-title": "Actions du couloir",
- "swimlaneAddPopup-title": "Ajouter un couloir en dessous",
- "listImportCardPopup-title": "Importer une carte Trello",
- "listMorePopup-title": "Plus",
- "link-list": "Lien vers cette liste",
- "list-delete-pop": "Toutes les actions seront supprimées du fil d'activité et il ne sera plus possible de les récupérer. Cette action est irréversible.",
- "list-delete-suggest-archive": "Vous pouvez archiver une liste pour l'enlever du tableau tout en conservant son activité.",
- "lists": "Listes",
- "swimlanes": "Couloirs",
- "log-out": "Déconnexion",
- "log-in": "Connexion",
- "loginPopup-title": "Connexion",
- "memberMenuPopup-title": "Préférence du participant",
- "members": "Participants",
- "menu": "Menu",
- "move-selection": "Déplacer la sélection",
- "moveCardPopup-title": "Déplacer la carte",
- "moveCardToBottom-title": "Déplacer tout en bas",
- "moveCardToTop-title": "Déplacer tout en haut",
- "moveSelectionPopup-title": "Déplacer la sélection",
- "multi-selection": "Sélection multiple",
- "multi-selection-on": "Multi-Selection active",
- "muted": "Silencieux",
- "muted-info": "Vous ne serez jamais averti des modifications effectuées dans ce tableau",
- "my-boards": "Mes tableaux",
- "name": "Nom",
- "no-archived-cards": "Aucune carte archivée.",
- "no-archived-lists": "Aucune liste archivée.",
- "no-archived-swimlanes": "Aucun couloir archivé.",
- "no-results": "Pas de résultats",
- "normal": "Normal",
- "normal-desc": "Peut voir et modifier les cartes. Ne peut pas changer les paramètres.",
- "not-accepted-yet": "L'invitation n'a pas encore été acceptée",
- "notify-participate": "Recevoir les mises à jour de toutes les cartes auxquelles vous participez en tant que créateur ou que participant",
- "notify-watch": "Recevoir les mises à jour de tous les tableaux, listes ou cartes que vous suivez",
- "optional": "optionnel",
- "or": "ou",
- "page-maybe-private": "Cette page est peut-être privée. Vous pourrez peut-être la voir en vous <a href='%s'>connectant</a>.",
- "page-not-found": "Page non trouvée",
- "password": "Mot de passe",
- "paste-or-dragdrop": "pour coller, ou glissez-déposez une image ici (seulement une image)",
- "participating": "Participant",
- "preview": "Prévisualiser",
- "previewAttachedImagePopup-title": "Prévisualiser",
- "previewClipboardImagePopup-title": "Prévisualiser",
- "private": "Privé",
- "private-desc": "Ce tableau est privé. Seuls les membres peuvent y accéder et le modifier.",
- "profile": "Profil",
- "public": "Public",
- "public-desc": "Ce tableau est public. Il est accessible par toutes les personnes disposant du lien et apparaîtra dans les résultats des moteurs de recherche tels que Google. Seuls les membres peuvent le modifier.",
- "quick-access-description": "Ajouter un tableau à vos favoris pour créer un raccourci dans cette barre.",
- "remove-cover": "Enlever la page de présentation",
- "remove-from-board": "Retirer du tableau",
- "remove-label": "Retirer l'étiquette",
- "listDeletePopup-title": "Supprimer la liste ?",
- "remove-member": "Supprimer le participant",
- "remove-member-from-card": "Supprimer de la carte",
- "remove-member-pop": "Supprimer __name__ (__username__) de __boardTitle__ ? Ce participant sera supprimé de toutes les cartes du tableau et recevra une notification.",
- "removeMemberPopup-title": "Supprimer le participant ?",
- "rename": "Renommer",
- "rename-board": "Renommer le tableau",
- "restore": "Restaurer",
- "save": "Enregistrer",
- "search": "Chercher",
- "rules": "Règles",
- "search-cards": "Rechercher parmi les titres et descriptions des cartes de ce tableau",
- "search-example": "Texte à rechercher ?",
- "select-color": "Sélectionner une couleur",
- "set-wip-limit-value": "Définit une limite maximale au nombre de cartes de cette liste",
- "setWipLimitPopup-title": "Définir la limite WIP",
- "shortcut-assign-self": "Affecter cette carte à vous-même",
- "shortcut-autocomplete-emoji": "Auto-complétion des emoji",
- "shortcut-autocomplete-members": "Auto-complétion des participants",
- "shortcut-clear-filters": "Retirer tous les filtres",
- "shortcut-close-dialog": "Fermer la boîte de dialogue",
- "shortcut-filter-my-cards": "Filtrer mes cartes",
- "shortcut-show-shortcuts": "Afficher cette liste de raccourcis",
- "shortcut-toggle-filterbar": "Afficher/Masquer la barre latérale des filtres",
- "shortcut-toggle-sidebar": "Afficher/Masquer la barre latérale du tableau",
- "show-cards-minimum-count": "Afficher le nombre de cartes si la liste en contient plus de",
- "sidebar-open": "Ouvrir le panneau",
- "sidebar-close": "Fermer le panneau",
- "signupPopup-title": "Créer un compte",
- "star-board-title": "Cliquer pour ajouter ce tableau aux favoris. Il sera affiché en tête de votre liste de tableaux.",
- "starred-boards": "Tableaux favoris",
- "starred-boards-description": "Les tableaux favoris s'affichent en tête de votre liste de tableaux.",
- "subscribe": "Suivre",
- "team": "Équipe",
- "this-board": "ce tableau",
- "this-card": "cette carte",
- "spent-time-hours": "Temps passé (heures)",
- "overtime-hours": "Temps supplémentaire (heures)",
- "overtime": "Temps supplémentaire",
- "has-overtime-cards": "A des cartes avec du temps supplémentaire",
- "has-spenttime-cards": "A des cartes avec du temps passé",
- "time": "Temps",
- "title": "Titre",
- "tracking": "Suivi",
- "tracking-info": "Vous serez notifié de toute modification concernant les cartes pour lesquelles vous êtes impliqué en tant que créateur ou participant.",
- "type": "Type",
- "unassign-member": "Retirer le participant",
- "unsaved-description": "Vous avez une description non sauvegardée",
- "unwatch": "Arrêter de suivre",
- "upload": "Télécharger",
- "upload-avatar": "Télécharger un avatar",
- "uploaded-avatar": "Avatar téléchargé",
- "username": "Nom d'utilisateur",
- "view-it": "Le voir",
- "warn-list-archived": "attention : cette carte est dans une liste archivée",
- "watch": "Suivre",
- "watching": "Suivi",
- "watching-info": "Vous serez notifié de toute modification dans ce tableau",
- "welcome-board": "Tableau de bienvenue",
- "welcome-swimlane": "Jalon 1",
- "welcome-list1": "Basiques",
- "welcome-list2": "Avancés",
- "card-templates-swimlane": "Modèles de cartes",
- "list-templates-swimlane": "Modèles de listes",
- "board-templates-swimlane": "Modèles de tableaux",
- "what-to-do": "Que voulez-vous faire ?",
- "wipLimitErrorPopup-title": "Limite WIP invalide",
- "wipLimitErrorPopup-dialog-pt1": "Le nombre de cartes de cette liste est supérieur à la limite WIP que vous avez définie.",
- "wipLimitErrorPopup-dialog-pt2": "Veuillez enlever des cartes de cette liste, ou définir une limite WIP plus importante.",
- "admin-panel": "Panneau d'administration",
- "settings": "Paramètres",
- "people": "Personne",
- "registration": "Inscription",
- "disable-self-registration": "Désactiver l'inscription",
- "invite": "Inviter",
- "invite-people": "Inviter une personne",
- "to-boards": "Au(x) tableau(x)",
- "email-addresses": "Adresses mail",
- "smtp-host-description": "L'adresse du serveur SMTP qui gère vos mails.",
- "smtp-port-description": "Le port des mails sortants du serveur SMTP.",
- "smtp-tls-description": "Activer la gestion de TLS sur le serveur SMTP",
- "smtp-host": "Hôte SMTP",
- "smtp-port": "Port SMTP",
- "smtp-username": "Nom d'utilisateur",
- "smtp-password": "Mot de passe",
- "smtp-tls": "Prise en charge de TLS",
- "send-from": "De",
- "send-smtp-test": "Envoyer un mail de test à vous-même",
- "invitation-code": "Code d'invitation",
- "email-invite-register-subject": "__inviter__ vous a envoyé une invitation",
- "email-invite-register-text": "Cher __user__,\n\n__inviter__ vous invite à le rejoindre sur le tableau kanban pour collaborer.\n\nVeuillez suivre le lien ci-dessous :\n__url__\n\nVotre code d'invitation est : __icode__\n\nMerci.",
- "email-smtp-test-subject": "E-mail de test SMTP",
- "email-smtp-test-text": "Vous avez envoyé un mail avec succès",
- "error-invitation-code-not-exist": "Ce code d'invitation n'existe pas.",
- "error-notAuthorized": "Vous n'êtes pas autorisé à accéder à cette page.",
- "outgoing-webhooks": "Webhooks sortants",
- "outgoingWebhooksPopup-title": "Webhooks sortants",
- "boardCardTitlePopup-title": "Filtre par titre de carte",
- "new-outgoing-webhook": "Nouveau webhook sortant",
- "no-name": "(Inconnu)",
- "Node_version": "Version de Node",
- "OS_Arch": "OS Architecture",
- "OS_Cpus": "OS Nombre CPU",
- "OS_Freemem": "OS Mémoire libre",
- "OS_Loadavg": "OS Charge moyenne",
- "OS_Platform": "OS Plate-forme",
- "OS_Release": "OS Version",
- "OS_Totalmem": "OS Mémoire totale",
- "OS_Type": "Type d'OS",
- "OS_Uptime": "OS Durée de fonctionnement",
- "days": "jours",
- "hours": "heures",
- "minutes": "minutes",
- "seconds": "secondes",
- "show-field-on-card": "Afficher ce champ sur la carte",
- "automatically-field-on-card": "Créer automatiquement le champ sur toutes les cartes",
- "showLabel-field-on-card": "Indiquer l'étiquette du champ sur la mini-carte",
- "yes": "Oui",
- "no": "Non",
- "accounts": "Comptes",
- "accounts-allowEmailChange": "Autoriser le changement d'adresse mail",
- "accounts-allowUserNameChange": "Autoriser le changement d'identifiant",
- "createdAt": "Créé le",
- "verified": "Vérifié",
- "active": "Actif",
- "card-received": "Reçue",
- "card-received-on": "Reçue le",
- "card-end": "Fin",
- "card-end-on": "Se termine le",
- "editCardReceivedDatePopup-title": "Modifier la date de réception",
- "editCardEndDatePopup-title": "Modifier la date de fin",
- "setCardColorPopup-title": "Définir la couleur",
- "setCardActionsColorPopup-title": "Choisissez une couleur",
- "setSwimlaneColorPopup-title": "Choisissez une couleur",
- "setListColorPopup-title": "Choisissez une couleur",
- "assigned-by": "Assigné par",
- "requested-by": "Demandé par",
- "board-delete-notice": "La suppression est définitive. Vous perdrez toutes les listes, cartes et actions associées à ce tableau.",
- "delete-board-confirm-popup": "Toutes les listes, cartes, étiquettes et activités seront supprimées et vous ne pourrez pas retrouver le contenu du tableau. Il n'y a pas d'annulation possible.",
- "boardDeletePopup-title": "Supprimer le tableau ?",
- "delete-board": "Supprimer le tableau",
- "default-subtasks-board": "Sous-tâches du tableau __board__",
- "default": "Défaut",
- "queue": "Queue",
- "subtask-settings": "Paramètres des sous-tâches",
- "boardSubtaskSettingsPopup-title": "Paramètres des sous-tâches du tableau",
- "show-subtasks-field": "Les cartes peuvent avoir des sous-tâches",
- "deposit-subtasks-board": "Déposer des sous-tâches dans ce tableau :",
- "deposit-subtasks-list": "Liste de destination pour les sous-tâches déposées ici :",
- "show-parent-in-minicard": "Voir la carte parente dans la mini-carte :",
- "prefix-with-full-path": "Préfixer avec le chemin complet",
- "prefix-with-parent": "Préfixer avec le parent",
- "subtext-with-full-path": "Sous-titre avec le chemin complet",
- "subtext-with-parent": "Sous-titre avec le parent",
- "change-card-parent": "Changer le parent de la carte",
- "parent-card": "Carte parente",
- "source-board": "Tableau source",
- "no-parent": "Ne pas afficher le parent",
- "activity-added-label": "a ajouté l'étiquette '%s' à %s",
- "activity-removed-label": "a supprimé l'étiquette '%s' de %s",
- "activity-delete-attach": "a supprimé une pièce jointe de %s",
- "activity-added-label-card": "a ajouté l'étiquette '%s'",
- "activity-removed-label-card": "a supprimé l'étiquette '%s'",
- "activity-delete-attach-card": "a supprimé une pièce jointe",
- "activity-set-customfield": "a défini le champ personnalisé '%s' à '%s' dans %s",
- "activity-unset-customfield": "a effacé le champ personnalisé '%s' dans %s",
- "r-rule": "Règle",
- "r-add-trigger": "Ajouter un déclencheur",
- "r-add-action": "Ajouter une action",
- "r-board-rules": "Règles du tableau",
- "r-add-rule": "Ajouter une règle",
- "r-view-rule": "Voir la règle",
- "r-delete-rule": "Supprimer la règle",
- "r-new-rule-name": "Titre de la nouvelle règle",
- "r-no-rules": "Pas de règles",
- "r-when-a-card": "Quand une carte",
- "r-is": "est",
- "r-is-moved": "est déplacée",
- "r-added-to": "est ajoutée à",
- "r-removed-from": "Supprimé de",
- "r-the-board": "tableau",
- "r-list": "liste",
- "set-filter": "Définir un filtre",
- "r-moved-to": "Déplacé vers",
- "r-moved-from": "Déplacé depuis",
- "r-archived": "Archivé",
- "r-unarchived": "Restauré depuis l'Archive",
- "r-a-card": "carte",
- "r-when-a-label-is": "Quand une étiquette est",
- "r-when-the-label": "Quand l'étiquette est",
- "r-list-name": "Nom de la liste",
- "r-when-a-member": "Quand un participant est",
- "r-when-the-member": "Quand le participant",
- "r-name": "nom",
- "r-when-a-attach": "Quand une pièce jointe",
- "r-when-a-checklist": "Quand une checklist est",
- "r-when-the-checklist": "Quand la checklist",
- "r-completed": "Terminé",
- "r-made-incomplete": "Rendu incomplet",
- "r-when-a-item": "Quand un élément de la checklist est",
- "r-when-the-item": "Quand l'élément de la checklist",
- "r-checked": "Coché",
- "r-unchecked": "Décoché",
- "r-move-card-to": "Déplacer la carte vers",
- "r-top-of": "En haut de",
- "r-bottom-of": "En bas de",
- "r-its-list": "sa liste",
- "r-archive": "Archiver",
- "r-unarchive": "Restaurer depuis l'Archive",
- "r-card": "carte",
- "r-add": "Ajouter",
- "r-remove": "Supprimer",
- "r-label": "étiquette",
- "r-member": "participant",
- "r-remove-all": "Supprimer tous les membres de la carte",
- "r-set-color": "Définir la couleur à",
- "r-checklist": "checklist",
- "r-check-all": "Tout cocher",
- "r-uncheck-all": "Tout décocher",
- "r-items-check": "Élément de checklist",
- "r-check": "Cocher",
- "r-uncheck": "Décocher",
- "r-item": "élément",
- "r-of-checklist": "de la checklist",
- "r-send-email": "Envoyer un email",
- "r-to": "à",
- "r-subject": "sujet",
- "r-rule-details": "Détails de la règle",
- "r-d-move-to-top-gen": "Déplacer la carte en haut de sa liste",
- "r-d-move-to-top-spec": "Déplacer la carte en haut de la liste",
- "r-d-move-to-bottom-gen": "Déplacer la carte en bas de sa liste",
- "r-d-move-to-bottom-spec": "Déplacer la carte en bas de la liste",
- "r-d-send-email": "Envoyer un email",
- "r-d-send-email-to": "à",
- "r-d-send-email-subject": "sujet",
- "r-d-send-email-message": "message",
- "r-d-archive": "Archiver la carte",
- "r-d-unarchive": "Restaurer la carte depuis l'Archive",
- "r-d-add-label": "Ajouter une étiquette",
- "r-d-remove-label": "Supprimer l'étiquette",
- "r-create-card": "Créer une nouvelle carte",
- "r-in-list": "dans la liste",
- "r-in-swimlane": "Dans le couloir",
- "r-d-add-member": "Ajouter un participant",
- "r-d-remove-member": "Supprimer un participant",
- "r-d-remove-all-member": "Supprimer tous les participants",
- "r-d-check-all": "Cocher tous les éléments d'une liste",
- "r-d-uncheck-all": "Décocher tous les éléments d'une liste",
- "r-d-check-one": "Cocher l'élément",
- "r-d-uncheck-one": "Décocher l'élément",
- "r-d-check-of-list": "de la checklist",
- "r-d-add-checklist": "Ajouter une checklist",
- "r-d-remove-checklist": "Supprimer la checklist",
- "r-by": "par",
- "r-add-checklist": "Ajouter une checklist",
- "r-with-items": "avec les items",
- "r-items-list": "item1, item2, item3",
- "r-add-swimlane": "Ajouter un couloir",
- "r-swimlane-name": "Nom du couloir",
- "r-board-note": "Note : laisser le champ vide pour faire correspondre avec toutes les valeurs possibles.",
- "r-checklist-note": "Note : les items de la checklist doivent être séparés par des virgules.",
- "r-when-a-card-is-moved": "Quand une carte est déplacée vers une autre liste",
- "r-set": "Définir",
- "r-update": "Mettre à jour",
- "r-datefield": "champ date",
- "r-df-start-at": "début",
- "r-df-due-at": "échéance",
- "r-df-end-at": "fin",
- "r-df-received-at": "reçu",
- "r-to-current-datetime": "à la date/heure courante",
- "r-remove-value-from": "Supprimer la valeur de",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Méthode d'authentification",
- "authentication-type": "Type d'authentification",
- "custom-product-name": "Nom personnalisé",
- "layout": "Interface",
- "hide-logo": "Cacher le logo",
- "add-custom-html-after-body-start": "Ajouter le HTML personnalisé après le début du <body>",
- "add-custom-html-before-body-end": "Ajouter le HTML personnalisé avant la fin du </body>",
- "error-undefined": "Une erreur inconnue s'est produite",
- "error-ldap-login": "Une erreur s'est produite lors de la tentative de connexion",
- "display-authentication-method": "Afficher la méthode d'authentification",
- "default-authentication-method": "Méthode d'authentification par défaut",
- "duplicate-board": "Dupliquer le tableau",
- "people-number": "Le nombre d'utilisateurs est de :",
- "swimlaneDeletePopup-title": "Supprimer le couloir ?",
- "swimlane-delete-pop": "Toutes les actions vont être supprimées du suivi d'activités et vous ne pourrez plus utiliser ce couloir. Cette action est irréversible.",
- "restore-all": "Tout restaurer",
- "delete-all": "Tout supprimer",
- "loading": "Chargement, merci de patienter.",
- "previous_as": "dernière heure était",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Êtes-vous sûr de vouloir supprimer ce compte ? Cette opération ne peut pas être annulée. ",
- "accounts-allowUserDelete": "Autoriser les utilisateurs à supprimer leur compte"
-} \ No newline at end of file
+ "accept": "Accepter",
+ "act-activity-notify": "Notification d'activité",
+ "act-addAttachment": "a ajouté la pièce jointe __attachment__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-deleteAttachment": "a supprimé la pièce jointe __attachment__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-addSubtask": "a ajouté la sous-tâche __checklist__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-addLabel": "a ajouté l'étiquette __label__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-addedLabel": "a ajouté l'étiquette __label__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-removeLabel": "a enlevé l'étiquette __label__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-removedLabel": "a enlevé l'étiquette __label__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-addChecklist": "a ajouté la checklist __checklist__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-addChecklistItem": "a ajouté l'élément __checklistItem__ à la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-removeChecklist": "a supprimé la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-removeChecklistItem": "a supprimé l'élément __checklistItem__ de la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-checkedItem": "a coché __checklistItem__ de la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-uncheckedItem": "a décoché __checklistItem__ de la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-completeChecklist": "a complété la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-uncompleteChecklist": "a rendu incomplet la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-addComment": "a commenté la carte __card__ : __comment__ dans la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-editComment": "a édité le commentaire de la carte __card__ : __comment__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-deleteComment": "a supprimé le commentaire de la carte __card__ : __comment__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-createBoard": "a créé le tableau __board__",
+ "act-createSwimlane": "a créé le couloir __swimlane__ dans le tableau __board__",
+ "act-createCard": "a créé la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-createCustomField": "a créé le champ personnalisé __customField__ du tableau __board__",
+ "act-deleteCustomField": "a supprimé le champ personnalisé __customField__ du tableau __board__",
+ "act-setCustomField": "a édité le champ personnalisé __customField__ : __customFieldValue de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-createList": "a ajouté la liste __list__ au tableau __board__",
+ "act-addBoardMember": "a ajouté le participant __member__ au tableau __board__",
+ "act-archivedBoard": "Le tableau __board__ a été déplacé vers les archives",
+ "act-archivedCard": "Carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__ archivée",
+ "act-archivedList": "Liste __list__ du couloir __swimlane__ du tableau __board__ archivée",
+ "act-archivedSwimlane": "Couloir __swimlane__ du tableau __board__ archivé",
+ "act-importBoard": "a importé le tableau __board__",
+ "act-importCard": "a importé la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-importList": "a importé la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-joinMember": "a ajouté le participant __member__ à la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-moveCard": "a déplacé la carte __card__ du tableau __board__ de la liste __oldList__ du couloir __oldSwimlane__ vers la liste __list__ du couloir __swimlane__",
+ "act-moveCardToOtherBoard": "a déplacé la carte __card__ de la liste __oldList__ du couloir __oldSwimlane__ du tableau __oldBoard__ vers la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-removeBoardMember": "a supprimé le participant __member__ du tableau __board__",
+ "act-restoredCard": "a restauré la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-unjoinMember": "a supprimé le participant __member__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activités",
+ "activity": "Activité",
+ "activity-added": "a ajouté %s à %s",
+ "activity-archived": "%s a été archivé",
+ "activity-attached": "a attaché %s à %s",
+ "activity-created": "a créé %s",
+ "activity-customfield-created": "a créé le champ personnalisé %s",
+ "activity-excluded": "a exclu %s de %s",
+ "activity-imported": "a importé %s vers %s depuis %s",
+ "activity-imported-board": "a importé %s depuis %s",
+ "activity-joined": "a rejoint %s",
+ "activity-moved": "a déplacé %s de %s vers %s",
+ "activity-on": "sur %s",
+ "activity-removed": "a supprimé %s de %s",
+ "activity-sent": "a envoyé %s vers %s",
+ "activity-unjoined": "a quitté %s",
+ "activity-subtask-added": "a ajouté une sous-tâche à %s",
+ "activity-checked-item": "a coché %s dans la checklist %s de %s",
+ "activity-unchecked-item": "a décoché %s dans la checklist %s de %s",
+ "activity-checklist-added": "a ajouté une checklist à %s",
+ "activity-checklist-removed": "a supprimé une checklist de %s",
+ "activity-checklist-completed": "a complété la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "activity-checklist-uncompleted": "a rendu incomplète la checklist %s de %s",
+ "activity-checklist-item-added": "a ajouté un élément à la checklist '%s' dans %s",
+ "activity-checklist-item-removed": "a supprimé une checklist de '%s' dans %s",
+ "add": "Ajouter",
+ "activity-checked-item-card": "a coché %s dans la checklist %s",
+ "activity-unchecked-item-card": "a décoché %s dans la checklist %s",
+ "activity-checklist-completed-card": "a complété la checklist __checklist__ de la carte __card__ de la liste __list__ du couloir __swimlane__ du tableau __board__",
+ "activity-checklist-uncompleted-card": "a rendu incomplète la checklist %s",
+ "add-attachment": "Ajouter une pièce jointe",
+ "add-board": "Ajouter un tableau",
+ "add-card": "Ajouter une carte",
+ "add-swimlane": "Ajouter un couloir",
+ "add-subtask": "Ajouter une sous-tâche",
+ "add-checklist": "Ajouter une checklist",
+ "add-checklist-item": "Ajouter un élément à la checklist",
+ "add-cover": "Ajouter la couverture",
+ "add-label": "Ajouter une étiquette",
+ "add-list": "Ajouter une liste",
+ "add-members": "Assigner des participants",
+ "added": "Ajouté le",
+ "addMemberPopup-title": "Participants",
+ "admin": "Admin",
+ "admin-desc": "Peut voir et éditer les cartes, supprimer des participants et changer les paramètres du tableau.",
+ "admin-announcement": "Annonce",
+ "admin-announcement-active": "Annonce destinée à tous",
+ "admin-announcement-title": "Annonce de l'administrateur",
+ "all-boards": "Tous les tableaux",
+ "and-n-other-card": "Et __count__ autre carte",
+ "and-n-other-card_plural": "Et __count__ autres cartes",
+ "apply": "Appliquer",
+ "app-is-offline": "Chargement en cours, veuillez patienter. Vous risquez de perdre des données si vous rechargez la page. Si le chargement échoue, veuillez vérifier que le serveur n'est pas arrêté.",
+ "archive": "Archiver",
+ "archive-all": "Tout archiver",
+ "archive-board": "Archiver le tableau",
+ "archive-card": "Archiver la carte",
+ "archive-list": "Archiver la liste",
+ "archive-swimlane": "Archiver le couloir",
+ "archive-selection": "Archiver la sélection",
+ "archiveBoardPopup-title": "Archiver le tableau ?",
+ "archived-items": "Archives",
+ "archived-boards": "Tableaux archivés",
+ "restore-board": "Restaurer le tableau",
+ "no-archived-boards": "Aucun tableau archivé.",
+ "archives": "Archives",
+ "template": "Modèle",
+ "templates": "Modèles",
+ "assign-member": "Affecter un participant",
+ "attached": "joint",
+ "attachment": "Pièce jointe",
+ "attachment-delete-pop": "La suppression d'une pièce jointe est définitive. Elle ne peut être annulée.",
+ "attachmentDeletePopup-title": "Supprimer la pièce jointe ?",
+ "attachments": "Pièces jointes",
+ "auto-watch": "Surveiller automatiquement les tableaux quand ils sont créés",
+ "avatar-too-big": "La taille du fichier de l'avatar est trop importante (70 ko au maximum)",
+ "back": "Retour",
+ "board-change-color": "Changer la couleur",
+ "board-nb-stars": "%s étoiles",
+ "board-not-found": "Tableau non trouvé",
+ "board-private-info": "Ce tableau sera <strong>privé</strong>",
+ "board-public-info": "Ce tableau sera <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change la couleur de fond du tableau",
+ "boardChangeTitlePopup-title": "Renommer le tableau",
+ "boardChangeVisibilityPopup-title": "Changer la visibilité",
+ "boardChangeWatchPopup-title": "Modifier le suivi",
+ "boardMenuPopup-title": "Paramètres du tableau",
+ "boards": "Tableaux",
+ "board-view": "Vue du tableau",
+ "board-view-cal": "Calendrier",
+ "board-view-swimlanes": "Couloirs",
+ "board-view-lists": "Listes",
+ "bucket-example": "Comme « todo list » par exemple",
+ "cancel": "Annuler",
+ "card-archived": "Cette carte est archivée",
+ "board-archived": "Ce tableau est archivé",
+ "card-comments-title": "Cette carte a %s commentaires.",
+ "card-delete-notice": "La suppression est permanente. Vous perdrez toutes les actions associées à cette carte.",
+ "card-delete-pop": "Toutes les actions vont être supprimées du suivi d'activités et vous ne pourrez plus utiliser cette carte. Cette action est irréversible.",
+ "card-delete-suggest-archive": "Vous pouvez déplacer une carte vers les archives afin de l'enlever du tableau tout en préservant l'activité.",
+ "card-due": "À échéance",
+ "card-due-on": "Échéance le",
+ "card-spent": "Temps passé",
+ "card-edit-attachments": "Modifier les pièces jointes",
+ "card-edit-custom-fields": "Éditer les champs personnalisés",
+ "card-edit-labels": "Gérer les étiquettes",
+ "card-edit-members": "Gérer les participants",
+ "card-labels-title": "Modifier les étiquettes de la carte.",
+ "card-members-title": "Assigner ou supprimer des participants à la carte.",
+ "card-start": "Début",
+ "card-start-on": "Commence le",
+ "cardAttachmentsPopup-title": "Ajouter depuis",
+ "cardCustomField-datePopup-title": "Modifier la date",
+ "cardCustomFieldsPopup-title": "Éditer les champs personnalisés",
+ "cardDeletePopup-title": "Supprimer la carte ?",
+ "cardDetailsActionsPopup-title": "Actions sur la carte",
+ "cardLabelsPopup-title": "Étiquettes",
+ "cardMembersPopup-title": "Participants",
+ "cardMorePopup-title": "Plus",
+ "cardTemplatePopup-title": "Créer un modèle",
+ "cards": "Cartes",
+ "cards-count": "Cartes",
+ "casSignIn": "Se connecter avec CAS",
+ "cardType-card": "Carte",
+ "cardType-linkedCard": "Carte liée",
+ "cardType-linkedBoard": "Tableau lié",
+ "change": "Modifier",
+ "change-avatar": "Modifier l'avatar",
+ "change-password": "Modifier le mot de passe",
+ "change-permissions": "Modifier les permissions",
+ "change-settings": "Modifier les paramètres",
+ "changeAvatarPopup-title": "Modifier l'avatar",
+ "changeLanguagePopup-title": "Modifier la langue",
+ "changePasswordPopup-title": "Modifier le mot de passe",
+ "changePermissionsPopup-title": "Modifier les permissions",
+ "changeSettingsPopup-title": "Modifier les paramètres",
+ "subtasks": "Sous-tâches",
+ "checklists": "Checklists",
+ "click-to-star": "Cliquez pour ajouter ce tableau aux favoris.",
+ "click-to-unstar": "Cliquez pour retirer ce tableau des favoris.",
+ "clipboard": "Presse-papier ou glisser-déposer",
+ "close": "Fermer",
+ "close-board": "Fermer le tableau",
+ "close-board-pop": "Vous pouvez restaurer le tableau en cliquant sur le bouton « Archives » depuis le menu en entête.",
+ "color-black": "noir",
+ "color-blue": "bleu",
+ "color-crimson": "rouge cramoisi",
+ "color-darkgreen": "vert foncé",
+ "color-gold": "or",
+ "color-gray": "gris",
+ "color-green": "vert",
+ "color-indigo": "indigo",
+ "color-lime": "citron vert",
+ "color-magenta": "magenta",
+ "color-mistyrose": "rose brumeux",
+ "color-navy": "bleu marin",
+ "color-orange": "orange",
+ "color-paleturquoise": "azurin",
+ "color-peachpuff": "beige pêche",
+ "color-pink": "rose",
+ "color-plum": "prune",
+ "color-purple": "violet",
+ "color-red": "rouge",
+ "color-saddlebrown": "brun cuir",
+ "color-silver": "argent",
+ "color-sky": "ciel",
+ "color-slateblue": "bleu ardoise",
+ "color-white": "blanc",
+ "color-yellow": "jaune",
+ "unset-color": "Enlever",
+ "comment": "Commenter",
+ "comment-placeholder": "Écrire un commentaire",
+ "comment-only": "Commentaire uniquement",
+ "comment-only-desc": "Ne peut que commenter des cartes.",
+ "no-comments": "Aucun commentaire",
+ "no-comments-desc": "Ne peut pas voir les commentaires et les activités.",
+ "computer": "Ordinateur",
+ "confirm-subtask-delete-dialog": "Êtes-vous sûr de vouloir supprimer la sous-tâche ?",
+ "confirm-checklist-delete-dialog": "Êtes-vous sûr de vouloir supprimer la checklist ?",
+ "copy-card-link-to-clipboard": "Copier le lien vers la carte dans le presse-papier",
+ "linkCardPopup-title": "Lier une Carte",
+ "searchElementPopup-title": "Chercher",
+ "copyCardPopup-title": "Copier la carte",
+ "copyChecklistToManyCardsPopup-title": "Copier le modèle de checklist vers plusieurs cartes",
+ "copyChecklistToManyCardsPopup-instructions": "Titres et descriptions des cartes de destination dans ce format JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titre de la première carte\", \"description\":\"Description de la première carte\"}, {\"title\":\"Titre de la seconde carte\",\"description\":\"Description de la seconde carte\"},{\"title\":\"Titre de la dernière carte\",\"description\":\"Description de la dernière carte\"} ]",
+ "create": "Créer",
+ "createBoardPopup-title": "Créer un tableau",
+ "chooseBoardSourcePopup-title": "Importer un tableau",
+ "createLabelPopup-title": "Créer une étiquette",
+ "createCustomField": "Créer un champ personnalisé",
+ "createCustomFieldPopup-title": "Créer un champ personnalisé",
+ "current": "actuel",
+ "custom-field-delete-pop": "Cette action n'est pas réversible. Elle supprimera ce champ personnalisé de toutes les cartes et détruira son historique.",
+ "custom-field-checkbox": "Case à cocher",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Liste de choix",
+ "custom-field-dropdown-none": "(aucun)",
+ "custom-field-dropdown-options": "Options de liste",
+ "custom-field-dropdown-options-placeholder": "Appuyez sur Entrée pour ajouter d'autres options",
+ "custom-field-dropdown-unknown": "(inconnu)",
+ "custom-field-number": "Nombre",
+ "custom-field-text": "Texte",
+ "custom-fields": "Champs personnalisés",
+ "date": "Date",
+ "decline": "Refuser",
+ "default-avatar": "Avatar par défaut",
+ "delete": "Supprimer",
+ "deleteCustomFieldPopup-title": "Supprimer le champ personnalisé ?",
+ "deleteLabelPopup-title": "Supprimer l'étiquette ?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Préciser l'action sur l'étiquette",
+ "disambiguateMultiMemberPopup-title": "Préciser l'action sur le participant",
+ "discard": "Mettre à la corbeille",
+ "done": "Fait",
+ "download": "Télécharger",
+ "edit": "Modifier",
+ "edit-avatar": "Modifier l'avatar",
+ "edit-profile": "Modifier le profil",
+ "edit-wip-limit": "Éditer la limite WIP",
+ "soft-wip-limit": "Limite WIP douce",
+ "editCardStartDatePopup-title": "Modifier la date de début",
+ "editCardDueDatePopup-title": "Modifier la date d'échéance",
+ "editCustomFieldPopup-title": "Éditer le champ personnalisé",
+ "editCardSpentTimePopup-title": "Modifier le temps passé",
+ "editLabelPopup-title": "Modifier l'étiquette",
+ "editNotificationPopup-title": "Modifier la notification",
+ "editProfilePopup-title": "Modifier le profil",
+ "email": "E-mail",
+ "email-enrollAccount-subject": "Un compte a été créé pour vous sur __siteName__",
+ "email-enrollAccount-text": "Bonjour __user__,\n\nPour commencer à utiliser ce service, il suffit de cliquer sur le lien ci-dessous.\n\n__url__\n\nMerci.",
+ "email-fail": "Échec de l'envoi du courriel.",
+ "email-fail-text": "Une erreur est survenue en tentant d'envoyer l'email",
+ "email-invalid": "Adresse e-mail incorrecte.",
+ "email-invite": "Inviter par e-mail",
+ "email-invite-subject": "__inviter__ vous a envoyé une invitation",
+ "email-invite-text": "Cher __user__,\n\n__inviter__ vous invite à rejoindre le tableau \"__board__\" pour collaborer.\n\nVeuillez suivre le lien ci-dessous :\n\n__url__\n\nMerci.",
+ "email-resetPassword-subject": "Réinitialiser votre mot de passe sur __siteName__",
+ "email-resetPassword-text": "Bonjour __user__,\n\nPour réinitialiser votre mot de passe, cliquez sur le lien ci-dessous.\n\n__url__\n\nMerci.",
+ "email-sent": "Courriel envoyé",
+ "email-verifyEmail-subject": "Vérifier votre adresse de courriel sur __siteName__",
+ "email-verifyEmail-text": "Bonjour __user__,\n\nPour vérifier votre compte courriel, il suffit de cliquer sur le lien ci-dessous.\n\n__url__\n\nMerci.",
+ "enable-wip-limit": "Activer la limite WIP",
+ "error-board-doesNotExist": "Ce tableau n'existe pas",
+ "error-board-notAdmin": "Vous devez être administrateur de ce tableau pour faire cela",
+ "error-board-notAMember": "Vous devez être participant de ce tableau pour faire cela",
+ "error-json-malformed": "Votre texte JSON n'est pas valide",
+ "error-json-schema": "Vos données JSON ne contiennent pas l'information appropriée dans un format correct",
+ "error-list-doesNotExist": "Cette liste n'existe pas",
+ "error-user-doesNotExist": "Cet utilisateur n'existe pas",
+ "error-user-notAllowSelf": "Vous ne pouvez pas vous inviter vous-même",
+ "error-user-notCreated": "Cet utilisateur n'a pas encore été créé",
+ "error-username-taken": "Ce nom d'utilisateur est déjà utilisé",
+ "error-email-taken": "Cette adresse mail est déjà utilisée",
+ "export-board": "Exporter le tableau",
+ "filter": "Filtrer",
+ "filter-cards": "Filtrer les cartes",
+ "filter-clear": "Supprimer les filtres",
+ "filter-no-label": "Aucune étiquette",
+ "filter-no-member": "Aucun participant",
+ "filter-no-custom-fields": "Pas de champs personnalisés",
+ "filter-on": "Le filtre est actif",
+ "filter-on-desc": "Vous êtes en train de filtrer les cartes sur ce tableau. Cliquez ici pour modifier les filtres.",
+ "filter-to-selection": "Filtre vers la sélection",
+ "advanced-filter-label": "Filtre avancé",
+ "advanced-filter-description": "Le filtre avancé permet d'écrire une chaîne contenant les opérateur suivants : == != <= >= && || ( ). Les opérateurs doivent être séparés par des espaces. Vous pouvez filtrer tous les champs personnalisés en saisissant leur nom et leur valeur. Par exemple : champ1 == valeur1. Remarque : si des champs ou valeurs contiennent des espaces, vous devez les mettre entre apostrophes. Par exemple : 'champ 1' = 'valeur 1'. Pour échapper un caractère de contrôle (' \\/), vous pouvez utiliser \\. Par exemple : champ1 = I\\'m. Il est également possible de combiner plusieurs conditions. Par exemple : f1 == v1 || f2 == v2. Normalement, tous les opérateurs sont interprétés de gauche à droite. Vous pouvez changer l'ordre à l'aide de parenthèses. Par exemple : f1 == v1 and (f2 == v2 || f2 == v3). Vous pouvez également chercher parmi les champs texte en utilisant des expressions régulières : f1 == /Test.*/i",
+ "fullname": "Nom complet",
+ "header-logo-title": "Retourner à la page des tableaux",
+ "hide-system-messages": "Masquer les messages système",
+ "headerBarCreateBoardPopup-title": "Créer un tableau",
+ "home": "Accueil",
+ "import": "Importer",
+ "link": "Lien",
+ "import-board": "importer un tableau",
+ "import-board-c": "Importer un tableau",
+ "import-board-title-trello": "Importer un tableau depuis Trello",
+ "import-board-title-wekan": "Importer un tableau depuis un export précédent",
+ "import-sandstorm-backup-warning": "Ne supprimez pas les données que vous importez d'un tableau exporté d'origine ou de Trello avant de vérifier que la graine peut se fermer et s'ouvrir à nouveau ou qu'une erreur \"Tableau introuvable\" survient, sinon vous perdrez vos données.",
+ "import-sandstorm-warning": "Le tableau importé supprimera toutes les données du tableau et les remplacera avec celles du tableau importé.",
+ "from-trello": "Depuis Trello",
+ "from-wekan": "Depuis un export précédent",
+ "import-board-instruction-trello": "Dans votre tableau Trello, allez sur 'Menu', puis sur 'Plus', 'Imprimer et exporter', 'Exporter en JSON' et copiez le texte du résultat",
+ "import-board-instruction-wekan": "Dans votre tableau, allez dans 'Menu', puis 'Exporter un tableau', et copier le texte du fichier téléchargé.",
+ "import-board-instruction-about-errors": "Si une erreur survient en important le tableau, il se peut que l'import ait fonctionné, et que le tableau se trouve sur la page \"Tous les tableaux\".",
+ "import-json-placeholder": "Collez ici les données JSON valides",
+ "import-map-members": "Assigner des participants",
+ "import-members-map": "Le tableau que vous venez d'importer contient des participants. Veuillez assigner les participants que vous souhaitez importer à vos utilisateurs.",
+ "import-show-user-mapping": "Contrôler l'assignation des participants",
+ "import-user-select": "Sélectionnez l'utilisateur existant que vous voulez associer à ce participant",
+ "importMapMembersAddPopup-title": "Sélectionner le participant",
+ "info": "Version",
+ "initials": "Initiales",
+ "invalid-date": "Date invalide",
+ "invalid-time": "Heure invalide",
+ "invalid-user": "Utilisateur invalide",
+ "joined": "a rejoint",
+ "just-invited": "Vous venez d'être invité à ce tableau",
+ "keyboard-shortcuts": "Raccourcis clavier",
+ "label-create": "Créer une étiquette",
+ "label-default": "étiquette %s (défaut)",
+ "label-delete-pop": "Cette action est irréversible. Elle supprimera cette étiquette de toutes les cartes ainsi que l'historique associé.",
+ "labels": "Étiquettes",
+ "language": "Langue",
+ "last-admin-desc": "Vous ne pouvez pas changer les rôles car il doit y avoir au moins un administrateur.",
+ "leave-board": "Quitter le tableau",
+ "leave-board-pop": "Êtes-vous sur de vouloir quitter __boardTitle__ ? Vous ne serez plus associé aux cartes de ce tableau.",
+ "leaveBoardPopup-title": "Quitter le tableau",
+ "link-card": "Lier à cette carte",
+ "list-archive-cards": "Déplacer toutes les cartes de cette liste vers les archives",
+ "list-archive-cards-pop": "Cela supprimera du tableau toutes les cartes de cette liste. Pour voir les cartes archivées et les renvoyer vers le tableau, cliquez sur « Menu » puis « Archives ».",
+ "list-move-cards": "Déplacer toutes les cartes de cette liste",
+ "list-select-cards": "Sélectionner toutes les cartes de cette liste",
+ "set-color-list": "Définir la couleur",
+ "listActionPopup-title": "Actions sur la liste",
+ "swimlaneActionPopup-title": "Actions du couloir",
+ "swimlaneAddPopup-title": "Ajouter un couloir en dessous",
+ "listImportCardPopup-title": "Importer une carte Trello",
+ "listMorePopup-title": "Plus",
+ "link-list": "Lien vers cette liste",
+ "list-delete-pop": "Toutes les actions seront supprimées du fil d'activité et il ne sera plus possible de les récupérer. Cette action est irréversible.",
+ "list-delete-suggest-archive": "Vous pouvez archiver une liste pour l'enlever du tableau tout en conservant son activité.",
+ "lists": "Listes",
+ "swimlanes": "Couloirs",
+ "log-out": "Déconnexion",
+ "log-in": "Connexion",
+ "loginPopup-title": "Connexion",
+ "memberMenuPopup-title": "Préférence du participant",
+ "members": "Participants",
+ "menu": "Menu",
+ "move-selection": "Déplacer la sélection",
+ "moveCardPopup-title": "Déplacer la carte",
+ "moveCardToBottom-title": "Déplacer tout en bas",
+ "moveCardToTop-title": "Déplacer tout en haut",
+ "moveSelectionPopup-title": "Déplacer la sélection",
+ "multi-selection": "Sélection multiple",
+ "multi-selection-on": "Multi-Selection active",
+ "muted": "Silencieux",
+ "muted-info": "Vous ne serez jamais averti des modifications effectuées dans ce tableau",
+ "my-boards": "Mes tableaux",
+ "name": "Nom",
+ "no-archived-cards": "Aucune carte archivée.",
+ "no-archived-lists": "Aucune liste archivée.",
+ "no-archived-swimlanes": "Aucun couloir archivé.",
+ "no-results": "Pas de résultats",
+ "normal": "Normal",
+ "normal-desc": "Peut voir et modifier les cartes. Ne peut pas changer les paramètres.",
+ "not-accepted-yet": "L'invitation n'a pas encore été acceptée",
+ "notify-participate": "Recevoir les mises à jour de toutes les cartes auxquelles vous participez en tant que créateur ou que participant",
+ "notify-watch": "Recevoir les mises à jour de tous les tableaux, listes ou cartes que vous suivez",
+ "optional": "optionnel",
+ "or": "ou",
+ "page-maybe-private": "Cette page est peut-être privée. Vous pourrez peut-être la voir en vous <a href='%s'>connectant</a>.",
+ "page-not-found": "Page non trouvée",
+ "password": "Mot de passe",
+ "paste-or-dragdrop": "pour coller, ou glissez-déposez une image ici (seulement une image)",
+ "participating": "Participant",
+ "preview": "Prévisualiser",
+ "previewAttachedImagePopup-title": "Prévisualiser",
+ "previewClipboardImagePopup-title": "Prévisualiser",
+ "private": "Privé",
+ "private-desc": "Ce tableau est privé. Seuls les membres peuvent y accéder et le modifier.",
+ "profile": "Profil",
+ "public": "Public",
+ "public-desc": "Ce tableau est public. Il est accessible par toutes les personnes disposant du lien et apparaîtra dans les résultats des moteurs de recherche tels que Google. Seuls les membres peuvent le modifier.",
+ "quick-access-description": "Ajouter un tableau à vos favoris pour créer un raccourci dans cette barre.",
+ "remove-cover": "Enlever la page de présentation",
+ "remove-from-board": "Retirer du tableau",
+ "remove-label": "Retirer l'étiquette",
+ "listDeletePopup-title": "Supprimer la liste ?",
+ "remove-member": "Supprimer le participant",
+ "remove-member-from-card": "Supprimer de la carte",
+ "remove-member-pop": "Supprimer __name__ (__username__) de __boardTitle__ ? Ce participant sera supprimé de toutes les cartes du tableau et recevra une notification.",
+ "removeMemberPopup-title": "Supprimer le participant ?",
+ "rename": "Renommer",
+ "rename-board": "Renommer le tableau",
+ "restore": "Restaurer",
+ "save": "Enregistrer",
+ "search": "Chercher",
+ "rules": "Règles",
+ "search-cards": "Rechercher parmi les titres et descriptions des cartes de ce tableau",
+ "search-example": "Texte à rechercher ?",
+ "select-color": "Sélectionner une couleur",
+ "set-wip-limit-value": "Définit une limite maximale au nombre de cartes de cette liste",
+ "setWipLimitPopup-title": "Définir la limite WIP",
+ "shortcut-assign-self": "Affecter cette carte à vous-même",
+ "shortcut-autocomplete-emoji": "Auto-complétion des emoji",
+ "shortcut-autocomplete-members": "Auto-complétion des participants",
+ "shortcut-clear-filters": "Retirer tous les filtres",
+ "shortcut-close-dialog": "Fermer la boîte de dialogue",
+ "shortcut-filter-my-cards": "Filtrer mes cartes",
+ "shortcut-show-shortcuts": "Afficher cette liste de raccourcis",
+ "shortcut-toggle-filterbar": "Afficher/Masquer la barre latérale des filtres",
+ "shortcut-toggle-sidebar": "Afficher/Masquer la barre latérale du tableau",
+ "show-cards-minimum-count": "Afficher le nombre de cartes si la liste en contient plus de",
+ "sidebar-open": "Ouvrir le panneau",
+ "sidebar-close": "Fermer le panneau",
+ "signupPopup-title": "Créer un compte",
+ "star-board-title": "Cliquer pour ajouter ce tableau aux favoris. Il sera affiché en tête de votre liste de tableaux.",
+ "starred-boards": "Tableaux favoris",
+ "starred-boards-description": "Les tableaux favoris s'affichent en tête de votre liste de tableaux.",
+ "subscribe": "Suivre",
+ "team": "Équipe",
+ "this-board": "ce tableau",
+ "this-card": "cette carte",
+ "spent-time-hours": "Temps passé (heures)",
+ "overtime-hours": "Temps supplémentaire (heures)",
+ "overtime": "Temps supplémentaire",
+ "has-overtime-cards": "A des cartes avec du temps supplémentaire",
+ "has-spenttime-cards": "A des cartes avec du temps passé",
+ "time": "Temps",
+ "title": "Titre",
+ "tracking": "Suivi",
+ "tracking-info": "Vous serez notifié de toute modification concernant les cartes pour lesquelles vous êtes impliqué en tant que créateur ou participant.",
+ "type": "Type",
+ "unassign-member": "Retirer le participant",
+ "unsaved-description": "Vous avez une description non sauvegardée",
+ "unwatch": "Arrêter de suivre",
+ "upload": "Télécharger",
+ "upload-avatar": "Télécharger un avatar",
+ "uploaded-avatar": "Avatar téléchargé",
+ "username": "Nom d'utilisateur",
+ "view-it": "Le voir",
+ "warn-list-archived": "attention : cette carte est dans une liste archivée",
+ "watch": "Suivre",
+ "watching": "Suivi",
+ "watching-info": "Vous serez notifié de toute modification dans ce tableau",
+ "welcome-board": "Tableau de bienvenue",
+ "welcome-swimlane": "Jalon 1",
+ "welcome-list1": "Basiques",
+ "welcome-list2": "Avancés",
+ "card-templates-swimlane": "Modèles de cartes",
+ "list-templates-swimlane": "Modèles de listes",
+ "board-templates-swimlane": "Modèles de tableaux",
+ "what-to-do": "Que voulez-vous faire ?",
+ "wipLimitErrorPopup-title": "Limite WIP invalide",
+ "wipLimitErrorPopup-dialog-pt1": "Le nombre de cartes de cette liste est supérieur à la limite WIP que vous avez définie.",
+ "wipLimitErrorPopup-dialog-pt2": "Veuillez enlever des cartes de cette liste, ou définir une limite WIP plus importante.",
+ "admin-panel": "Panneau d'administration",
+ "settings": "Paramètres",
+ "people": "Personne",
+ "registration": "Inscription",
+ "disable-self-registration": "Désactiver l'inscription",
+ "invite": "Inviter",
+ "invite-people": "Inviter une personne",
+ "to-boards": "Au(x) tableau(x)",
+ "email-addresses": "Adresses mail",
+ "smtp-host-description": "L'adresse du serveur SMTP qui gère vos mails.",
+ "smtp-port-description": "Le port des mails sortants du serveur SMTP.",
+ "smtp-tls-description": "Activer la gestion de TLS sur le serveur SMTP",
+ "smtp-host": "Hôte SMTP",
+ "smtp-port": "Port SMTP",
+ "smtp-username": "Nom d'utilisateur",
+ "smtp-password": "Mot de passe",
+ "smtp-tls": "Prise en charge de TLS",
+ "send-from": "De",
+ "send-smtp-test": "Envoyer un mail de test à vous-même",
+ "invitation-code": "Code d'invitation",
+ "email-invite-register-subject": "__inviter__ vous a envoyé une invitation",
+ "email-invite-register-text": "Cher __user__,\n\n__inviter__ vous invite à le rejoindre sur le tableau kanban pour collaborer.\n\nVeuillez suivre le lien ci-dessous :\n__url__\n\nVotre code d'invitation est : __icode__\n\nMerci.",
+ "email-smtp-test-subject": "E-mail de test SMTP",
+ "email-smtp-test-text": "Vous avez envoyé un mail avec succès",
+ "error-invitation-code-not-exist": "Ce code d'invitation n'existe pas.",
+ "error-notAuthorized": "Vous n'êtes pas autorisé à accéder à cette page.",
+ "outgoing-webhooks": "Webhooks sortants",
+ "outgoingWebhooksPopup-title": "Webhooks sortants",
+ "boardCardTitlePopup-title": "Filtre par titre de carte",
+ "new-outgoing-webhook": "Nouveau webhook sortant",
+ "no-name": "(Inconnu)",
+ "Node_version": "Version de Node",
+ "OS_Arch": "OS Architecture",
+ "OS_Cpus": "OS Nombre CPU",
+ "OS_Freemem": "OS Mémoire libre",
+ "OS_Loadavg": "OS Charge moyenne",
+ "OS_Platform": "OS Plate-forme",
+ "OS_Release": "OS Version",
+ "OS_Totalmem": "OS Mémoire totale",
+ "OS_Type": "Type d'OS",
+ "OS_Uptime": "OS Durée de fonctionnement",
+ "days": "jours",
+ "hours": "heures",
+ "minutes": "minutes",
+ "seconds": "secondes",
+ "show-field-on-card": "Afficher ce champ sur la carte",
+ "automatically-field-on-card": "Créer automatiquement le champ sur toutes les cartes",
+ "showLabel-field-on-card": "Indiquer l'étiquette du champ sur la mini-carte",
+ "yes": "Oui",
+ "no": "Non",
+ "accounts": "Comptes",
+ "accounts-allowEmailChange": "Autoriser le changement d'adresse mail",
+ "accounts-allowUserNameChange": "Autoriser le changement d'identifiant",
+ "createdAt": "Créé le",
+ "verified": "Vérifié",
+ "active": "Actif",
+ "card-received": "Reçue",
+ "card-received-on": "Reçue le",
+ "card-end": "Fin",
+ "card-end-on": "Se termine le",
+ "editCardReceivedDatePopup-title": "Modifier la date de réception",
+ "editCardEndDatePopup-title": "Modifier la date de fin",
+ "setCardColorPopup-title": "Définir la couleur",
+ "setCardActionsColorPopup-title": "Choisissez une couleur",
+ "setSwimlaneColorPopup-title": "Choisissez une couleur",
+ "setListColorPopup-title": "Choisissez une couleur",
+ "assigned-by": "Assigné par",
+ "requested-by": "Demandé par",
+ "board-delete-notice": "La suppression est définitive. Vous perdrez toutes les listes, cartes et actions associées à ce tableau.",
+ "delete-board-confirm-popup": "Toutes les listes, cartes, étiquettes et activités seront supprimées et vous ne pourrez pas retrouver le contenu du tableau. Il n'y a pas d'annulation possible.",
+ "boardDeletePopup-title": "Supprimer le tableau ?",
+ "delete-board": "Supprimer le tableau",
+ "default-subtasks-board": "Sous-tâches du tableau __board__",
+ "default": "Défaut",
+ "queue": "Queue",
+ "subtask-settings": "Paramètres des sous-tâches",
+ "boardSubtaskSettingsPopup-title": "Paramètres des sous-tâches du tableau",
+ "show-subtasks-field": "Les cartes peuvent avoir des sous-tâches",
+ "deposit-subtasks-board": "Déposer des sous-tâches dans ce tableau :",
+ "deposit-subtasks-list": "Liste de destination pour les sous-tâches déposées ici :",
+ "show-parent-in-minicard": "Voir la carte parente dans la mini-carte :",
+ "prefix-with-full-path": "Préfixer avec le chemin complet",
+ "prefix-with-parent": "Préfixer avec le parent",
+ "subtext-with-full-path": "Sous-titre avec le chemin complet",
+ "subtext-with-parent": "Sous-titre avec le parent",
+ "change-card-parent": "Changer le parent de la carte",
+ "parent-card": "Carte parente",
+ "source-board": "Tableau source",
+ "no-parent": "Ne pas afficher le parent",
+ "activity-added-label": "a ajouté l'étiquette '%s' à %s",
+ "activity-removed-label": "a supprimé l'étiquette '%s' de %s",
+ "activity-delete-attach": "a supprimé une pièce jointe de %s",
+ "activity-added-label-card": "a ajouté l'étiquette '%s'",
+ "activity-removed-label-card": "a supprimé l'étiquette '%s'",
+ "activity-delete-attach-card": "a supprimé une pièce jointe",
+ "activity-set-customfield": "a défini le champ personnalisé '%s' à '%s' dans %s",
+ "activity-unset-customfield": "a effacé le champ personnalisé '%s' dans %s",
+ "r-rule": "Règle",
+ "r-add-trigger": "Ajouter un déclencheur",
+ "r-add-action": "Ajouter une action",
+ "r-board-rules": "Règles du tableau",
+ "r-add-rule": "Ajouter une règle",
+ "r-view-rule": "Voir la règle",
+ "r-delete-rule": "Supprimer la règle",
+ "r-new-rule-name": "Titre de la nouvelle règle",
+ "r-no-rules": "Pas de règles",
+ "r-when-a-card": "Quand une carte",
+ "r-is": "est",
+ "r-is-moved": "est déplacée",
+ "r-added-to": "est ajoutée à",
+ "r-removed-from": "Supprimé de",
+ "r-the-board": "tableau",
+ "r-list": "liste",
+ "set-filter": "Définir un filtre",
+ "r-moved-to": "Déplacé vers",
+ "r-moved-from": "Déplacé depuis",
+ "r-archived": "Archivé",
+ "r-unarchived": "Restauré depuis l'Archive",
+ "r-a-card": "carte",
+ "r-when-a-label-is": "Quand une étiquette est",
+ "r-when-the-label": "Quand l'étiquette est",
+ "r-list-name": "Nom de la liste",
+ "r-when-a-member": "Quand un participant est",
+ "r-when-the-member": "Quand le participant",
+ "r-name": "nom",
+ "r-when-a-attach": "Quand une pièce jointe",
+ "r-when-a-checklist": "Quand une checklist est",
+ "r-when-the-checklist": "Quand la checklist",
+ "r-completed": "Terminé",
+ "r-made-incomplete": "Rendu incomplet",
+ "r-when-a-item": "Quand un élément de la checklist est",
+ "r-when-the-item": "Quand l'élément de la checklist",
+ "r-checked": "Coché",
+ "r-unchecked": "Décoché",
+ "r-move-card-to": "Déplacer la carte vers",
+ "r-top-of": "En haut de",
+ "r-bottom-of": "En bas de",
+ "r-its-list": "sa liste",
+ "r-archive": "Archiver",
+ "r-unarchive": "Restaurer depuis l'Archive",
+ "r-card": "carte",
+ "r-add": "Ajouter",
+ "r-remove": "Supprimer",
+ "r-label": "étiquette",
+ "r-member": "participant",
+ "r-remove-all": "Supprimer tous les membres de la carte",
+ "r-set-color": "Définir la couleur à",
+ "r-checklist": "checklist",
+ "r-check-all": "Tout cocher",
+ "r-uncheck-all": "Tout décocher",
+ "r-items-check": "Élément de checklist",
+ "r-check": "Cocher",
+ "r-uncheck": "Décocher",
+ "r-item": "élément",
+ "r-of-checklist": "de la checklist",
+ "r-send-email": "Envoyer un email",
+ "r-to": "à",
+ "r-subject": "sujet",
+ "r-rule-details": "Détails de la règle",
+ "r-d-move-to-top-gen": "Déplacer la carte en haut de sa liste",
+ "r-d-move-to-top-spec": "Déplacer la carte en haut de la liste",
+ "r-d-move-to-bottom-gen": "Déplacer la carte en bas de sa liste",
+ "r-d-move-to-bottom-spec": "Déplacer la carte en bas de la liste",
+ "r-d-send-email": "Envoyer un email",
+ "r-d-send-email-to": "à",
+ "r-d-send-email-subject": "sujet",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Archiver la carte",
+ "r-d-unarchive": "Restaurer la carte depuis l'Archive",
+ "r-d-add-label": "Ajouter une étiquette",
+ "r-d-remove-label": "Supprimer l'étiquette",
+ "r-create-card": "Créer une nouvelle carte",
+ "r-in-list": "dans la liste",
+ "r-in-swimlane": "Dans le couloir",
+ "r-d-add-member": "Ajouter un participant",
+ "r-d-remove-member": "Supprimer un participant",
+ "r-d-remove-all-member": "Supprimer tous les participants",
+ "r-d-check-all": "Cocher tous les éléments d'une liste",
+ "r-d-uncheck-all": "Décocher tous les éléments d'une liste",
+ "r-d-check-one": "Cocher l'élément",
+ "r-d-uncheck-one": "Décocher l'élément",
+ "r-d-check-of-list": "de la checklist",
+ "r-d-add-checklist": "Ajouter une checklist",
+ "r-d-remove-checklist": "Supprimer la checklist",
+ "r-by": "par",
+ "r-add-checklist": "Ajouter une checklist",
+ "r-with-items": "avec les items",
+ "r-items-list": "item1, item2, item3",
+ "r-add-swimlane": "Ajouter un couloir",
+ "r-swimlane-name": "Nom du couloir",
+ "r-board-note": "Note : laisser le champ vide pour faire correspondre avec toutes les valeurs possibles.",
+ "r-checklist-note": "Note : les items de la checklist doivent être séparés par des virgules.",
+ "r-when-a-card-is-moved": "Quand une carte est déplacée vers une autre liste",
+ "r-set": "Définir",
+ "r-update": "Mettre à jour",
+ "r-datefield": "champ date",
+ "r-df-start-at": "début",
+ "r-df-due-at": "échéance",
+ "r-df-end-at": "fin",
+ "r-df-received-at": "reçu",
+ "r-to-current-datetime": "à la date/heure courante",
+ "r-remove-value-from": "Supprimer la valeur de",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Méthode d'authentification",
+ "authentication-type": "Type d'authentification",
+ "custom-product-name": "Nom personnalisé",
+ "layout": "Interface",
+ "hide-logo": "Cacher le logo",
+ "add-custom-html-after-body-start": "Ajouter le HTML personnalisé après le début du <body>",
+ "add-custom-html-before-body-end": "Ajouter le HTML personnalisé avant la fin du </body>",
+ "error-undefined": "Une erreur inconnue s'est produite",
+ "error-ldap-login": "Une erreur s'est produite lors de la tentative de connexion",
+ "display-authentication-method": "Afficher la méthode d'authentification",
+ "default-authentication-method": "Méthode d'authentification par défaut",
+ "duplicate-board": "Dupliquer le tableau",
+ "people-number": "Le nombre d'utilisateurs est de :",
+ "swimlaneDeletePopup-title": "Supprimer le couloir ?",
+ "swimlane-delete-pop": "Toutes les actions vont être supprimées du suivi d'activités et vous ne pourrez plus utiliser ce couloir. Cette action est irréversible.",
+ "restore-all": "Tout restaurer",
+ "delete-all": "Tout supprimer",
+ "loading": "Chargement, merci de patienter.",
+ "previous_as": "dernière heure était",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Êtes-vous sûr de vouloir supprimer ce compte ? Cette opération ne peut pas être annulée. ",
+ "accounts-allowUserDelete": "Autoriser les utilisateurs à supprimer leur compte",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/gl.i18n.json b/i18n/gl.i18n.json
index 8f49cd03..e6aa9666 100644
--- a/i18n/gl.i18n.json
+++ b/i18n/gl.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Aceptar",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Accións",
- "activities": "Actividades",
- "activity": "Actividade",
- "activity-added": "engadiuse %s a %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Engadir",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Engadir anexo",
- "add-board": "Engadir taboleiro",
- "add-card": "Engadir tarxeta",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Engadir etiqueta",
- "add-list": "Engadir lista",
- "add-members": "Engadir membros",
- "added": "Added",
- "addMemberPopup-title": "Membros",
- "admin": "Admin",
- "admin-desc": "Pode ver e editar tarxetas, retirar membros e cambiar a configuración do taboleiro.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Todos os taboleiros",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arquivar",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restaurar taboleiro",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Arquivar",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Anexo",
- "attachment-delete-pop": "A eliminación de anexos é permanente. Non se pode desfacer.",
- "attachmentDeletePopup-title": "Eliminar anexo?",
- "attachments": "Anexos",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Back",
- "board-change-color": "Cambiar cor",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Taboleiros",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Listas",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancelar",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Editar anexos",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Editar etiquetas",
- "card-edit-members": "Editar membros",
- "card-labels-title": "Cambiar as etiquetas da tarxeta.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Membros",
- "cardMorePopup-title": "Máis",
- "cardTemplatePopup-title": "Create template",
- "cards": "Tarxetas",
- "cards-count": "Tarxetas",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Cambiar",
- "change-avatar": "Cambiar o avatar",
- "change-password": "Cambiar o contrasinal",
- "change-permissions": "Cambiar os permisos",
- "change-settings": "Cambiar a configuración",
- "changeAvatarPopup-title": "Cambiar o avatar",
- "changeLanguagePopup-title": "Cambiar de idioma",
- "changePasswordPopup-title": "Cambiar o contrasinal",
- "changePermissionsPopup-title": "Cambiar os permisos",
- "changeSettingsPopup-title": "Cambiar a configuración",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "negro",
- "color-blue": "azul",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "verde",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "laranxa",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "rosa",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "vermello",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "celeste",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "amarelo",
- "unset-color": "Unset",
- "comment": "Comentario",
- "comment-placeholder": "Escribir un comentario",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computador",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Crear",
- "createBoardPopup-title": "Crear taboleiro",
- "chooseBoardSourcePopup-title": "Importar taboleiro",
- "createLabelPopup-title": "Crear etiqueta",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "actual",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Data",
- "decline": "Rexeitar",
- "default-avatar": "Avatar predeterminado",
- "delete": "Eliminar",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Eliminar a etiqueta?",
- "description": "Descrición",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Desbotar",
- "done": "Feito",
- "download": "Descargar",
- "edit": "Editar",
- "edit-avatar": "Cambiar de avatar",
- "edit-profile": "Editar o perfil",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Cambiar a data de inicio",
- "editCardDueDatePopup-title": "Cambiar a data límite",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Cambiar a etiqueta",
- "editNotificationPopup-title": "Editar a notificación",
- "editProfilePopup-title": "Editar o perfil",
- "email": "Correo electrónico",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "Esta lista non existe",
- "error-user-doesNotExist": "Este usuario non existe",
- "error-user-notAllowSelf": "Non é posíbel convidarse a un mesmo",
- "error-user-notCreated": "Este usuario non está creado",
- "error-username-taken": "Este nome de usuario xa está collido",
- "error-email-taken": "Email has already been taken",
- "export-board": "Exportar taboleiro",
- "filter": "Filtro",
- "filter-cards": "Filtrar tarxetas",
- "filter-clear": "Limpar filtro",
- "filter-no-label": "Non hai etiquetas",
- "filter-no-member": "Non hai membros",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "O filtro está activado",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Nome completo",
- "header-logo-title": "Retornar á páxina dos seus taboleiros.",
- "hide-system-messages": "Agochar as mensaxes do sistema",
- "headerBarCreateBoardPopup-title": "Crear taboleiro",
- "home": "Inicio",
- "import": "Importar",
- "link": "Link",
- "import-board": "importar taboleiro",
- "import-board-c": "Importar taboleiro",
- "import-board-title-trello": "Importar taboleiro de Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "De Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Iniciais",
- "invalid-date": "A data é incorrecta",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Crear etiqueta",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Etiquetas",
- "language": "Idioma",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Saír do taboleiro",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "Máis",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Listas",
- "swimlanes": "Swimlanes",
- "log-out": "Pechar a sesión",
- "log-in": "Acceder",
- "loginPopup-title": "Acceder",
- "memberMenuPopup-title": "Member Settings",
- "members": "Membros",
- "menu": "Menú",
- "move-selection": "Mover selección",
- "moveCardPopup-title": "Mover tarxeta",
- "moveCardToBottom-title": "Mover abaixo de todo",
- "moveCardToTop-title": "Mover arriba de todo",
- "moveSelectionPopup-title": "Mover selección",
- "multi-selection": "Selección múltipla",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Nome",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Non hai resultados",
- "normal": "Normal",
- "normal-desc": "Pode ver e editar tarxetas. Non pode cambiar a configuración.",
- "not-accepted-yet": "O convite aínda non foi aceptado",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "opcional",
- "or": "ou",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Non se atopou a páxina.",
- "password": "Contrasinal",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Perfil",
- "public": "Público",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribir",
- "team": "Equipo",
- "this-board": "este taboleiro",
- "this-card": "esta tarxeta",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Hora",
- "title": "Título",
- "tracking": "Seguimento",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Enviar",
- "upload-avatar": "Enviar un avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Nome de usuario",
- "view-it": "Velo",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Vixiar",
- "watching": "Vixiando",
- "watching-info": "Recibirá unha notificación sobre calquera cambio que se produza neste taboleiro",
- "welcome-board": "Taboleiro de benvida",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Fundamentos",
- "welcome-list2": "Avanzado",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Que desexa facer?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Panel de administración",
- "settings": "Configuración",
- "people": "Persoas",
- "registration": "Rexistro",
- "disable-self-registration": "Desactivar o auto-rexistro",
- "invite": "Convidar",
- "invite-people": "Convidar persoas",
- "to-boards": "Ao(s) taboleiro(s)",
- "email-addresses": "Enderezos de correo",
- "smtp-host-description": "O enderezo do servidor de SMTP que xestiona os seu correo electrónico.",
- "smtp-port-description": "O porto que o servidor de SMTP emprega para o correo saínte.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "Servidor de SMTP",
- "smtp-port": "Porto de SMTP",
- "smtp-username": "Nome de usuario",
- "smtp-password": "Contrasinal",
- "smtp-tls": "TLS support",
- "send-from": "De",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Engadir",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Aceptar",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Accións",
+ "activities": "Actividades",
+ "activity": "Actividade",
+ "activity-added": "engadiuse %s a %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Engadir",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Engadir anexo",
+ "add-board": "Engadir taboleiro",
+ "add-card": "Engadir tarxeta",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Engadir etiqueta",
+ "add-list": "Engadir lista",
+ "add-members": "Engadir membros",
+ "added": "Added",
+ "addMemberPopup-title": "Membros",
+ "admin": "Admin",
+ "admin-desc": "Pode ver e editar tarxetas, retirar membros e cambiar a configuración do taboleiro.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Todos os taboleiros",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arquivar",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restaurar taboleiro",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Arquivar",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Anexo",
+ "attachment-delete-pop": "A eliminación de anexos é permanente. Non se pode desfacer.",
+ "attachmentDeletePopup-title": "Eliminar anexo?",
+ "attachments": "Anexos",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Back",
+ "board-change-color": "Cambiar cor",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Taboleiros",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Listas",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancelar",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Editar anexos",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Editar etiquetas",
+ "card-edit-members": "Editar membros",
+ "card-labels-title": "Cambiar as etiquetas da tarxeta.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Membros",
+ "cardMorePopup-title": "Máis",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Tarxetas",
+ "cards-count": "Tarxetas",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Cambiar",
+ "change-avatar": "Cambiar o avatar",
+ "change-password": "Cambiar o contrasinal",
+ "change-permissions": "Cambiar os permisos",
+ "change-settings": "Cambiar a configuración",
+ "changeAvatarPopup-title": "Cambiar o avatar",
+ "changeLanguagePopup-title": "Cambiar de idioma",
+ "changePasswordPopup-title": "Cambiar o contrasinal",
+ "changePermissionsPopup-title": "Cambiar os permisos",
+ "changeSettingsPopup-title": "Cambiar a configuración",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "negro",
+ "color-blue": "azul",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "verde",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "laranxa",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "rosa",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "vermello",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "celeste",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "amarelo",
+ "unset-color": "Unset",
+ "comment": "Comentario",
+ "comment-placeholder": "Escribir un comentario",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computador",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Crear",
+ "createBoardPopup-title": "Crear taboleiro",
+ "chooseBoardSourcePopup-title": "Importar taboleiro",
+ "createLabelPopup-title": "Crear etiqueta",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "actual",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Data",
+ "decline": "Rexeitar",
+ "default-avatar": "Avatar predeterminado",
+ "delete": "Eliminar",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Eliminar a etiqueta?",
+ "description": "Descrición",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Desbotar",
+ "done": "Feito",
+ "download": "Descargar",
+ "edit": "Editar",
+ "edit-avatar": "Cambiar de avatar",
+ "edit-profile": "Editar o perfil",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Cambiar a data de inicio",
+ "editCardDueDatePopup-title": "Cambiar a data límite",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Cambiar a etiqueta",
+ "editNotificationPopup-title": "Editar a notificación",
+ "editProfilePopup-title": "Editar o perfil",
+ "email": "Correo electrónico",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "Esta lista non existe",
+ "error-user-doesNotExist": "Este usuario non existe",
+ "error-user-notAllowSelf": "Non é posíbel convidarse a un mesmo",
+ "error-user-notCreated": "Este usuario non está creado",
+ "error-username-taken": "Este nome de usuario xa está collido",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Exportar taboleiro",
+ "filter": "Filtro",
+ "filter-cards": "Filtrar tarxetas",
+ "filter-clear": "Limpar filtro",
+ "filter-no-label": "Non hai etiquetas",
+ "filter-no-member": "Non hai membros",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "O filtro está activado",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Nome completo",
+ "header-logo-title": "Retornar á páxina dos seus taboleiros.",
+ "hide-system-messages": "Agochar as mensaxes do sistema",
+ "headerBarCreateBoardPopup-title": "Crear taboleiro",
+ "home": "Inicio",
+ "import": "Importar",
+ "link": "Link",
+ "import-board": "importar taboleiro",
+ "import-board-c": "Importar taboleiro",
+ "import-board-title-trello": "Importar taboleiro de Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "De Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Iniciais",
+ "invalid-date": "A data é incorrecta",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Crear etiqueta",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Etiquetas",
+ "language": "Idioma",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Saír do taboleiro",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "Máis",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Listas",
+ "swimlanes": "Swimlanes",
+ "log-out": "Pechar a sesión",
+ "log-in": "Acceder",
+ "loginPopup-title": "Acceder",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Membros",
+ "menu": "Menú",
+ "move-selection": "Mover selección",
+ "moveCardPopup-title": "Mover tarxeta",
+ "moveCardToBottom-title": "Mover abaixo de todo",
+ "moveCardToTop-title": "Mover arriba de todo",
+ "moveSelectionPopup-title": "Mover selección",
+ "multi-selection": "Selección múltipla",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Nome",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Non hai resultados",
+ "normal": "Normal",
+ "normal-desc": "Pode ver e editar tarxetas. Non pode cambiar a configuración.",
+ "not-accepted-yet": "O convite aínda non foi aceptado",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "opcional",
+ "or": "ou",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Non se atopou a páxina.",
+ "password": "Contrasinal",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Perfil",
+ "public": "Público",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribir",
+ "team": "Equipo",
+ "this-board": "este taboleiro",
+ "this-card": "esta tarxeta",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Hora",
+ "title": "Título",
+ "tracking": "Seguimento",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Enviar",
+ "upload-avatar": "Enviar un avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Nome de usuario",
+ "view-it": "Velo",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Vixiar",
+ "watching": "Vixiando",
+ "watching-info": "Recibirá unha notificación sobre calquera cambio que se produza neste taboleiro",
+ "welcome-board": "Taboleiro de benvida",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Fundamentos",
+ "welcome-list2": "Avanzado",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Que desexa facer?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Panel de administración",
+ "settings": "Configuración",
+ "people": "Persoas",
+ "registration": "Rexistro",
+ "disable-self-registration": "Desactivar o auto-rexistro",
+ "invite": "Convidar",
+ "invite-people": "Convidar persoas",
+ "to-boards": "Ao(s) taboleiro(s)",
+ "email-addresses": "Enderezos de correo",
+ "smtp-host-description": "O enderezo do servidor de SMTP que xestiona os seu correo electrónico.",
+ "smtp-port-description": "O porto que o servidor de SMTP emprega para o correo saínte.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "Servidor de SMTP",
+ "smtp-port": "Porto de SMTP",
+ "smtp-username": "Nome de usuario",
+ "smtp-password": "Contrasinal",
+ "smtp-tls": "TLS support",
+ "send-from": "De",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Engadir",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json
index 3a9d493a..6c5bfd04 100644
--- a/i18n/he.i18n.json
+++ b/i18n/he.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "אישור",
- "act-activity-notify": "הודעת פעילות",
- "act-addAttachment": "הקובץ __attachment__ צורף אל הכרטיס __card__ ברשימה __list__ למסלול __swimlane__ שבלוח __board__",
- "act-deleteAttachment": "הקובץ __attachment__ נמחק מהכרטיס __card__ ברשימה __list__ מהמסלול __swimlane__ שבלוח __board__",
- "act-addSubtask": "תת־משימה __attachment__ נוספה אל הכרטיס __card__ ברשימה __list__ למסלול __swimlane__ שבלוח __board__",
- "act-addLabel": "התווית __label__ נוספה לכרטיס __card__ ברשימה __list__ למסלול __swimlane__ שבלוח __board__",
- "act-addedLabel": "התווית __label__ נוספה לכרטיס __card__ ברשימה __list__ למסלול __swimlane__ שבלוח __board__",
- "act-removeLabel": "התווית __label__ הוסרה מהכרטיס __card__ ברשימה __list__ מהמסלול __swimlane__ שבלוח __board__",
- "act-removedLabel": "התווית __label__ הוסרה מהכרטיס __card__ ברשימה __list__ מהמסלול __swimlane__ שבלוח __board__",
- "act-addChecklist": "נוספה רשימת מטלות __checklist__ לכרטיס __card__ ברשימה __list__ שבמסלול __swimlane__ בלוח __board__",
- "act-addChecklistItem": "נוסף פריט סימון __checklistItem__ לרשימת המטלות __checklist__ לכרטיס __card__ ברשימה __list__ במסלול __swimlane__ בלוח __board__",
- "act-removeChecklist": "הוסרה רשימת מטלות __checklist__ מהכרטיס __card__ ברשימה __list__ שבמסלול __swimlane__ בלוח __board__",
- "act-removeChecklistItem": "פריט הסימון __checklistItem__ הוסר מרשימת המטלות __checkList__ בכרטיס __card__ ברשימה __list__ מהמסלול __swimlane__ בלוח __board__",
- "act-checkedItem": "הפריט __checklistItem__ ששייך לרשימת המשימות __checklist__ בכרטיס __card__ שברשימת __list__ במסלול __swimlane__ שבלוח __board__ סומן",
- "act-uncheckedItem": "בוטל הסימון __checklistItem__ ברשימת המטלות __checklist__ בכרטיס __card__ ברשימה __list__ במסלול __swimlane__ בלוח __board__",
- "act-completeChecklist": "רשימת המטלות __checklist__ בכרטיס __card__ שברשימה __list__ תחת המסלול __swimlane__ בלוח __board__ הושלמה",
- "act-uncompleteChecklist": "ההשלמה של רשימת המטלות __checklist__ בכרטיס __card__ שברשימה __list__ תחת המסלול __swimlane__ בלוח __board__ בוטלה",
- "act-addComment": "התקבלה תגובה על הכרטיס __card__:‏ __comment__ ברשימה __list__ במסלול __swimlane__ בלוח __board__",
- "act-editComment": "התגובה בכרטיס __card__: __comment__ שברשימה __list__ שבמסלול __swimlane__ שבלוח __board__ נערכה",
- "act-deleteComment": "התגובה בכרטיס __card__: __comment__ שברשימה __list__ שבמסלול __swimlane__ שבלוח __board__ נמחקה",
- "act-createBoard": "הלוח __board__ נוצר",
- "act-createSwimlane": "נוצר מסלול __swimlane__ בלוח __board__",
- "act-createCard": "הכרטיס __card__ נוצר ברשימה __list__ במסלול __swimlane__ שבלוח __board__",
- "act-createCustomField": "השדה המותאם אישית __customField__ שבלוח __board__ נוצר",
- "act-deleteCustomField": "השדה המותאם אישית __customField__ שבלוח __board__ נמחק",
- "act-setCustomField": "השדה המותאם אישית _customField__: __customFieldValue__ בכרטיס __card__ ברשימה __list__  במסלול __swimlane__ שבלוח __board__ נערך",
- "act-createList": "הרשימה __list__ נוספה ללוח __board__",
- "act-addBoardMember": "החבר __member__ נוסף אל __board__",
- "act-archivedBoard": "הלוח __board__ הועבר לארכיון",
- "act-archivedCard": "הכרטיס __card__ ברשימה __list__ במסלול __swimlane__ בלוח __board__ הועבר לארכיון",
- "act-archivedList": "הרשימה __list__ במסלול __swimlane__ בלוח __board__ הועברה לארכיון",
- "act-archivedSwimlane": "המסלול __swimlane__ בלוח __board__ הועבר לארכיון",
- "act-importBoard": "הייבוא של הלוח __board__ הושלם",
- "act-importCard": "הייבוא של הכרטיס __card__ לרשימה __list__ למסלול __swimlane__ ללוח __board__ הושלם",
- "act-importList": "הרשימה __list__ ייובאה למסלול __swimlane__ שבלוח __board__",
- "act-joinMember": "החבר __member__ נוסף לכרטיס __card__ לרשימה __list__ במסלול __swimlane__ בלוח __board__",
- "act-moveCard": "הועבר הכרטיס __card__ בלוח __board__ מהרשימה __oldList__ במסלול __oldSwimlane__ לרשימה __list__ במסלול __swimlane__.",
- "act-moveCardToOtherBoard": "הכרטיס __card__ הועבר מהרשימה __oldList__ במסלול __oldSwimlane__ בלוח __oldBoard__ לרשימה __list__ במסלול __swimlane__ בלוח __board__",
- "act-removeBoardMember": "החבר __member__ הוסר מהלוח __board__",
- "act-restoredCard": "הכרטיס __card__ שוחזר לרשימה __list__ למסלול __swimlane__ ללוח __board__",
- "act-unjoinMember": "החבר __member__ הוסר מהכרטיס __card__ ברשימה __list__ במסלול __swimlane__ בלוח __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "פעולות",
- "activities": "פעילויות",
- "activity": "פעילות",
- "activity-added": "%s נוסף ל%s",
- "activity-archived": "%s הועבר לארכיון",
- "activity-attached": "%s צורף ל%s",
- "activity-created": "%s נוצר",
- "activity-customfield-created": "נוצר שדה בהתאמה אישית %s",
- "activity-excluded": "%s לא נכלל ב%s",
- "activity-imported": "%s ייובא מ%s אל %s",
- "activity-imported-board": "%s יובא מ%s",
- "activity-joined": "הצטרפות אל %s",
- "activity-moved": "%s עבר מ%s ל%s",
- "activity-on": "ב%s",
- "activity-removed": "%s הוסר מ%s",
- "activity-sent": "%s נשלח ל%s",
- "activity-unjoined": "בוטל צירוף אל %s",
- "activity-subtask-added": "נוספה תת־משימה אל %s",
- "activity-checked-item": "%s סומן ברשימת המשימות %s מתוך %s",
- "activity-unchecked-item": "בוטל הסימון של %s ברשימת המשימות %s מתוך %s",
- "activity-checklist-added": "נוספה רשימת משימות אל %s",
- "activity-checklist-removed": "הוסרה רשימת משימות מ־%s",
- "activity-checklist-completed": "רשימת המטלות __checklist__ בכרטיס __card__ שברשימה __list__ תחת המסלול __swimlane__ בלוח __board__ הושלמה",
- "activity-checklist-uncompleted": "רשימת המשימות %s מתוך %s סומנה כבלתי מושלמת",
- "activity-checklist-item-added": "נוסף פריט רשימת משימות אל ‚%s‘ תחת %s",
- "activity-checklist-item-removed": "הוסר פריט מרשימת המשימות ‚%s’ תחת %s",
- "add": "הוספה",
- "activity-checked-item-card": "סומן %s ברשימת המשימות %s",
- "activity-unchecked-item-card": "הסימון של %s בוטל ברשימת המשימות %s",
- "activity-checklist-completed-card": "רשימת המטלות __checklist__ בכרטיס __card__ שברשימה __list__ תחת המסלול __swimlane__ בלוח __board__ הושלמה",
- "activity-checklist-uncompleted-card": "רשימת המשימות %s סומנה כבלתי מושלמת",
- "add-attachment": "הוספת קובץ מצורף",
- "add-board": "הוספת לוח",
- "add-card": "הוספת כרטיס",
- "add-swimlane": "הוספת מסלול",
- "add-subtask": "הוסף תת משימה",
- "add-checklist": "הוספת רשימת מטלות",
- "add-checklist-item": "הוספת פריט לרשימת משימות",
- "add-cover": "הוספת כיסוי",
- "add-label": "הוספת תווית",
- "add-list": "הוספת רשימה",
- "add-members": "הוספת חברים",
- "added": "התווסף",
- "addMemberPopup-title": "חברים",
- "admin": "מנהל",
- "admin-desc": "יש הרשאות לצפייה ולעריכת כרטיסים, להסרת חברים ולשינוי הגדרות לוח.",
- "admin-announcement": "הכרזה",
- "admin-announcement-active": "הכרזת מערכת פעילה",
- "admin-announcement-title": "הכרזה ממנהל המערכת",
- "all-boards": "כל הלוחות",
- "and-n-other-card": "וכרטיס נוסף",
- "and-n-other-card_plural": "ו־__count__ כרטיסים נוספים",
- "apply": "החלה",
- "app-is-offline": "בטעינה, נא להמתין. רענון הדף תוביל לאבדן מידע. אם הטעינה אורכת זמן רב מדי, מוטב לבדוק אם השרת מקוון.",
- "archive": "העברה לארכיון",
- "archive-all": "אחסן הכל בארכיון",
- "archive-board": "העברת הלוח לארכיון",
- "archive-card": "העברת הכרטיס לארכיון",
- "archive-list": "העברת הרשימה לארכיון",
- "archive-swimlane": "העברת מסלול לארכיון",
- "archive-selection": "העברת הבחירה לארכיון",
- "archiveBoardPopup-title": "להעביר לוח זה לארכיון?",
- "archived-items": "להעביר לארכיון",
- "archived-boards": "לוחות שנשמרו בארכיון",
- "restore-board": "שחזור לוח",
- "no-archived-boards": "לא נשמרו לוחות בארכיון.",
- "archives": "להעביר לארכיון",
- "template": "תבנית",
- "templates": "תבניות",
- "assign-member": "הקצאת חבר",
- "attached": "מצורף",
- "attachment": "קובץ מצורף",
- "attachment-delete-pop": "מחיקת קובץ מצורף הנה סופית. אין דרך חזרה.",
- "attachmentDeletePopup-title": "למחוק קובץ מצורף?",
- "attachments": "קבצים מצורפים",
- "auto-watch": "הוספת לוחות למעקב כשהם נוצרים",
- "avatar-too-big": "תמונת המשתמש גדולה מדי (70 ק״ב לכל היותר)",
- "back": "חזרה",
- "board-change-color": "שינוי צבע",
- "board-nb-stars": "%s כוכבים",
- "board-not-found": "לוח לא נמצא",
- "board-private-info": "לוח זה יהיה <strong>פרטי</strong>.",
- "board-public-info": "לוח זה יהיה <strong>ציבורי</strong>.",
- "boardChangeColorPopup-title": "שינוי רקע ללוח",
- "boardChangeTitlePopup-title": "שינוי שם הלוח",
- "boardChangeVisibilityPopup-title": "שינוי מצב הצגה",
- "boardChangeWatchPopup-title": "שינוי הגדרת המעקב",
- "boardMenuPopup-title": "הגדרות לוח",
- "boards": "לוחות",
- "board-view": "תצוגת לוח",
- "board-view-cal": "לוח שנה",
- "board-view-swimlanes": "מסלולים",
- "board-view-lists": "רשימות",
- "bucket-example": "כמו למשל „רשימת המשימות“",
- "cancel": "ביטול",
- "card-archived": "כרטיס זה שמור בארכיון.",
- "board-archived": "הלוח עבר לארכיון",
- "card-comments-title": "לכרטיס זה %s תגובות.",
- "card-delete-notice": "מחיקה היא סופית. כל הפעולות המשויכות לכרטיס זה תלכנה לאיוד.",
- "card-delete-pop": "כל הפעולות יוסרו מלוח הפעילות ולא תהיה אפשרות לפתוח מחדש את הכרטיס. אין דרך חזרה.",
- "card-delete-suggest-archive": "על מנת להסיר כרטיסים מהלוח מבלי לאבד את היסטוריית הפעילות שלהם, ניתן לשמור אותם בארכיון.",
- "card-due": "תאריך יעד",
- "card-due-on": "תאריך יעד",
- "card-spent": "זמן שהושקע",
- "card-edit-attachments": "עריכת קבצים מצורפים",
- "card-edit-custom-fields": "עריכת שדות בהתאמה אישית",
- "card-edit-labels": "עריכת תוויות",
- "card-edit-members": "עריכת חברים",
- "card-labels-title": "שינוי תוויות לכרטיס.",
- "card-members-title": "הוספה או הסרה של חברי הלוח מהכרטיס.",
- "card-start": "התחלה",
- "card-start-on": "מתחיל ב־",
- "cardAttachmentsPopup-title": "לצרף מ־",
- "cardCustomField-datePopup-title": "החלפת תאריך",
- "cardCustomFieldsPopup-title": "עריכת שדות בהתאמה אישית",
- "cardDeletePopup-title": "למחוק כרטיס?",
- "cardDetailsActionsPopup-title": "פעולות על הכרטיס",
- "cardLabelsPopup-title": "תוויות",
- "cardMembersPopup-title": "חברים",
- "cardMorePopup-title": "עוד",
- "cardTemplatePopup-title": "יצירת תבנית",
- "cards": "כרטיסים",
- "cards-count": "כרטיסים",
- "casSignIn": "כניסה עם CAS",
- "cardType-card": "כרטיס",
- "cardType-linkedCard": "כרטיס מקושר",
- "cardType-linkedBoard": "לוח מקושר",
- "change": "שינוי",
- "change-avatar": "החלפת תמונת משתמש",
- "change-password": "החלפת ססמה",
- "change-permissions": "שינוי הרשאות",
- "change-settings": "שינוי הגדרות",
- "changeAvatarPopup-title": "שינוי תמונת משתמש",
- "changeLanguagePopup-title": "החלפת שפה",
- "changePasswordPopup-title": "החלפת ססמה",
- "changePermissionsPopup-title": "שינוי הרשאות",
- "changeSettingsPopup-title": "שינוי הגדרות",
- "subtasks": "תת משימות",
- "checklists": "רשימות",
- "click-to-star": "יש ללחוץ להוספת הלוח למועדפים.",
- "click-to-unstar": "יש ללחוץ להסרת הלוח מהמועדפים.",
- "clipboard": "לוח גזירים או גרירה ושחרור",
- "close": "סגירה",
- "close-board": "סגירת לוח",
- "close-board-pop": "ניתן לשחזר את הלוח בלחיצה על כפתור „ארכיונים“ מהכותרת העליונה.",
- "color-black": "שחור",
- "color-blue": "כחול",
- "color-crimson": "שני",
- "color-darkgreen": "ירוק כהה",
- "color-gold": "זהב",
- "color-gray": "אפור",
- "color-green": "ירוק",
- "color-indigo": "אינדיגו",
- "color-lime": "ליים",
- "color-magenta": "ארגמן",
- "color-mistyrose": "ורד",
- "color-navy": "כחול כהה",
- "color-orange": "כתום",
- "color-paleturquoise": "טורקיז חיוור",
- "color-peachpuff": "נשיפת אפרסק",
- "color-pink": "ורוד",
- "color-plum": "שזיף",
- "color-purple": "סגול",
- "color-red": "אדום",
- "color-saddlebrown": "חום אוכף",
- "color-silver": "כסף",
- "color-sky": "תכלת",
- "color-slateblue": "צפחה כחולה",
- "color-white": "לבן",
- "color-yellow": "צהוב",
- "unset-color": "בטל הגדרה",
- "comment": "לפרסם",
- "comment-placeholder": "כתיבת הערה",
- "comment-only": "הערה בלבד",
- "comment-only-desc": "ניתן להגיב על כרטיסים בלבד.",
- "no-comments": "אין הערות",
- "no-comments-desc": "לא ניתן לצפות בתגובות ובפעילויות.",
- "computer": "מחשב",
- "confirm-subtask-delete-dialog": "למחוק את תת המשימה?",
- "confirm-checklist-delete-dialog": "למחוק את רשימת המשימות?",
- "copy-card-link-to-clipboard": "העתקת קישור הכרטיס ללוח הגזירים",
- "linkCardPopup-title": "קישור כרטיס",
- "searchElementPopup-title": "חיפוש",
- "copyCardPopup-title": "העתקת כרטיס",
- "copyChecklistToManyCardsPopup-title": "העתקת תבנית רשימת מטלות למגוון כרטיסים",
- "copyChecklistToManyCardsPopup-instructions": "כותרות ותיאורים של כרטיסי יעד בתצורת JSON זו",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"כותרת כרטיס ראשון\", \"description\":\"תיאור כרטיס ראשון\"}, {\"title\":\"כותרת כרטיס שני\",\"description\":\"תיאור כרטיס שני\"},{\"title\":\"כותרת כרטיס אחרון\",\"description\":\"תיאור כרטיס אחרון\"} ]",
- "create": "יצירה",
- "createBoardPopup-title": "יצירת לוח",
- "chooseBoardSourcePopup-title": "יבוא לוח",
- "createLabelPopup-title": "יצירת תווית",
- "createCustomField": "יצירת שדה",
- "createCustomFieldPopup-title": "יצירת שדה",
- "current": "נוכחי",
- "custom-field-delete-pop": "אין אפשרות לבטל את הפעולה. הפעולה תסיר את השדה שהותאם אישית מכל הכרטיסים ותשמיד את ההיסטוריה שלו.",
- "custom-field-checkbox": "תיבת סימון",
- "custom-field-date": "תאריך",
- "custom-field-dropdown": "רשימה נגללת",
- "custom-field-dropdown-none": "(ללא)",
- "custom-field-dropdown-options": "אפשרויות רשימה",
- "custom-field-dropdown-options-placeholder": "יש ללחוץ על enter כדי להוסיף עוד אפשרויות",
- "custom-field-dropdown-unknown": "(לא ידוע)",
- "custom-field-number": "מספר",
- "custom-field-text": "טקסט",
- "custom-fields": "שדות מותאמים אישית",
- "date": "תאריך",
- "decline": "סירוב",
- "default-avatar": "תמונת משתמש כבררת מחדל",
- "delete": "מחיקה",
- "deleteCustomFieldPopup-title": "למחוק שדה מותאם אישית?",
- "deleteLabelPopup-title": "למחוק תווית?",
- "description": "תיאור",
- "disambiguateMultiLabelPopup-title": "הבהרת פעולת תווית",
- "disambiguateMultiMemberPopup-title": "הבהרת פעולת חבר",
- "discard": "התעלמות",
- "done": "בוצע",
- "download": "הורדה",
- "edit": "עריכה",
- "edit-avatar": "החלפת תמונת משתמש",
- "edit-profile": "עריכת פרופיל",
- "edit-wip-limit": "עריכת מגבלת „בעבודה”",
- "soft-wip-limit": "מגבלת „בעבודה” רכה",
- "editCardStartDatePopup-title": "שינוי מועד התחלה",
- "editCardDueDatePopup-title": "שינוי מועד סיום",
- "editCustomFieldPopup-title": "עריכת שדה",
- "editCardSpentTimePopup-title": "שינוי הזמן שהושקע",
- "editLabelPopup-title": "שינוי תווית",
- "editNotificationPopup-title": "שינוי דיווח",
- "editProfilePopup-title": "עריכת פרופיל",
- "email": "דוא״ל",
- "email-enrollAccount-subject": "נוצר עבורך חשבון באתר __siteName__",
- "email-enrollAccount-text": "__user__ שלום,\n\nכדי להתחיל להשתמש בשירות, יש ללחוץ על הקישור המופיע להלן.\n\n__url__\n\nתודה.",
- "email-fail": "שליחת ההודעה בדוא״ל נכשלה",
- "email-fail-text": "שגיאה בעת ניסיון לשליחת הודעת דוא״ל",
- "email-invalid": "כתובת דוא״ל לא חוקית",
- "email-invite": "הזמנה באמצעות דוא״ל",
- "email-invite-subject": "נשלחה אליך הזמנה מאת __inviter__",
- "email-invite-text": "__user__ שלום,\n\nהוזמנת על ידי __inviter__ להצטרף ללוח „__board__“ להמשך שיתוף הפעולה.\n\nנא ללחוץ על הקישור המופיע להלן:\n\n__url__\n\nתודה.",
- "email-resetPassword-subject": "ניתן לאפס את ססמתך לאתר __siteName__",
- "email-resetPassword-text": "__user__ שלום,\n\nכדי לאפס את ססמתך, יש ללחוץ על הקישור המופיע להלן.\n\n__url__\n\nתודה.",
- "email-sent": "הודעת הדוא״ל נשלחה",
- "email-verifyEmail-subject": "אימות כתובת הדוא״ל שלך באתר __siteName__",
- "email-verifyEmail-text": "__user__ שלום,\n\nלאימות כתובת הדוא״ל המשויכת לחשבונך, עליך פשוט ללחוץ על הקישור המופיע להלן.\n\n__url__\n\nתודה.",
- "enable-wip-limit": "הפעלת מגבלת „בעבודה”",
- "error-board-doesNotExist": "לוח זה אינו קיים",
- "error-board-notAdmin": "צריכות להיות לך הרשאות ניהול על לוח זה כדי לעשות זאת",
- "error-board-notAMember": "עליך לקבל חברות בלוח זה כדי לעשות זאת",
- "error-json-malformed": "הטקסט שלך אינו JSON תקין",
- "error-json-schema": "נתוני ה־JSON שלך לא כוללים את המידע הנכון בתבנית הנכונה",
- "error-list-doesNotExist": "רשימה זו לא קיימת",
- "error-user-doesNotExist": "משתמש זה לא קיים",
- "error-user-notAllowSelf": "אינך יכול להזמין את עצמך",
- "error-user-notCreated": "משתמש זה לא נוצר",
- "error-username-taken": "המשתמש כבר קיים במערכת",
- "error-email-taken": "כתובת הדוא״ל כבר נמצאת בשימוש",
- "export-board": "ייצוא לוח",
- "filter": "מסנן",
- "filter-cards": "סינון כרטיסים",
- "filter-clear": "ניקוי המסנן",
- "filter-no-label": "אין תווית",
- "filter-no-member": "אין חבר כזה",
- "filter-no-custom-fields": "אין שדות מותאמים אישית",
- "filter-on": "המסנן פועל",
- "filter-on-desc": "מסנן כרטיסים פעיל בלוח זה. יש ללחוץ כאן לעריכת המסנן.",
- "filter-to-selection": "סינון לבחירה",
- "advanced-filter-label": "מסנן מתקדם",
- "advanced-filter-description": "המסנן המתקדם מאפשר לך לכתוב מחרוזת שמכילה את הפעולות הבאות: == != <= >= && || ( ) רווח מכהן כמפריד בין הפעולות. ניתן לסנן את כל השדות המותאמים אישית על ידי הקלדת שמם והערך שלהם. למשל: שדה1 == ערך1. לתשומת לבך: אם שדות או ערכים מכילים רווח, יש לעטוף אותם במירכא מכל צד. למשל: 'שדה 1' == 'ערך 1'. ניתן גם לשלב מגוון תנאים. למשל: F1 == V1 || F1 == V2. על פי רוב כל הפעולות מפוענחות משמאל לימין. ניתן לשנות את הסדר על ידי הצבת סוגריים. למשל: ( F1 == V1 && ( F2 == V2 || F2 == V3. כמו כן, ניתן לחפש בשדה טקסט באופן הבא: F1 == /Tes.*/i",
- "fullname": "שם מלא",
- "header-logo-title": "חזרה לדף הלוחות שלך.",
- "hide-system-messages": "הסתרת הודעות מערכת",
- "headerBarCreateBoardPopup-title": "יצירת לוח",
- "home": "בית",
- "import": "יבוא",
- "link": "קישור",
- "import-board": "ייבוא לוח",
- "import-board-c": "יבוא לוח",
- "import-board-title-trello": "ייבוא לוח מטרלו",
- "import-board-title-wekan": "ייבוא לוח מייצוא קודם",
- "import-sandstorm-backup-warning": "עדיף לא למחוק נתונים שייובאו מייצוא מקורי או מ־Trello בטרם בדיקה האם הגרעין הזה נסגר ונפתח שוב או אם מתקבלת שגיאה על כך שהלוח לא נמצא, משמעות הדבר היא אבדן מידע.",
- "import-sandstorm-warning": "הלוח שייובא ימחק את כל הנתונים הקיימים בלוח ויחליף אותם בלוח שייובא.",
- "from-trello": "מ־Trello",
- "from-wekan": "מייצוא קודם",
- "import-board-instruction-trello": "בלוח הטרלו שלך, עליך ללחוץ על ‚תפריט‘, ואז על ‚עוד‘, ‚הדפסה וייצוא‘, ‚יצוא JSON‘ ולהעתיק את הטקסט שנוצר.",
- "import-board-instruction-wekan": "בלוח שלך עליך לגשת אל ‚תפריט’, לאחר מכן ‚ייצוא לוח’ ואז להעתיק את הטקסט מהקובץ שהתקבל.",
- "import-board-instruction-about-errors": "גם אם התקבלו שגיאות בעת יבוא לוח, ייתכן שהייבוא עבד. כדי לבדוק זאת, יש להיכנס ל„כל הלוחות”.",
- "import-json-placeholder": "יש להדביק את נתוני ה־JSON התקינים לכאן",
- "import-map-members": "מיפוי חברים",
- "import-members-map": "הלוחות המיובאים שלך מכילים חברים. נא למפות את החברים שברצונך לייבא למשתמשים שלך",
- "import-show-user-mapping": "סקירת מיפוי חברים",
- "import-user-select": "נא לבחור את המשתמש ב־Wekan אותו ברצונך למפות אל חבר זה",
- "importMapMembersAddPopup-title": "בחירת משתמש",
- "info": "גרסה",
- "initials": "ראשי תיבות",
- "invalid-date": "תאריך שגוי",
- "invalid-time": "זמן שגוי",
- "invalid-user": "משתמש שגוי",
- "joined": "הצטרף",
- "just-invited": "הוזמנת ללוח זה",
- "keyboard-shortcuts": "קיצורי מקלדת",
- "label-create": "יצירת תווית",
- "label-default": "תווית בצבע %s (בררת מחדל)",
- "label-delete-pop": "אין דרך חזרה. התווית תוסר מכל הכרטיסים וההיסטוריה תימחק.",
- "labels": "תוויות",
- "language": "שפה",
- "last-admin-desc": "אין אפשרות לשנות תפקידים כיוון שחייב להיות מנהל אחד לפחות.",
- "leave-board": "עזיבת הלוח",
- "leave-board-pop": "לעזוב את __boardTitle__? שמך יוסר מכל הכרטיסים שבלוח זה.",
- "leaveBoardPopup-title": "לעזוב לוח ?",
- "link-card": "קישור לכרטיס זה",
- "list-archive-cards": "העברת כל הכרטיסים שברשימה זו לארכיון",
- "list-archive-cards-pop": "כל הכרטיסים מרשימה זו יוסרו מהלוח. לצפייה בכרטיסים השמורים בארכיון ולהחזירם ללוח, ניתן ללחוץ על „תפריט” > „פריטים בארכיון”.",
- "list-move-cards": "העברת כל הכרטיסים שברשימה זו",
- "list-select-cards": "בחירת כל הכרטיסים שברשימה זו",
- "set-color-list": "הגדרת צבע",
- "listActionPopup-title": "פעולות רשימה",
- "swimlaneActionPopup-title": "פעולות על מסלול",
- "swimlaneAddPopup-title": "הוספת מסלול מתחת",
- "listImportCardPopup-title": "יבוא כרטיס מ־Trello",
- "listMorePopup-title": "עוד",
- "link-list": "קישור לרשימה זו",
- "list-delete-pop": "כל הפעולות תוסרנה מרצף הפעילות ולא תהיה לך אפשרות לשחזר את הרשימה. אין ביטול.",
- "list-delete-suggest-archive": "ניתן לשמור רשימה בארכיון כדי להסיר אותה מהלוח ולשמור על היסטוריית הפעילות.",
- "lists": "רשימות",
- "swimlanes": "מסלולים",
- "log-out": "יציאה",
- "log-in": "כניסה",
- "loginPopup-title": "כניסה",
- "memberMenuPopup-title": "הגדרות חברות",
- "members": "חברים",
- "menu": "תפריט",
- "move-selection": "העברת הבחירה",
- "moveCardPopup-title": "העברת כרטיס",
- "moveCardToBottom-title": "העברה לתחתית הרשימה",
- "moveCardToTop-title": "העברה לראש הרשימה",
- "moveSelectionPopup-title": "העברת בחירה",
- "multi-selection": "בחירה מרובה",
- "multi-selection-on": "בחירה מרובה פועלת",
- "muted": "מושתק",
- "muted-info": "מעתה לא תתקבלנה אצלך התרעות על שינויים בלוח זה",
- "my-boards": "הלוחות שלי",
- "name": "שם",
- "no-archived-cards": "אין כרטיסים בארכיון",
- "no-archived-lists": "אין רשימות בארכיון",
- "no-archived-swimlanes": "אין מסלולים בארכיון.",
- "no-results": "אין תוצאות",
- "normal": "רגיל",
- "normal-desc": "הרשאה לצפות ולערוך כרטיסים. לא ניתן לשנות הגדרות.",
- "not-accepted-yet": "ההזמנה לא אושרה עדיין",
- "notify-participate": "קבלת עדכונים על כרטיסים בהם יש לך מעורבות הן בתהליך היצירה והן כחבר",
- "notify-watch": "קבלת עדכונים על כל לוח, רשימה או כרטיס שסימנת למעקב",
- "optional": "רשות",
- "or": "או",
- "page-maybe-private": "יתכן שדף זה פרטי. ניתן לצפות בו על ידי <a href='%s'>כניסה למערכת</a>",
- "page-not-found": "דף לא נמצא.",
- "password": "ססמה",
- "paste-or-dragdrop": "כדי להדביק או לגרור ולשחרר קובץ תמונה אליו (תמונות בלבד)",
- "participating": "משתתפים",
- "preview": "תצוגה מקדימה",
- "previewAttachedImagePopup-title": "תצוגה מקדימה",
- "previewClipboardImagePopup-title": "תצוגה מקדימה",
- "private": "פרטי",
- "private-desc": "לוח זה פרטי. רק אנשים שנוספו ללוח יכולים לצפות ולערוך אותו.",
- "profile": "פרופיל",
- "public": "ציבורי",
- "public-desc": "לוח זה ציבורי. כל מי שמחזיק בקישור יכול לצפות בלוח והוא יופיע בתוצאות מנועי חיפוש כגון גוגל. רק אנשים שנוספו ללוח יכולים לערוך אותו.",
- "quick-access-description": "לחיצה על הכוכב תוסיף קיצור דרך ללוח בשורה זו.",
- "remove-cover": "הסרת כיסוי",
- "remove-from-board": "הסרה מהלוח",
- "remove-label": "הסרת תווית",
- "listDeletePopup-title": "למחוק את הרשימה?",
- "remove-member": "הסרת חבר",
- "remove-member-from-card": "הסרה מהכרטיס",
- "remove-member-pop": "להסיר את __name__ (__username__) מ__boardTitle__? התהליך יגרום להסרת החבר מכל הכרטיסים בלוח זה. תישלח הודעה אל החבר.",
- "removeMemberPopup-title": "להסיר חבר?",
- "rename": "שינוי שם",
- "rename-board": "שינוי שם ללוח",
- "restore": "שחזור",
- "save": "שמירה",
- "search": "חיפוש",
- "rules": "כללים",
- "search-cards": "חיפוש אחר כותרות ותיאורים של כרטיסים בלוח זה",
- "search-example": "טקסט לחיפוש ?",
- "select-color": "בחירת צבע",
- "set-wip-limit-value": "הגדרת מגבלה למספר המרבי של משימות ברשימה זו",
- "setWipLimitPopup-title": "הגדרת מגבלת „בעבודה”",
- "shortcut-assign-self": "להקצות אותי לכרטיס הנוכחי",
- "shortcut-autocomplete-emoji": "השלמה אוטומטית לאימוג׳י",
- "shortcut-autocomplete-members": "השלמה אוטומטית של חברים",
- "shortcut-clear-filters": "ביטול כל המסננים",
- "shortcut-close-dialog": "סגירת החלון",
- "shortcut-filter-my-cards": "סינון הכרטיסים שלי",
- "shortcut-show-shortcuts": "העלאת רשימת קיצורים זו",
- "shortcut-toggle-filterbar": "הצגה או הסתרה של סרגל צד הסינון",
- "shortcut-toggle-sidebar": "הצגה או הסתרה של סרגל צד הלוח",
- "show-cards-minimum-count": "הצגת ספירת כרטיסים אם רשימה מכילה למעלה מ־",
- "sidebar-open": "פתיחת סרגל צד",
- "sidebar-close": "סגירת סרגל צד",
- "signupPopup-title": "יצירת חשבון",
- "star-board-title": "ניתן ללחוץ כדי לסמן בכוכב. הלוח יופיע בראש רשימת הלוחות שלך.",
- "starred-boards": "לוחות שסומנו בכוכב",
- "starred-boards-description": "לוחות מסומנים בכוכב מופיעים בראש רשימת הלוחות שלך.",
- "subscribe": "הרשמה",
- "team": "צוות",
- "this-board": "לוח זה",
- "this-card": "כרטיס זה",
- "spent-time-hours": "זמן שהושקע (שעות)",
- "overtime-hours": "שעות נוספות",
- "overtime": "שעות נוספות",
- "has-overtime-cards": "יש כרטיסי שעות נוספות",
- "has-spenttime-cards": "יש כרטיסי זמן שהושקע",
- "time": "זמן",
- "title": "כותרת",
- "tracking": "מעקב",
- "tracking-info": "על כל שינוי בכרטיסים בהם הייתה לך מעורבות ברמת היצירה או כחברות תגיע אליך הודעה.",
- "type": "סוג",
- "unassign-member": "ביטול הקצאת חבר",
- "unsaved-description": "יש לך תיאור לא שמור.",
- "unwatch": "ביטול מעקב",
- "upload": "העלאה",
- "upload-avatar": "העלאת תמונת משתמש",
- "uploaded-avatar": "הועלתה תמונה משתמש",
- "username": "שם משתמש",
- "view-it": "הצגה",
- "warn-list-archived": "אזהרה: כרטיס זה הוא חלק מרשימה שנמצאת בארכיון",
- "watch": "לעקוב",
- "watching": "במעקב",
- "watching-info": "מעתה יגיעו אליך דיווחים על כל שינוי בלוח זה",
- "welcome-board": "לוח קבלת פנים",
- "welcome-swimlane": "ציון דרך 1",
- "welcome-list1": "יסודות",
- "welcome-list2": "מתקדם",
- "card-templates-swimlane": "תבניות כרטיסים",
- "list-templates-swimlane": "תבניות רשימות",
- "board-templates-swimlane": "תבניות לוחות",
- "what-to-do": "מה ברצונך לעשות?",
- "wipLimitErrorPopup-title": "מגבלת „בעבודה” שגויה",
- "wipLimitErrorPopup-dialog-pt1": "מספר המשימות ברשימה זו גדולה ממגבלת הפריטים „בעבודה” שהגדרת.",
- "wipLimitErrorPopup-dialog-pt2": "נא להוציא חלק מהמשימות מרשימה זו או להגדיר מגבלת „בעבודה” גדולה יותר.",
- "admin-panel": "חלונית ניהול המערכת",
- "settings": "הגדרות",
- "people": "אנשים",
- "registration": "הרשמה",
- "disable-self-registration": "השבתת הרשמה עצמית",
- "invite": "הזמנה",
- "invite-people": "הזמנת אנשים",
- "to-boards": "ללוח/ות",
- "email-addresses": "כתובות דוא״ל",
- "smtp-host-description": "כתובת שרת ה־SMTP שמטפל בהודעות הדוא״ל שלך.",
- "smtp-port-description": "מספר הפתחה בה שרת ה־SMTP שלך משתמש לדוא״ל יוצא.",
- "smtp-tls-description": "הפעל תמיכה ב־TLS עבור שרת ה־SMTP",
- "smtp-host": "כתובת ה־SMTP",
- "smtp-port": "פתחת ה־SMTP",
- "smtp-username": "שם משתמש",
- "smtp-password": "ססמה",
- "smtp-tls": "תמיכה ב־TLS",
- "send-from": "מאת",
- "send-smtp-test": "שליחת דוא״ל בדיקה לעצמך",
- "invitation-code": "קוד הזמנה",
- "email-invite-register-subject": "נשלחה אליך הזמנה מאת __inviter__",
- "email-invite-register-text": "לכבוד __user__,\n\nהוזמנת על ידי __inviter__ לקחת חלק בלוח קנבאן.\n\nנא ללחוץ על הקישור הבא:\n__url__\n\nקוד ההזמנה הוא: __icode__\n\nתודה.",
- "email-smtp-test-subject": "דוא״ל לבדיקת SMTP",
- "email-smtp-test-text": "שלחת הודעת דוא״ל בהצלחה",
- "error-invitation-code-not-exist": "קוד ההזמנה אינו קיים",
- "error-notAuthorized": "אין לך הרשאה לצפות בעמוד זה.",
- "outgoing-webhooks": "קרסי רשת יוצאים",
- "outgoingWebhooksPopup-title": "קרסי רשת יוצאים",
- "boardCardTitlePopup-title": "מסנן כותרת כרטיס",
- "new-outgoing-webhook": "קרסי רשת יוצאים חדשים",
- "no-name": "(לא ידוע)",
- "Node_version": "גרסת Node",
- "OS_Arch": "ארכיטקטורת מערכת הפעלה",
- "OS_Cpus": "מספר מעבדים",
- "OS_Freemem": "זיכרון (RAM) פנוי",
- "OS_Loadavg": "עומס ממוצע",
- "OS_Platform": "מערכת הפעלה",
- "OS_Release": "גרסת מערכת הפעלה",
- "OS_Totalmem": "סך כל הזיכרון (RAM)",
- "OS_Type": "סוג מערכת ההפעלה",
- "OS_Uptime": "זמן שעבר מאז האתחול האחרון",
- "days": "ימים",
- "hours": "שעות",
- "minutes": "דקות",
- "seconds": "שניות",
- "show-field-on-card": "הצגת שדה זה בכרטיס",
- "automatically-field-on-card": "הוספת שדה לכל הכרטיסים",
- "showLabel-field-on-card": "הצגת תווית של השדה בכרטיס מוקטן",
- "yes": "כן",
- "no": "לא",
- "accounts": "חשבונות",
- "accounts-allowEmailChange": "לאפשר שינוי דוא״ל",
- "accounts-allowUserNameChange": "לאפשר שינוי שם משתמש",
- "createdAt": "נוצר ב",
- "verified": "עבר אימות",
- "active": "פעיל",
- "card-received": "התקבל",
- "card-received-on": "התקבל במועד",
- "card-end": "סיום",
- "card-end-on": "מועד הסיום",
- "editCardReceivedDatePopup-title": "החלפת מועד הקבלה",
- "editCardEndDatePopup-title": "החלפת מועד הסיום",
- "setCardColorPopup-title": "הגדרת צבע",
- "setCardActionsColorPopup-title": "בחירת צבע",
- "setSwimlaneColorPopup-title": "בחירת צבע",
- "setListColorPopup-title": "בחירת צבע",
- "assigned-by": "הוקצה על ידי",
- "requested-by": "התבקש על ידי",
- "board-delete-notice": "מחיקה היא לצמיתות. כל הרשימות, הכרטיבים והפעולות שקשורים בלוח הזה ילכו לאיבוד.",
- "delete-board-confirm-popup": "כל הרשימות, הכרטיסים, התווית והפעולות יימחקו ולא תהיה לך דרך לשחזר את תכני הלוח. אין אפשרות לבטל.",
- "boardDeletePopup-title": "למחוק את הלוח?",
- "delete-board": "מחיקת לוח",
- "default-subtasks-board": "תת־משימות עבור הלוח __board__",
- "default": "בררת מחדל",
- "queue": "תור",
- "subtask-settings": "הגדרות תתי משימות",
- "boardSubtaskSettingsPopup-title": "הגדרות תת־משימות בלוח",
- "show-subtasks-field": "לכרטיסים יכולות להיות תת־משימות",
- "deposit-subtasks-board": "הפקדת תת־משימות ללוח הזה:",
- "deposit-subtasks-list": "רשימות נחיתה עבור תת־משימות שהופקדו כאן:",
- "show-parent-in-minicard": "הצגת ההורה במיני כרטיס:",
- "prefix-with-full-path": "קידומת עם נתיב מלא",
- "prefix-with-parent": "קידומת עם הורה",
- "subtext-with-full-path": "טקסט סמוי עם נתיב מלא",
- "subtext-with-parent": "טקסט סמוי עם הורה",
- "change-card-parent": "החלפת הורה הכרטיס",
- "parent-card": "כרטיס הורה",
- "source-board": "לוח מקור",
- "no-parent": "לא להציג את ההורה",
- "activity-added-label": "התווית ‚%s’ נוספה אל %s",
- "activity-removed-label": "התווית ‚%s’ הוסרה מ־%s",
- "activity-delete-attach": "הקובץ המצורף נמחק מ־%s",
- "activity-added-label-card": "התווית ‚%s’ נוספה",
- "activity-removed-label-card": "התווית ‚%s’ הוסרה",
- "activity-delete-attach-card": "קובץ מצורף נמחק",
- "activity-set-customfield": "הגדרת שדה בהתאמה אישית ‚%s’ לערך ‚%s’ תחת %s",
- "activity-unset-customfield": "ביטול הגדרת שדה בהתאמה אישית ‚%s’ תחת %s",
- "r-rule": "כלל",
- "r-add-trigger": "הוספת הקפצה",
- "r-add-action": "הוספת פעולה",
- "r-board-rules": "כללי הלוח",
- "r-add-rule": "הוספת כלל",
- "r-view-rule": "הצגת כלל",
- "r-delete-rule": "מחיקת כל",
- "r-new-rule-name": "שמו של הכלל החדש",
- "r-no-rules": "אין כללים",
- "r-when-a-card": "כאשר כרטיס",
- "r-is": "הוא",
- "r-is-moved": "מועבר",
- "r-added-to": "נוסף אל",
- "r-removed-from": "מוסר מ־",
- "r-the-board": "הלוח",
- "r-list": "רשימה",
- "set-filter": "הגדרת מסנן",
- "r-moved-to": "מועבר אל",
- "r-moved-from": "מועבר מ־",
- "r-archived": "הועבר לארכיון",
- "r-unarchived": "הוחזר מהארכיון",
- "r-a-card": "כרטיס",
- "r-when-a-label-is": "כאשר תווית",
- "r-when-the-label": "כאשר התווית היא",
- "r-list-name": "שם הרשימה",
- "r-when-a-member": "כאשר חבר הוא",
- "r-when-the-member": "כאשר חבר",
- "r-name": "שם",
- "r-when-a-attach": "כאשר קובץ מצורף",
- "r-when-a-checklist": "כאשר רשימת משימות",
- "r-when-the-checklist": "כאשר רשימת המשימות",
- "r-completed": "הושלמה",
- "r-made-incomplete": "סומנה כבלתי מושלמת",
- "r-when-a-item": "כאשר פריט ברשימת משימות",
- "r-when-the-item": "כאשר הפריט ברשימת משימות",
- "r-checked": "מסומן",
- "r-unchecked": "לא מסומן",
- "r-move-card-to": "העברת הכרטיס אל",
- "r-top-of": "ראש",
- "r-bottom-of": "תחתית",
- "r-its-list": "הרשימה שלו",
- "r-archive": "העברה לארכיון",
- "r-unarchive": "החזרה מהארכיון",
- "r-card": "כרטיס",
- "r-add": "הוספה",
- "r-remove": "הסרה",
- "r-label": "תווית",
- "r-member": "חבר",
- "r-remove-all": "הסרת כל החברים מהכרטיס",
- "r-set-color": "הגדרת צבע לכדי",
- "r-checklist": "רשימת משימות",
- "r-check-all": "לסמן הכול",
- "r-uncheck-all": "לבטל את הסימון",
- "r-items-check": "פריטים ברשימת משימות",
- "r-check": "סימון",
- "r-uncheck": "ביטול סימון",
- "r-item": "פריט",
- "r-of-checklist": "של רשימת משימות",
- "r-send-email": "שליחת דוא״ל",
- "r-to": "אל",
- "r-subject": "נושא",
- "r-rule-details": "פרטי הכלל",
- "r-d-move-to-top-gen": "העברת כרטיס לראש הרשימה שלו",
- "r-d-move-to-top-spec": "העברת כרטיס לראש רשימה",
- "r-d-move-to-bottom-gen": "העברת כרטיס לתחתית הרשימה שלו",
- "r-d-move-to-bottom-spec": "העברת כרטיס לתחתית רשימה",
- "r-d-send-email": "שליחת דוא״ל",
- "r-d-send-email-to": "אל",
- "r-d-send-email-subject": "נושא",
- "r-d-send-email-message": "הודעה",
- "r-d-archive": "העברת כרטיס לארכיון",
- "r-d-unarchive": "החזרת כרטיס מהארכיון",
- "r-d-add-label": "הוספת תווית",
- "r-d-remove-label": "הסרת תווית",
- "r-create-card": "יצירת כרטיס חדש",
- "r-in-list": "ברשימה",
- "r-in-swimlane": "במסלול",
- "r-d-add-member": "הוספת חבר",
- "r-d-remove-member": "הסרת חבר",
- "r-d-remove-all-member": "הסרת כל החברים",
- "r-d-check-all": "סימון כל הפריטים ברשימה",
- "r-d-uncheck-all": "ביטול סימון הפריטים ברשימה",
- "r-d-check-one": "סימון פריט",
- "r-d-uncheck-one": "ביטול סימון פריט",
- "r-d-check-of-list": "של רשימת משימות",
- "r-d-add-checklist": "הוספת רשימת משימות",
- "r-d-remove-checklist": "הסרת רשימת משימות",
- "r-by": "על ידי",
- "r-add-checklist": "הוספת רשימת משימות",
- "r-with-items": "עם פריטים",
- "r-items-list": "פריט1,פריט2,פריט3",
- "r-add-swimlane": "הוספת מסלול",
- "r-swimlane-name": "שם המסלול",
- "r-board-note": "לתשומת לבך: ניתן להשאיר את השדה ריק כדי ללכוד כל ערך אפשרי.",
- "r-checklist-note": "לתשומת לבך: את פריטי רשימת הביצוע יש לכתוב בתצורת רשימה של ערכים המופרדים בפסיקים.",
- "r-when-a-card-is-moved": "כאשר כרטיס מועבר לרשימה אחרת",
- "r-set": "הגדרה",
- "r-update": "עדכון",
- "r-datefield": "שדה תאריך",
- "r-df-start-at": "התחלה",
- "r-df-due-at": "תפוגה",
- "r-df-end-at": "סיום",
- "r-df-received-at": "התקבל",
- "r-to-current-datetime": "לתאריך/שעה הנוכחיים",
- "r-remove-value-from": "הסרת ערך מתוך",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "שיטת אימות",
- "authentication-type": "סוג אימות",
- "custom-product-name": "שם מותאם אישית למוצר",
- "layout": "פריסה",
- "hide-logo": "הסתרת לוגו",
- "add-custom-html-after-body-start": "הוספת קוד HTML מותאם אישית לאחר ה־<body> הפותח.",
- "add-custom-html-before-body-end": "הוספת קוד HTML מותאם אישית לפני ה־</body> הסוגר.",
- "error-undefined": "מהו השתבש",
- "error-ldap-login": "אירעה שגיאה בעת ניסיון הכניסה",
- "display-authentication-method": "הצגת שיטת אימות",
- "default-authentication-method": "שיטת אימות כבררת מחדל",
- "duplicate-board": "שכפול לוח",
- "people-number": "מספר האנשים הוא:",
- "swimlaneDeletePopup-title": "למחוק מסלול?",
- "swimlane-delete-pop": "כל הפעולות יוסרו מהזנת הפעילות ולא תהיה לך אפשרות לשחזר את המסלול. אי אפשר לחזור אחורה.",
- "restore-all": "לשחזר הכול",
- "delete-all": "למחוק הכול",
- "loading": "העמוד בטעינה, אנא המתינו.",
- "previous_as": "הזמן הקודם היה",
- "act-a-dueAt": "זמן יעד שונה ל: \n__timeValue__\nבכרטיס: __card__\n זמן היעד הקודם היה __timeOldValue__",
- "act-a-endAt": "מועד הסיום השתנה לכדי __timeValue__ לעומת (__timeOldValue__)",
- "act-a-startAt": "מועד ההתחלה השתנה לכדי __timeValue__ לעומת (__timeOldValue__)",
- "act-a-receivedAt": "מועד הקבלה השתנה לכדי __timeValue__ לעומת (__timeOldValue__)",
- "a-dueAt": "מועד היעד השתנה לכדי",
- "a-endAt": "מועד הסיום השתנה לכדי",
- "a-startAt": "מועד ההתחלה השתנה לכדי",
- "a-receivedAt": "מועד הקבלה השתנה לכדי",
- "almostdue": "מועד היעד הנוכחי %s מתקרב",
- "pastdue": "מועד היעד הנוכחי %s חלף",
- "duenow": "מועד היעד הנוכחי %s הוא היום",
- "act-withDue": "__card__ תזכורות למועדי יעד [__board__]",
- "act-almostdue": "הזכירה שמועד היעד הנוכחי (__timeValue__) של __card__ מתקרב",
- "act-pastdue": "הזכירה שמועד היעד הנוכחי (__timeValue__) של __card__ חלף",
- "act-duenow": "הזכירה שמועד היעד הנוכחי (__timeValue__) של __card__ הוא עכשיו",
- "act-atUserComment": "אוזכרת תחת [__board__] ‏__card__",
- "delete-user-confirm-popup": "למחוק את החשבון הזה? אי אפשר לבטל.",
- "accounts-allowUserDelete": "לאפשר למשתמשים למחוק את החשבונות של עצמם"
-} \ No newline at end of file
+ "accept": "אישור",
+ "act-activity-notify": "הודעת פעילות",
+ "act-addAttachment": "הקובץ __attachment__ צורף אל הכרטיס __card__ ברשימה __list__ למסלול __swimlane__ שבלוח __board__",
+ "act-deleteAttachment": "הקובץ __attachment__ נמחק מהכרטיס __card__ ברשימה __list__ מהמסלול __swimlane__ שבלוח __board__",
+ "act-addSubtask": "תת־משימה __attachment__ נוספה אל הכרטיס __card__ ברשימה __list__ למסלול __swimlane__ שבלוח __board__",
+ "act-addLabel": "התווית __label__ נוספה לכרטיס __card__ ברשימה __list__ למסלול __swimlane__ שבלוח __board__",
+ "act-addedLabel": "התווית __label__ נוספה לכרטיס __card__ ברשימה __list__ למסלול __swimlane__ שבלוח __board__",
+ "act-removeLabel": "התווית __label__ הוסרה מהכרטיס __card__ ברשימה __list__ מהמסלול __swimlane__ שבלוח __board__",
+ "act-removedLabel": "התווית __label__ הוסרה מהכרטיס __card__ ברשימה __list__ מהמסלול __swimlane__ שבלוח __board__",
+ "act-addChecklist": "נוספה רשימת מטלות __checklist__ לכרטיס __card__ ברשימה __list__ שבמסלול __swimlane__ בלוח __board__",
+ "act-addChecklistItem": "נוסף פריט סימון __checklistItem__ לרשימת המטלות __checklist__ לכרטיס __card__ ברשימה __list__ במסלול __swimlane__ בלוח __board__",
+ "act-removeChecklist": "הוסרה רשימת מטלות __checklist__ מהכרטיס __card__ ברשימה __list__ שבמסלול __swimlane__ בלוח __board__",
+ "act-removeChecklistItem": "פריט הסימון __checklistItem__ הוסר מרשימת המטלות __checkList__ בכרטיס __card__ ברשימה __list__ מהמסלול __swimlane__ בלוח __board__",
+ "act-checkedItem": "הפריט __checklistItem__ ששייך לרשימת המשימות __checklist__ בכרטיס __card__ שברשימת __list__ במסלול __swimlane__ שבלוח __board__ סומן",
+ "act-uncheckedItem": "בוטל הסימון __checklistItem__ ברשימת המטלות __checklist__ בכרטיס __card__ ברשימה __list__ במסלול __swimlane__ בלוח __board__",
+ "act-completeChecklist": "רשימת המטלות __checklist__ בכרטיס __card__ שברשימה __list__ תחת המסלול __swimlane__ בלוח __board__ הושלמה",
+ "act-uncompleteChecklist": "ההשלמה של רשימת המטלות __checklist__ בכרטיס __card__ שברשימה __list__ תחת המסלול __swimlane__ בלוח __board__ בוטלה",
+ "act-addComment": "התקבלה תגובה על הכרטיס __card__:‏ __comment__ ברשימה __list__ במסלול __swimlane__ בלוח __board__",
+ "act-editComment": "התגובה בכרטיס __card__: __comment__ שברשימה __list__ שבמסלול __swimlane__ שבלוח __board__ נערכה",
+ "act-deleteComment": "התגובה בכרטיס __card__: __comment__ שברשימה __list__ שבמסלול __swimlane__ שבלוח __board__ נמחקה",
+ "act-createBoard": "הלוח __board__ נוצר",
+ "act-createSwimlane": "נוצר מסלול __swimlane__ בלוח __board__",
+ "act-createCard": "הכרטיס __card__ נוצר ברשימה __list__ במסלול __swimlane__ שבלוח __board__",
+ "act-createCustomField": "השדה המותאם אישית __customField__ שבלוח __board__ נוצר",
+ "act-deleteCustomField": "השדה המותאם אישית __customField__ שבלוח __board__ נמחק",
+ "act-setCustomField": "השדה המותאם אישית _customField__: __customFieldValue__ בכרטיס __card__ ברשימה __list__  במסלול __swimlane__ שבלוח __board__ נערך",
+ "act-createList": "הרשימה __list__ נוספה ללוח __board__",
+ "act-addBoardMember": "החבר __member__ נוסף אל __board__",
+ "act-archivedBoard": "הלוח __board__ הועבר לארכיון",
+ "act-archivedCard": "הכרטיס __card__ ברשימה __list__ במסלול __swimlane__ בלוח __board__ הועבר לארכיון",
+ "act-archivedList": "הרשימה __list__ במסלול __swimlane__ בלוח __board__ הועברה לארכיון",
+ "act-archivedSwimlane": "המסלול __swimlane__ בלוח __board__ הועבר לארכיון",
+ "act-importBoard": "הייבוא של הלוח __board__ הושלם",
+ "act-importCard": "הייבוא של הכרטיס __card__ לרשימה __list__ למסלול __swimlane__ ללוח __board__ הושלם",
+ "act-importList": "הרשימה __list__ ייובאה למסלול __swimlane__ שבלוח __board__",
+ "act-joinMember": "החבר __member__ נוסף לכרטיס __card__ לרשימה __list__ במסלול __swimlane__ בלוח __board__",
+ "act-moveCard": "הועבר הכרטיס __card__ בלוח __board__ מהרשימה __oldList__ במסלול __oldSwimlane__ לרשימה __list__ במסלול __swimlane__.",
+ "act-moveCardToOtherBoard": "הכרטיס __card__ הועבר מהרשימה __oldList__ במסלול __oldSwimlane__ בלוח __oldBoard__ לרשימה __list__ במסלול __swimlane__ בלוח __board__",
+ "act-removeBoardMember": "החבר __member__ הוסר מהלוח __board__",
+ "act-restoredCard": "הכרטיס __card__ שוחזר לרשימה __list__ למסלול __swimlane__ ללוח __board__",
+ "act-unjoinMember": "החבר __member__ הוסר מהכרטיס __card__ ברשימה __list__ במסלול __swimlane__ בלוח __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "פעולות",
+ "activities": "פעילויות",
+ "activity": "פעילות",
+ "activity-added": "%s נוסף ל%s",
+ "activity-archived": "%s הועבר לארכיון",
+ "activity-attached": "%s צורף ל%s",
+ "activity-created": "%s נוצר",
+ "activity-customfield-created": "נוצר שדה בהתאמה אישית %s",
+ "activity-excluded": "%s לא נכלל ב%s",
+ "activity-imported": "%s ייובא מ%s אל %s",
+ "activity-imported-board": "%s יובא מ%s",
+ "activity-joined": "הצטרפות אל %s",
+ "activity-moved": "%s עבר מ%s ל%s",
+ "activity-on": "ב%s",
+ "activity-removed": "%s הוסר מ%s",
+ "activity-sent": "%s נשלח ל%s",
+ "activity-unjoined": "בוטל צירוף אל %s",
+ "activity-subtask-added": "נוספה תת־משימה אל %s",
+ "activity-checked-item": "%s סומן ברשימת המשימות %s מתוך %s",
+ "activity-unchecked-item": "בוטל הסימון של %s ברשימת המשימות %s מתוך %s",
+ "activity-checklist-added": "נוספה רשימת משימות אל %s",
+ "activity-checklist-removed": "הוסרה רשימת משימות מ־%s",
+ "activity-checklist-completed": "רשימת המטלות __checklist__ בכרטיס __card__ שברשימה __list__ תחת המסלול __swimlane__ בלוח __board__ הושלמה",
+ "activity-checklist-uncompleted": "רשימת המשימות %s מתוך %s סומנה כבלתי מושלמת",
+ "activity-checklist-item-added": "נוסף פריט רשימת משימות אל ‚%s‘ תחת %s",
+ "activity-checklist-item-removed": "הוסר פריט מרשימת המשימות ‚%s’ תחת %s",
+ "add": "הוספה",
+ "activity-checked-item-card": "סומן %s ברשימת המשימות %s",
+ "activity-unchecked-item-card": "הסימון של %s בוטל ברשימת המשימות %s",
+ "activity-checklist-completed-card": "רשימת המטלות __checklist__ בכרטיס __card__ שברשימה __list__ תחת המסלול __swimlane__ בלוח __board__ הושלמה",
+ "activity-checklist-uncompleted-card": "רשימת המשימות %s סומנה כבלתי מושלמת",
+ "add-attachment": "הוספת קובץ מצורף",
+ "add-board": "הוספת לוח",
+ "add-card": "הוספת כרטיס",
+ "add-swimlane": "הוספת מסלול",
+ "add-subtask": "הוסף תת משימה",
+ "add-checklist": "הוספת רשימת מטלות",
+ "add-checklist-item": "הוספת פריט לרשימת משימות",
+ "add-cover": "הוספת כיסוי",
+ "add-label": "הוספת תווית",
+ "add-list": "הוספת רשימה",
+ "add-members": "הוספת חברים",
+ "added": "התווסף",
+ "addMemberPopup-title": "חברים",
+ "admin": "מנהל",
+ "admin-desc": "יש הרשאות לצפייה ולעריכת כרטיסים, להסרת חברים ולשינוי הגדרות לוח.",
+ "admin-announcement": "הכרזה",
+ "admin-announcement-active": "הכרזת מערכת פעילה",
+ "admin-announcement-title": "הכרזה ממנהל המערכת",
+ "all-boards": "כל הלוחות",
+ "and-n-other-card": "וכרטיס נוסף",
+ "and-n-other-card_plural": "ו־__count__ כרטיסים נוספים",
+ "apply": "החלה",
+ "app-is-offline": "בטעינה, נא להמתין. רענון הדף תוביל לאבדן מידע. אם הטעינה אורכת זמן רב מדי, מוטב לבדוק אם השרת מקוון.",
+ "archive": "העברה לארכיון",
+ "archive-all": "אחסן הכל בארכיון",
+ "archive-board": "העברת הלוח לארכיון",
+ "archive-card": "העברת הכרטיס לארכיון",
+ "archive-list": "העברת הרשימה לארכיון",
+ "archive-swimlane": "העברת מסלול לארכיון",
+ "archive-selection": "העברת הבחירה לארכיון",
+ "archiveBoardPopup-title": "להעביר לוח זה לארכיון?",
+ "archived-items": "להעביר לארכיון",
+ "archived-boards": "לוחות שנשמרו בארכיון",
+ "restore-board": "שחזור לוח",
+ "no-archived-boards": "לא נשמרו לוחות בארכיון.",
+ "archives": "להעביר לארכיון",
+ "template": "תבנית",
+ "templates": "תבניות",
+ "assign-member": "הקצאת חבר",
+ "attached": "מצורף",
+ "attachment": "קובץ מצורף",
+ "attachment-delete-pop": "מחיקת קובץ מצורף הנה סופית. אין דרך חזרה.",
+ "attachmentDeletePopup-title": "למחוק קובץ מצורף?",
+ "attachments": "קבצים מצורפים",
+ "auto-watch": "הוספת לוחות למעקב כשהם נוצרים",
+ "avatar-too-big": "תמונת המשתמש גדולה מדי (70 ק״ב לכל היותר)",
+ "back": "חזרה",
+ "board-change-color": "שינוי צבע",
+ "board-nb-stars": "%s כוכבים",
+ "board-not-found": "לוח לא נמצא",
+ "board-private-info": "לוח זה יהיה <strong>פרטי</strong>.",
+ "board-public-info": "לוח זה יהיה <strong>ציבורי</strong>.",
+ "boardChangeColorPopup-title": "שינוי רקע ללוח",
+ "boardChangeTitlePopup-title": "שינוי שם הלוח",
+ "boardChangeVisibilityPopup-title": "שינוי מצב הצגה",
+ "boardChangeWatchPopup-title": "שינוי הגדרת המעקב",
+ "boardMenuPopup-title": "הגדרות לוח",
+ "boards": "לוחות",
+ "board-view": "תצוגת לוח",
+ "board-view-cal": "לוח שנה",
+ "board-view-swimlanes": "מסלולים",
+ "board-view-lists": "רשימות",
+ "bucket-example": "כמו למשל „רשימת המשימות“",
+ "cancel": "ביטול",
+ "card-archived": "כרטיס זה שמור בארכיון.",
+ "board-archived": "הלוח עבר לארכיון",
+ "card-comments-title": "לכרטיס זה %s תגובות.",
+ "card-delete-notice": "מחיקה היא סופית. כל הפעולות המשויכות לכרטיס זה תלכנה לאיוד.",
+ "card-delete-pop": "כל הפעולות יוסרו מלוח הפעילות ולא תהיה אפשרות לפתוח מחדש את הכרטיס. אין דרך חזרה.",
+ "card-delete-suggest-archive": "על מנת להסיר כרטיסים מהלוח מבלי לאבד את היסטוריית הפעילות שלהם, ניתן לשמור אותם בארכיון.",
+ "card-due": "תאריך יעד",
+ "card-due-on": "תאריך יעד",
+ "card-spent": "זמן שהושקע",
+ "card-edit-attachments": "עריכת קבצים מצורפים",
+ "card-edit-custom-fields": "עריכת שדות בהתאמה אישית",
+ "card-edit-labels": "עריכת תוויות",
+ "card-edit-members": "עריכת חברים",
+ "card-labels-title": "שינוי תוויות לכרטיס.",
+ "card-members-title": "הוספה או הסרה של חברי הלוח מהכרטיס.",
+ "card-start": "התחלה",
+ "card-start-on": "מתחיל ב־",
+ "cardAttachmentsPopup-title": "לצרף מ־",
+ "cardCustomField-datePopup-title": "החלפת תאריך",
+ "cardCustomFieldsPopup-title": "עריכת שדות בהתאמה אישית",
+ "cardDeletePopup-title": "למחוק כרטיס?",
+ "cardDetailsActionsPopup-title": "פעולות על הכרטיס",
+ "cardLabelsPopup-title": "תוויות",
+ "cardMembersPopup-title": "חברים",
+ "cardMorePopup-title": "עוד",
+ "cardTemplatePopup-title": "יצירת תבנית",
+ "cards": "כרטיסים",
+ "cards-count": "כרטיסים",
+ "casSignIn": "כניסה עם CAS",
+ "cardType-card": "כרטיס",
+ "cardType-linkedCard": "כרטיס מקושר",
+ "cardType-linkedBoard": "לוח מקושר",
+ "change": "שינוי",
+ "change-avatar": "החלפת תמונת משתמש",
+ "change-password": "החלפת ססמה",
+ "change-permissions": "שינוי הרשאות",
+ "change-settings": "שינוי הגדרות",
+ "changeAvatarPopup-title": "שינוי תמונת משתמש",
+ "changeLanguagePopup-title": "החלפת שפה",
+ "changePasswordPopup-title": "החלפת ססמה",
+ "changePermissionsPopup-title": "שינוי הרשאות",
+ "changeSettingsPopup-title": "שינוי הגדרות",
+ "subtasks": "תת משימות",
+ "checklists": "רשימות",
+ "click-to-star": "יש ללחוץ להוספת הלוח למועדפים.",
+ "click-to-unstar": "יש ללחוץ להסרת הלוח מהמועדפים.",
+ "clipboard": "לוח גזירים או גרירה ושחרור",
+ "close": "סגירה",
+ "close-board": "סגירת לוח",
+ "close-board-pop": "ניתן לשחזר את הלוח בלחיצה על כפתור „ארכיונים“ מהכותרת העליונה.",
+ "color-black": "שחור",
+ "color-blue": "כחול",
+ "color-crimson": "שני",
+ "color-darkgreen": "ירוק כהה",
+ "color-gold": "זהב",
+ "color-gray": "אפור",
+ "color-green": "ירוק",
+ "color-indigo": "אינדיגו",
+ "color-lime": "ליים",
+ "color-magenta": "ארגמן",
+ "color-mistyrose": "ורד",
+ "color-navy": "כחול כהה",
+ "color-orange": "כתום",
+ "color-paleturquoise": "טורקיז חיוור",
+ "color-peachpuff": "נשיפת אפרסק",
+ "color-pink": "ורוד",
+ "color-plum": "שזיף",
+ "color-purple": "סגול",
+ "color-red": "אדום",
+ "color-saddlebrown": "חום אוכף",
+ "color-silver": "כסף",
+ "color-sky": "תכלת",
+ "color-slateblue": "צפחה כחולה",
+ "color-white": "לבן",
+ "color-yellow": "צהוב",
+ "unset-color": "בטל הגדרה",
+ "comment": "לפרסם",
+ "comment-placeholder": "כתיבת הערה",
+ "comment-only": "הערה בלבד",
+ "comment-only-desc": "ניתן להגיב על כרטיסים בלבד.",
+ "no-comments": "אין הערות",
+ "no-comments-desc": "לא ניתן לצפות בתגובות ובפעילויות.",
+ "computer": "מחשב",
+ "confirm-subtask-delete-dialog": "למחוק את תת המשימה?",
+ "confirm-checklist-delete-dialog": "למחוק את רשימת המשימות?",
+ "copy-card-link-to-clipboard": "העתקת קישור הכרטיס ללוח הגזירים",
+ "linkCardPopup-title": "קישור כרטיס",
+ "searchElementPopup-title": "חיפוש",
+ "copyCardPopup-title": "העתקת כרטיס",
+ "copyChecklistToManyCardsPopup-title": "העתקת תבנית רשימת מטלות למגוון כרטיסים",
+ "copyChecklistToManyCardsPopup-instructions": "כותרות ותיאורים של כרטיסי יעד בתצורת JSON זו",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"כותרת כרטיס ראשון\", \"description\":\"תיאור כרטיס ראשון\"}, {\"title\":\"כותרת כרטיס שני\",\"description\":\"תיאור כרטיס שני\"},{\"title\":\"כותרת כרטיס אחרון\",\"description\":\"תיאור כרטיס אחרון\"} ]",
+ "create": "יצירה",
+ "createBoardPopup-title": "יצירת לוח",
+ "chooseBoardSourcePopup-title": "יבוא לוח",
+ "createLabelPopup-title": "יצירת תווית",
+ "createCustomField": "יצירת שדה",
+ "createCustomFieldPopup-title": "יצירת שדה",
+ "current": "נוכחי",
+ "custom-field-delete-pop": "אין אפשרות לבטל את הפעולה. הפעולה תסיר את השדה שהותאם אישית מכל הכרטיסים ותשמיד את ההיסטוריה שלו.",
+ "custom-field-checkbox": "תיבת סימון",
+ "custom-field-date": "תאריך",
+ "custom-field-dropdown": "רשימה נגללת",
+ "custom-field-dropdown-none": "(ללא)",
+ "custom-field-dropdown-options": "אפשרויות רשימה",
+ "custom-field-dropdown-options-placeholder": "יש ללחוץ על enter כדי להוסיף עוד אפשרויות",
+ "custom-field-dropdown-unknown": "(לא ידוע)",
+ "custom-field-number": "מספר",
+ "custom-field-text": "טקסט",
+ "custom-fields": "שדות מותאמים אישית",
+ "date": "תאריך",
+ "decline": "סירוב",
+ "default-avatar": "תמונת משתמש כבררת מחדל",
+ "delete": "מחיקה",
+ "deleteCustomFieldPopup-title": "למחוק שדה מותאם אישית?",
+ "deleteLabelPopup-title": "למחוק תווית?",
+ "description": "תיאור",
+ "disambiguateMultiLabelPopup-title": "הבהרת פעולת תווית",
+ "disambiguateMultiMemberPopup-title": "הבהרת פעולת חבר",
+ "discard": "התעלמות",
+ "done": "בוצע",
+ "download": "הורדה",
+ "edit": "עריכה",
+ "edit-avatar": "החלפת תמונת משתמש",
+ "edit-profile": "עריכת פרופיל",
+ "edit-wip-limit": "עריכת מגבלת „בעבודה”",
+ "soft-wip-limit": "מגבלת „בעבודה” רכה",
+ "editCardStartDatePopup-title": "שינוי מועד התחלה",
+ "editCardDueDatePopup-title": "שינוי מועד סיום",
+ "editCustomFieldPopup-title": "עריכת שדה",
+ "editCardSpentTimePopup-title": "שינוי הזמן שהושקע",
+ "editLabelPopup-title": "שינוי תווית",
+ "editNotificationPopup-title": "שינוי דיווח",
+ "editProfilePopup-title": "עריכת פרופיל",
+ "email": "דוא״ל",
+ "email-enrollAccount-subject": "נוצר עבורך חשבון באתר __siteName__",
+ "email-enrollAccount-text": "__user__ שלום,\n\nכדי להתחיל להשתמש בשירות, יש ללחוץ על הקישור המופיע להלן.\n\n__url__\n\nתודה.",
+ "email-fail": "שליחת ההודעה בדוא״ל נכשלה",
+ "email-fail-text": "שגיאה בעת ניסיון לשליחת הודעת דוא״ל",
+ "email-invalid": "כתובת דוא״ל לא חוקית",
+ "email-invite": "הזמנה באמצעות דוא״ל",
+ "email-invite-subject": "נשלחה אליך הזמנה מאת __inviter__",
+ "email-invite-text": "__user__ שלום,\n\nהוזמנת על ידי __inviter__ להצטרף ללוח „__board__“ להמשך שיתוף הפעולה.\n\nנא ללחוץ על הקישור המופיע להלן:\n\n__url__\n\nתודה.",
+ "email-resetPassword-subject": "ניתן לאפס את ססמתך לאתר __siteName__",
+ "email-resetPassword-text": "__user__ שלום,\n\nכדי לאפס את ססמתך, יש ללחוץ על הקישור המופיע להלן.\n\n__url__\n\nתודה.",
+ "email-sent": "הודעת הדוא״ל נשלחה",
+ "email-verifyEmail-subject": "אימות כתובת הדוא״ל שלך באתר __siteName__",
+ "email-verifyEmail-text": "__user__ שלום,\n\nלאימות כתובת הדוא״ל המשויכת לחשבונך, עליך פשוט ללחוץ על הקישור המופיע להלן.\n\n__url__\n\nתודה.",
+ "enable-wip-limit": "הפעלת מגבלת „בעבודה”",
+ "error-board-doesNotExist": "לוח זה אינו קיים",
+ "error-board-notAdmin": "צריכות להיות לך הרשאות ניהול על לוח זה כדי לעשות זאת",
+ "error-board-notAMember": "עליך לקבל חברות בלוח זה כדי לעשות זאת",
+ "error-json-malformed": "הטקסט שלך אינו JSON תקין",
+ "error-json-schema": "נתוני ה־JSON שלך לא כוללים את המידע הנכון בתבנית הנכונה",
+ "error-list-doesNotExist": "רשימה זו לא קיימת",
+ "error-user-doesNotExist": "משתמש זה לא קיים",
+ "error-user-notAllowSelf": "אינך יכול להזמין את עצמך",
+ "error-user-notCreated": "משתמש זה לא נוצר",
+ "error-username-taken": "המשתמש כבר קיים במערכת",
+ "error-email-taken": "כתובת הדוא״ל כבר נמצאת בשימוש",
+ "export-board": "ייצוא לוח",
+ "filter": "מסנן",
+ "filter-cards": "סינון כרטיסים",
+ "filter-clear": "ניקוי המסנן",
+ "filter-no-label": "אין תווית",
+ "filter-no-member": "אין חבר כזה",
+ "filter-no-custom-fields": "אין שדות מותאמים אישית",
+ "filter-on": "המסנן פועל",
+ "filter-on-desc": "מסנן כרטיסים פעיל בלוח זה. יש ללחוץ כאן לעריכת המסנן.",
+ "filter-to-selection": "סינון לבחירה",
+ "advanced-filter-label": "מסנן מתקדם",
+ "advanced-filter-description": "המסנן המתקדם מאפשר לך לכתוב מחרוזת שמכילה את הפעולות הבאות: == != <= >= && || ( ) רווח מכהן כמפריד בין הפעולות. ניתן לסנן את כל השדות המותאמים אישית על ידי הקלדת שמם והערך שלהם. למשל: שדה1 == ערך1. לתשומת לבך: אם שדות או ערכים מכילים רווח, יש לעטוף אותם במירכא מכל צד. למשל: 'שדה 1' == 'ערך 1'. ניתן גם לשלב מגוון תנאים. למשל: F1 == V1 || F1 == V2. על פי רוב כל הפעולות מפוענחות משמאל לימין. ניתן לשנות את הסדר על ידי הצבת סוגריים. למשל: ( F1 == V1 && ( F2 == V2 || F2 == V3. כמו כן, ניתן לחפש בשדה טקסט באופן הבא: F1 == /Tes.*/i",
+ "fullname": "שם מלא",
+ "header-logo-title": "חזרה לדף הלוחות שלך.",
+ "hide-system-messages": "הסתרת הודעות מערכת",
+ "headerBarCreateBoardPopup-title": "יצירת לוח",
+ "home": "בית",
+ "import": "יבוא",
+ "link": "קישור",
+ "import-board": "ייבוא לוח",
+ "import-board-c": "יבוא לוח",
+ "import-board-title-trello": "ייבוא לוח מטרלו",
+ "import-board-title-wekan": "ייבוא לוח מייצוא קודם",
+ "import-sandstorm-backup-warning": "עדיף לא למחוק נתונים שייובאו מייצוא מקורי או מ־Trello בטרם בדיקה האם הגרעין הזה נסגר ונפתח שוב או אם מתקבלת שגיאה על כך שהלוח לא נמצא, משמעות הדבר היא אבדן מידע.",
+ "import-sandstorm-warning": "הלוח שייובא ימחק את כל הנתונים הקיימים בלוח ויחליף אותם בלוח שייובא.",
+ "from-trello": "מ־Trello",
+ "from-wekan": "מייצוא קודם",
+ "import-board-instruction-trello": "בלוח הטרלו שלך, עליך ללחוץ על ‚תפריט‘, ואז על ‚עוד‘, ‚הדפסה וייצוא‘, ‚יצוא JSON‘ ולהעתיק את הטקסט שנוצר.",
+ "import-board-instruction-wekan": "בלוח שלך עליך לגשת אל ‚תפריט’, לאחר מכן ‚ייצוא לוח’ ואז להעתיק את הטקסט מהקובץ שהתקבל.",
+ "import-board-instruction-about-errors": "גם אם התקבלו שגיאות בעת יבוא לוח, ייתכן שהייבוא עבד. כדי לבדוק זאת, יש להיכנס ל„כל הלוחות”.",
+ "import-json-placeholder": "יש להדביק את נתוני ה־JSON התקינים לכאן",
+ "import-map-members": "מיפוי חברים",
+ "import-members-map": "הלוחות המיובאים שלך מכילים חברים. נא למפות את החברים שברצונך לייבא למשתמשים שלך",
+ "import-show-user-mapping": "סקירת מיפוי חברים",
+ "import-user-select": "נא לבחור את המשתמש ב־Wekan אותו ברצונך למפות אל חבר זה",
+ "importMapMembersAddPopup-title": "בחירת משתמש",
+ "info": "גרסה",
+ "initials": "ראשי תיבות",
+ "invalid-date": "תאריך שגוי",
+ "invalid-time": "זמן שגוי",
+ "invalid-user": "משתמש שגוי",
+ "joined": "הצטרף",
+ "just-invited": "הוזמנת ללוח זה",
+ "keyboard-shortcuts": "קיצורי מקלדת",
+ "label-create": "יצירת תווית",
+ "label-default": "תווית בצבע %s (בררת מחדל)",
+ "label-delete-pop": "אין דרך חזרה. התווית תוסר מכל הכרטיסים וההיסטוריה תימחק.",
+ "labels": "תוויות",
+ "language": "שפה",
+ "last-admin-desc": "אין אפשרות לשנות תפקידים כיוון שחייב להיות מנהל אחד לפחות.",
+ "leave-board": "עזיבת הלוח",
+ "leave-board-pop": "לעזוב את __boardTitle__? שמך יוסר מכל הכרטיסים שבלוח זה.",
+ "leaveBoardPopup-title": "לעזוב לוח ?",
+ "link-card": "קישור לכרטיס זה",
+ "list-archive-cards": "העברת כל הכרטיסים שברשימה זו לארכיון",
+ "list-archive-cards-pop": "כל הכרטיסים מרשימה זו יוסרו מהלוח. לצפייה בכרטיסים השמורים בארכיון ולהחזירם ללוח, ניתן ללחוץ על „תפריט” > „פריטים בארכיון”.",
+ "list-move-cards": "העברת כל הכרטיסים שברשימה זו",
+ "list-select-cards": "בחירת כל הכרטיסים שברשימה זו",
+ "set-color-list": "הגדרת צבע",
+ "listActionPopup-title": "פעולות רשימה",
+ "swimlaneActionPopup-title": "פעולות על מסלול",
+ "swimlaneAddPopup-title": "הוספת מסלול מתחת",
+ "listImportCardPopup-title": "יבוא כרטיס מ־Trello",
+ "listMorePopup-title": "עוד",
+ "link-list": "קישור לרשימה זו",
+ "list-delete-pop": "כל הפעולות תוסרנה מרצף הפעילות ולא תהיה לך אפשרות לשחזר את הרשימה. אין ביטול.",
+ "list-delete-suggest-archive": "ניתן לשמור רשימה בארכיון כדי להסיר אותה מהלוח ולשמור על היסטוריית הפעילות.",
+ "lists": "רשימות",
+ "swimlanes": "מסלולים",
+ "log-out": "יציאה",
+ "log-in": "כניסה",
+ "loginPopup-title": "כניסה",
+ "memberMenuPopup-title": "הגדרות חברות",
+ "members": "חברים",
+ "menu": "תפריט",
+ "move-selection": "העברת הבחירה",
+ "moveCardPopup-title": "העברת כרטיס",
+ "moveCardToBottom-title": "העברה לתחתית הרשימה",
+ "moveCardToTop-title": "העברה לראש הרשימה",
+ "moveSelectionPopup-title": "העברת בחירה",
+ "multi-selection": "בחירה מרובה",
+ "multi-selection-on": "בחירה מרובה פועלת",
+ "muted": "מושתק",
+ "muted-info": "מעתה לא תתקבלנה אצלך התרעות על שינויים בלוח זה",
+ "my-boards": "הלוחות שלי",
+ "name": "שם",
+ "no-archived-cards": "אין כרטיסים בארכיון",
+ "no-archived-lists": "אין רשימות בארכיון",
+ "no-archived-swimlanes": "אין מסלולים בארכיון.",
+ "no-results": "אין תוצאות",
+ "normal": "רגיל",
+ "normal-desc": "הרשאה לצפות ולערוך כרטיסים. לא ניתן לשנות הגדרות.",
+ "not-accepted-yet": "ההזמנה לא אושרה עדיין",
+ "notify-participate": "קבלת עדכונים על כרטיסים בהם יש לך מעורבות הן בתהליך היצירה והן כחבר",
+ "notify-watch": "קבלת עדכונים על כל לוח, רשימה או כרטיס שסימנת למעקב",
+ "optional": "רשות",
+ "or": "או",
+ "page-maybe-private": "יתכן שדף זה פרטי. ניתן לצפות בו על ידי <a href='%s'>כניסה למערכת</a>",
+ "page-not-found": "דף לא נמצא.",
+ "password": "ססמה",
+ "paste-or-dragdrop": "כדי להדביק או לגרור ולשחרר קובץ תמונה אליו (תמונות בלבד)",
+ "participating": "משתתפים",
+ "preview": "תצוגה מקדימה",
+ "previewAttachedImagePopup-title": "תצוגה מקדימה",
+ "previewClipboardImagePopup-title": "תצוגה מקדימה",
+ "private": "פרטי",
+ "private-desc": "לוח זה פרטי. רק אנשים שנוספו ללוח יכולים לצפות ולערוך אותו.",
+ "profile": "פרופיל",
+ "public": "ציבורי",
+ "public-desc": "לוח זה ציבורי. כל מי שמחזיק בקישור יכול לצפות בלוח והוא יופיע בתוצאות מנועי חיפוש כגון גוגל. רק אנשים שנוספו ללוח יכולים לערוך אותו.",
+ "quick-access-description": "לחיצה על הכוכב תוסיף קיצור דרך ללוח בשורה זו.",
+ "remove-cover": "הסרת כיסוי",
+ "remove-from-board": "הסרה מהלוח",
+ "remove-label": "הסרת תווית",
+ "listDeletePopup-title": "למחוק את הרשימה?",
+ "remove-member": "הסרת חבר",
+ "remove-member-from-card": "הסרה מהכרטיס",
+ "remove-member-pop": "להסיר את __name__ (__username__) מ__boardTitle__? התהליך יגרום להסרת החבר מכל הכרטיסים בלוח זה. תישלח הודעה אל החבר.",
+ "removeMemberPopup-title": "להסיר חבר?",
+ "rename": "שינוי שם",
+ "rename-board": "שינוי שם ללוח",
+ "restore": "שחזור",
+ "save": "שמירה",
+ "search": "חיפוש",
+ "rules": "כללים",
+ "search-cards": "חיפוש אחר כותרות ותיאורים של כרטיסים בלוח זה",
+ "search-example": "טקסט לחיפוש ?",
+ "select-color": "בחירת צבע",
+ "set-wip-limit-value": "הגדרת מגבלה למספר המרבי של משימות ברשימה זו",
+ "setWipLimitPopup-title": "הגדרת מגבלת „בעבודה”",
+ "shortcut-assign-self": "להקצות אותי לכרטיס הנוכחי",
+ "shortcut-autocomplete-emoji": "השלמה אוטומטית לאימוג׳י",
+ "shortcut-autocomplete-members": "השלמה אוטומטית של חברים",
+ "shortcut-clear-filters": "ביטול כל המסננים",
+ "shortcut-close-dialog": "סגירת החלון",
+ "shortcut-filter-my-cards": "סינון הכרטיסים שלי",
+ "shortcut-show-shortcuts": "העלאת רשימת קיצורים זו",
+ "shortcut-toggle-filterbar": "הצגה או הסתרה של סרגל צד הסינון",
+ "shortcut-toggle-sidebar": "הצגה או הסתרה של סרגל צד הלוח",
+ "show-cards-minimum-count": "הצגת ספירת כרטיסים אם רשימה מכילה למעלה מ־",
+ "sidebar-open": "פתיחת סרגל צד",
+ "sidebar-close": "סגירת סרגל צד",
+ "signupPopup-title": "יצירת חשבון",
+ "star-board-title": "ניתן ללחוץ כדי לסמן בכוכב. הלוח יופיע בראש רשימת הלוחות שלך.",
+ "starred-boards": "לוחות שסומנו בכוכב",
+ "starred-boards-description": "לוחות מסומנים בכוכב מופיעים בראש רשימת הלוחות שלך.",
+ "subscribe": "הרשמה",
+ "team": "צוות",
+ "this-board": "לוח זה",
+ "this-card": "כרטיס זה",
+ "spent-time-hours": "זמן שהושקע (שעות)",
+ "overtime-hours": "שעות נוספות",
+ "overtime": "שעות נוספות",
+ "has-overtime-cards": "יש כרטיסי שעות נוספות",
+ "has-spenttime-cards": "יש כרטיסי זמן שהושקע",
+ "time": "זמן",
+ "title": "כותרת",
+ "tracking": "מעקב",
+ "tracking-info": "על כל שינוי בכרטיסים בהם הייתה לך מעורבות ברמת היצירה או כחברות תגיע אליך הודעה.",
+ "type": "סוג",
+ "unassign-member": "ביטול הקצאת חבר",
+ "unsaved-description": "יש לך תיאור לא שמור.",
+ "unwatch": "ביטול מעקב",
+ "upload": "העלאה",
+ "upload-avatar": "העלאת תמונת משתמש",
+ "uploaded-avatar": "הועלתה תמונה משתמש",
+ "username": "שם משתמש",
+ "view-it": "הצגה",
+ "warn-list-archived": "אזהרה: כרטיס זה הוא חלק מרשימה שנמצאת בארכיון",
+ "watch": "לעקוב",
+ "watching": "במעקב",
+ "watching-info": "מעתה יגיעו אליך דיווחים על כל שינוי בלוח זה",
+ "welcome-board": "לוח קבלת פנים",
+ "welcome-swimlane": "ציון דרך 1",
+ "welcome-list1": "יסודות",
+ "welcome-list2": "מתקדם",
+ "card-templates-swimlane": "תבניות כרטיסים",
+ "list-templates-swimlane": "תבניות רשימות",
+ "board-templates-swimlane": "תבניות לוחות",
+ "what-to-do": "מה ברצונך לעשות?",
+ "wipLimitErrorPopup-title": "מגבלת „בעבודה” שגויה",
+ "wipLimitErrorPopup-dialog-pt1": "מספר המשימות ברשימה זו גדולה ממגבלת הפריטים „בעבודה” שהגדרת.",
+ "wipLimitErrorPopup-dialog-pt2": "נא להוציא חלק מהמשימות מרשימה זו או להגדיר מגבלת „בעבודה” גדולה יותר.",
+ "admin-panel": "חלונית ניהול המערכת",
+ "settings": "הגדרות",
+ "people": "אנשים",
+ "registration": "הרשמה",
+ "disable-self-registration": "השבתת הרשמה עצמית",
+ "invite": "הזמנה",
+ "invite-people": "הזמנת אנשים",
+ "to-boards": "ללוח/ות",
+ "email-addresses": "כתובות דוא״ל",
+ "smtp-host-description": "כתובת שרת ה־SMTP שמטפל בהודעות הדוא״ל שלך.",
+ "smtp-port-description": "מספר הפתחה בה שרת ה־SMTP שלך משתמש לדוא״ל יוצא.",
+ "smtp-tls-description": "הפעל תמיכה ב־TLS עבור שרת ה־SMTP",
+ "smtp-host": "כתובת ה־SMTP",
+ "smtp-port": "פתחת ה־SMTP",
+ "smtp-username": "שם משתמש",
+ "smtp-password": "ססמה",
+ "smtp-tls": "תמיכה ב־TLS",
+ "send-from": "מאת",
+ "send-smtp-test": "שליחת דוא״ל בדיקה לעצמך",
+ "invitation-code": "קוד הזמנה",
+ "email-invite-register-subject": "נשלחה אליך הזמנה מאת __inviter__",
+ "email-invite-register-text": "לכבוד __user__,\n\nהוזמנת על ידי __inviter__ לקחת חלק בלוח קנבאן.\n\nנא ללחוץ על הקישור הבא:\n__url__\n\nקוד ההזמנה הוא: __icode__\n\nתודה.",
+ "email-smtp-test-subject": "דוא״ל לבדיקת SMTP",
+ "email-smtp-test-text": "שלחת הודעת דוא״ל בהצלחה",
+ "error-invitation-code-not-exist": "קוד ההזמנה אינו קיים",
+ "error-notAuthorized": "אין לך הרשאה לצפות בעמוד זה.",
+ "outgoing-webhooks": "קרסי רשת יוצאים",
+ "outgoingWebhooksPopup-title": "קרסי רשת יוצאים",
+ "boardCardTitlePopup-title": "מסנן כותרת כרטיס",
+ "new-outgoing-webhook": "קרסי רשת יוצאים חדשים",
+ "no-name": "(לא ידוע)",
+ "Node_version": "גרסת Node",
+ "OS_Arch": "ארכיטקטורת מערכת הפעלה",
+ "OS_Cpus": "מספר מעבדים",
+ "OS_Freemem": "זיכרון (RAM) פנוי",
+ "OS_Loadavg": "עומס ממוצע",
+ "OS_Platform": "מערכת הפעלה",
+ "OS_Release": "גרסת מערכת הפעלה",
+ "OS_Totalmem": "סך כל הזיכרון (RAM)",
+ "OS_Type": "סוג מערכת ההפעלה",
+ "OS_Uptime": "זמן שעבר מאז האתחול האחרון",
+ "days": "ימים",
+ "hours": "שעות",
+ "minutes": "דקות",
+ "seconds": "שניות",
+ "show-field-on-card": "הצגת שדה זה בכרטיס",
+ "automatically-field-on-card": "הוספת שדה לכל הכרטיסים",
+ "showLabel-field-on-card": "הצגת תווית של השדה בכרטיס מוקטן",
+ "yes": "כן",
+ "no": "לא",
+ "accounts": "חשבונות",
+ "accounts-allowEmailChange": "לאפשר שינוי דוא״ל",
+ "accounts-allowUserNameChange": "לאפשר שינוי שם משתמש",
+ "createdAt": "נוצר ב",
+ "verified": "עבר אימות",
+ "active": "פעיל",
+ "card-received": "התקבל",
+ "card-received-on": "התקבל במועד",
+ "card-end": "סיום",
+ "card-end-on": "מועד הסיום",
+ "editCardReceivedDatePopup-title": "החלפת מועד הקבלה",
+ "editCardEndDatePopup-title": "החלפת מועד הסיום",
+ "setCardColorPopup-title": "הגדרת צבע",
+ "setCardActionsColorPopup-title": "בחירת צבע",
+ "setSwimlaneColorPopup-title": "בחירת צבע",
+ "setListColorPopup-title": "בחירת צבע",
+ "assigned-by": "הוקצה על ידי",
+ "requested-by": "התבקש על ידי",
+ "board-delete-notice": "מחיקה היא לצמיתות. כל הרשימות, הכרטיבים והפעולות שקשורים בלוח הזה ילכו לאיבוד.",
+ "delete-board-confirm-popup": "כל הרשימות, הכרטיסים, התווית והפעולות יימחקו ולא תהיה לך דרך לשחזר את תכני הלוח. אין אפשרות לבטל.",
+ "boardDeletePopup-title": "למחוק את הלוח?",
+ "delete-board": "מחיקת לוח",
+ "default-subtasks-board": "תת־משימות עבור הלוח __board__",
+ "default": "בררת מחדל",
+ "queue": "תור",
+ "subtask-settings": "הגדרות תתי משימות",
+ "boardSubtaskSettingsPopup-title": "הגדרות תת־משימות בלוח",
+ "show-subtasks-field": "לכרטיסים יכולות להיות תת־משימות",
+ "deposit-subtasks-board": "הפקדת תת־משימות ללוח הזה:",
+ "deposit-subtasks-list": "רשימות נחיתה עבור תת־משימות שהופקדו כאן:",
+ "show-parent-in-minicard": "הצגת ההורה במיני כרטיס:",
+ "prefix-with-full-path": "קידומת עם נתיב מלא",
+ "prefix-with-parent": "קידומת עם הורה",
+ "subtext-with-full-path": "טקסט סמוי עם נתיב מלא",
+ "subtext-with-parent": "טקסט סמוי עם הורה",
+ "change-card-parent": "החלפת הורה הכרטיס",
+ "parent-card": "כרטיס הורה",
+ "source-board": "לוח מקור",
+ "no-parent": "לא להציג את ההורה",
+ "activity-added-label": "התווית ‚%s’ נוספה אל %s",
+ "activity-removed-label": "התווית ‚%s’ הוסרה מ־%s",
+ "activity-delete-attach": "הקובץ המצורף נמחק מ־%s",
+ "activity-added-label-card": "התווית ‚%s’ נוספה",
+ "activity-removed-label-card": "התווית ‚%s’ הוסרה",
+ "activity-delete-attach-card": "קובץ מצורף נמחק",
+ "activity-set-customfield": "הגדרת שדה בהתאמה אישית ‚%s’ לערך ‚%s’ תחת %s",
+ "activity-unset-customfield": "ביטול הגדרת שדה בהתאמה אישית ‚%s’ תחת %s",
+ "r-rule": "כלל",
+ "r-add-trigger": "הוספת הקפצה",
+ "r-add-action": "הוספת פעולה",
+ "r-board-rules": "כללי הלוח",
+ "r-add-rule": "הוספת כלל",
+ "r-view-rule": "הצגת כלל",
+ "r-delete-rule": "מחיקת כל",
+ "r-new-rule-name": "שמו של הכלל החדש",
+ "r-no-rules": "אין כללים",
+ "r-when-a-card": "כאשר כרטיס",
+ "r-is": "הוא",
+ "r-is-moved": "מועבר",
+ "r-added-to": "נוסף אל",
+ "r-removed-from": "מוסר מ־",
+ "r-the-board": "הלוח",
+ "r-list": "רשימה",
+ "set-filter": "הגדרת מסנן",
+ "r-moved-to": "מועבר אל",
+ "r-moved-from": "מועבר מ־",
+ "r-archived": "הועבר לארכיון",
+ "r-unarchived": "הוחזר מהארכיון",
+ "r-a-card": "כרטיס",
+ "r-when-a-label-is": "כאשר תווית",
+ "r-when-the-label": "כאשר התווית היא",
+ "r-list-name": "שם הרשימה",
+ "r-when-a-member": "כאשר חבר הוא",
+ "r-when-the-member": "כאשר חבר",
+ "r-name": "שם",
+ "r-when-a-attach": "כאשר קובץ מצורף",
+ "r-when-a-checklist": "כאשר רשימת משימות",
+ "r-when-the-checklist": "כאשר רשימת המשימות",
+ "r-completed": "הושלמה",
+ "r-made-incomplete": "סומנה כבלתי מושלמת",
+ "r-when-a-item": "כאשר פריט ברשימת משימות",
+ "r-when-the-item": "כאשר הפריט ברשימת משימות",
+ "r-checked": "מסומן",
+ "r-unchecked": "לא מסומן",
+ "r-move-card-to": "העברת הכרטיס אל",
+ "r-top-of": "ראש",
+ "r-bottom-of": "תחתית",
+ "r-its-list": "הרשימה שלו",
+ "r-archive": "העברה לארכיון",
+ "r-unarchive": "החזרה מהארכיון",
+ "r-card": "כרטיס",
+ "r-add": "הוספה",
+ "r-remove": "הסרה",
+ "r-label": "תווית",
+ "r-member": "חבר",
+ "r-remove-all": "הסרת כל החברים מהכרטיס",
+ "r-set-color": "הגדרת צבע לכדי",
+ "r-checklist": "רשימת משימות",
+ "r-check-all": "לסמן הכול",
+ "r-uncheck-all": "לבטל את הסימון",
+ "r-items-check": "פריטים ברשימת משימות",
+ "r-check": "סימון",
+ "r-uncheck": "ביטול סימון",
+ "r-item": "פריט",
+ "r-of-checklist": "של רשימת משימות",
+ "r-send-email": "שליחת דוא״ל",
+ "r-to": "אל",
+ "r-subject": "נושא",
+ "r-rule-details": "פרטי הכלל",
+ "r-d-move-to-top-gen": "העברת כרטיס לראש הרשימה שלו",
+ "r-d-move-to-top-spec": "העברת כרטיס לראש רשימה",
+ "r-d-move-to-bottom-gen": "העברת כרטיס לתחתית הרשימה שלו",
+ "r-d-move-to-bottom-spec": "העברת כרטיס לתחתית רשימה",
+ "r-d-send-email": "שליחת דוא״ל",
+ "r-d-send-email-to": "אל",
+ "r-d-send-email-subject": "נושא",
+ "r-d-send-email-message": "הודעה",
+ "r-d-archive": "העברת כרטיס לארכיון",
+ "r-d-unarchive": "החזרת כרטיס מהארכיון",
+ "r-d-add-label": "הוספת תווית",
+ "r-d-remove-label": "הסרת תווית",
+ "r-create-card": "יצירת כרטיס חדש",
+ "r-in-list": "ברשימה",
+ "r-in-swimlane": "במסלול",
+ "r-d-add-member": "הוספת חבר",
+ "r-d-remove-member": "הסרת חבר",
+ "r-d-remove-all-member": "הסרת כל החברים",
+ "r-d-check-all": "סימון כל הפריטים ברשימה",
+ "r-d-uncheck-all": "ביטול סימון הפריטים ברשימה",
+ "r-d-check-one": "סימון פריט",
+ "r-d-uncheck-one": "ביטול סימון פריט",
+ "r-d-check-of-list": "של רשימת משימות",
+ "r-d-add-checklist": "הוספת רשימת משימות",
+ "r-d-remove-checklist": "הסרת רשימת משימות",
+ "r-by": "על ידי",
+ "r-add-checklist": "הוספת רשימת משימות",
+ "r-with-items": "עם פריטים",
+ "r-items-list": "פריט1,פריט2,פריט3",
+ "r-add-swimlane": "הוספת מסלול",
+ "r-swimlane-name": "שם המסלול",
+ "r-board-note": "לתשומת לבך: ניתן להשאיר את השדה ריק כדי ללכוד כל ערך אפשרי.",
+ "r-checklist-note": "לתשומת לבך: את פריטי רשימת הביצוע יש לכתוב בתצורת רשימה של ערכים המופרדים בפסיקים.",
+ "r-when-a-card-is-moved": "כאשר כרטיס מועבר לרשימה אחרת",
+ "r-set": "הגדרה",
+ "r-update": "עדכון",
+ "r-datefield": "שדה תאריך",
+ "r-df-start-at": "התחלה",
+ "r-df-due-at": "תפוגה",
+ "r-df-end-at": "סיום",
+ "r-df-received-at": "התקבל",
+ "r-to-current-datetime": "לתאריך/שעה הנוכחיים",
+ "r-remove-value-from": "הסרת ערך מתוך",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "שיטת אימות",
+ "authentication-type": "סוג אימות",
+ "custom-product-name": "שם מותאם אישית למוצר",
+ "layout": "פריסה",
+ "hide-logo": "הסתרת לוגו",
+ "add-custom-html-after-body-start": "הוספת קוד HTML מותאם אישית לאחר ה־<body> הפותח.",
+ "add-custom-html-before-body-end": "הוספת קוד HTML מותאם אישית לפני ה־</body> הסוגר.",
+ "error-undefined": "מהו השתבש",
+ "error-ldap-login": "אירעה שגיאה בעת ניסיון הכניסה",
+ "display-authentication-method": "הצגת שיטת אימות",
+ "default-authentication-method": "שיטת אימות כבררת מחדל",
+ "duplicate-board": "שכפול לוח",
+ "people-number": "מספר האנשים הוא:",
+ "swimlaneDeletePopup-title": "למחוק מסלול?",
+ "swimlane-delete-pop": "כל הפעולות יוסרו מהזנת הפעילות ולא תהיה לך אפשרות לשחזר את המסלול. אי אפשר לחזור אחורה.",
+ "restore-all": "לשחזר הכול",
+ "delete-all": "למחוק הכול",
+ "loading": "העמוד בטעינה, אנא המתינו.",
+ "previous_as": "הזמן הקודם היה",
+ "act-a-dueAt": "זמן יעד שונה ל: \n__timeValue__\nבכרטיס: __card__\n זמן היעד הקודם היה __timeOldValue__",
+ "act-a-endAt": "מועד הסיום השתנה לכדי __timeValue__ לעומת (__timeOldValue__)",
+ "act-a-startAt": "מועד ההתחלה השתנה לכדי __timeValue__ לעומת (__timeOldValue__)",
+ "act-a-receivedAt": "מועד הקבלה השתנה לכדי __timeValue__ לעומת (__timeOldValue__)",
+ "a-dueAt": "מועד היעד השתנה לכדי",
+ "a-endAt": "מועד הסיום השתנה לכדי",
+ "a-startAt": "מועד ההתחלה השתנה לכדי",
+ "a-receivedAt": "מועד הקבלה השתנה לכדי",
+ "almostdue": "מועד היעד הנוכחי %s מתקרב",
+ "pastdue": "מועד היעד הנוכחי %s חלף",
+ "duenow": "מועד היעד הנוכחי %s הוא היום",
+ "act-withDue": "__card__ תזכורות למועדי יעד [__board__]",
+ "act-almostdue": "הזכירה שמועד היעד הנוכחי (__timeValue__) של __card__ מתקרב",
+ "act-pastdue": "הזכירה שמועד היעד הנוכחי (__timeValue__) של __card__ חלף",
+ "act-duenow": "הזכירה שמועד היעד הנוכחי (__timeValue__) של __card__ הוא עכשיו",
+ "act-atUserComment": "אוזכרת תחת [__board__] ‏__card__",
+ "delete-user-confirm-popup": "למחוק את החשבון הזה? אי אפשר לבטל.",
+ "accounts-allowUserDelete": "לאפשר למשתמשים למחוק את החשבונות של עצמם",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/hi.i18n.json b/i18n/hi.i18n.json
index 65c5b2d1..0668d2b2 100644
--- a/i18n/hi.i18n.json
+++ b/i18n/hi.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "स्वीकार",
- "act-activity-notify": "गतिविधि अधिसूचना",
- "act-addAttachment": "अनुलग्नक जोड़ा __attachment__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
- "act-deleteAttachment": "हटाए गए अनुलग्नक __attachment__ कार्ड पर __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
- "act-addSubtask": "जोड़ा उपकार्य __checklist__ को __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
- "act-addLabel": "जोड़ा गया लेबल __label__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
- "act-addedLabel": "जोड़ा गया लेबल __label__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "कार्रवाई",
- "activities": "गतिविधि",
- "activity": "क्रियाएँ",
- "activity-added": "जोड़ा गया %s से %s",
- "activity-archived": "%sसंग्रह में ले जाया गया",
- "activity-attached": "संलग्न %s से %s",
- "activity-created": "बनाया %s",
- "activity-customfield-created": "बनाया रिवाज क्षेत्र %s",
- "activity-excluded": "छोड़ा %s से %s",
- "activity-imported": "सूचित कर %s के अंदर %s से %s",
- "activity-imported-board": "सूचित कर %s से %s",
- "activity-joined": "शामिल %s",
- "activity-moved": "स्थानांतरित %s से %s तक %s",
- "activity-on": "पर %s",
- "activity-removed": "हटा दिया %s से %s",
- "activity-sent": "प्रेषित %s तक %s",
- "activity-unjoined": "शामिल नहीं %s",
- "activity-subtask-added": "जोड़ा उप कार्य तक %s",
- "activity-checked-item": "चिह्नित %s अंदर में चिह्नांकन-सूची %s of %s",
- "activity-unchecked-item": "अचिह्नित %s अंदर में चिह्नांकन-सूची %s of %s",
- "activity-checklist-added": "संकलित चिह्नांकन-सूची तक %s",
- "activity-checklist-removed": "हटा दिया एक चिह्नांकन-सूची से %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "अपूर्ण चिह्नांकन-सूची %s of %s",
- "activity-checklist-item-added": "संकलित चिह्नांकन-सूची विषय तक '%s' अंदर में %s",
- "activity-checklist-item-removed": "हटा दिया एक चिह्नांकन-सूची विषय से '%s' अंदर में %s",
- "add": "जोड़ें",
- "activity-checked-item-card": "चिह्नित %s अंदर में चिह्नांकन-सूची %s",
- "activity-unchecked-item-card": "अचिह्नित %s अंदर में चिह्नांकन-सूची %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "अपूर्ण चिह्नांकन-सूची %s",
- "add-attachment": "संलग्न करें",
- "add-board": "बोर्ड जोड़ें",
- "add-card": "कार्ड जोड़ें",
- "add-swimlane": "तैरन जोड़ें",
- "add-subtask": "उप कार्य जोड़ें",
- "add-checklist": "चिह्नांकन-सूची जोड़ें",
- "add-checklist-item": "चिह्नांकन-सूची विषय कोई तक जोड़ें",
- "add-cover": "आवरण जोड़ें",
- "add-label": "नामपत्र जोड़ें",
- "add-list": "सूची जोड़ें",
- "add-members": "सदस्य जोड़ें",
- "added": "जोड़ा गया",
- "addMemberPopup-title": "सदस्य",
- "admin": "Admin",
- "admin-desc": "कार्ड देख और संपादित कर सकते हैं, सदस्यों को हटा सकते हैं, और बोर्ड के लिए सेटिंग्स बदल सकते हैं।",
- "admin-announcement": "घोषणा",
- "admin-announcement-active": "सक्रिय सिस्टम-व्यापी घोषणा",
- "admin-announcement-title": "घोषणा प्रशासक से",
- "all-boards": "सभी बोर्ड",
- "and-n-other-card": "और __count__ other कार्ड",
- "and-n-other-card_plural": "और __count__ other कार्ड",
- "apply": "Apply",
- "app-is-offline": "लोड हो रहा है, कृपया प्रतीक्षा करें । पृष्ठ को ताज़ा करना डेटा की हानि का कारण होगा । यदि लोड करना कार्य नहीं करता है, तो कृपया जांचें कि सर्वर बंद नहीं हुआ है ।",
- "archive": "संग्रह में ले जाएं",
- "archive-all": "सभी को संग्रह में ले जाएं",
- "archive-board": "संग्रह करने के लिए बोर्ड ले जाएँ",
- "archive-card": "कार्ड को संग्रह में ले जाएं",
- "archive-list": "सूची को संग्रह में ले जाएं",
- "archive-swimlane": "संग्रह करने के लिए स्विमलेन ले जाएँ",
- "archive-selection": "चयन को संग्रह में ले जाएं",
- "archiveBoardPopup-title": "बोर्ड को संग्रह में स्थानांतरित करें?",
- "archived-items": "संग्रह",
- "archived-boards": "संग्रह में बोर्ड",
- "restore-board": "पुनर्स्थापना बोर्ड",
- "no-archived-boards": "संग्रह में कोई बोर्ड नहीं ।",
- "archives": "पुरालेख",
- "template": "खाका",
- "templates": "खाका",
- "assign-member": "आवंटित सदस्य",
- "attached": "संलग्न",
- "attachment": "संलग्नक",
- "attachment-delete-pop": "किसी संलग्नक को हटाना स्थाई है । कोई पूर्ववत् नहीं है ।",
- "attachmentDeletePopup-title": "मिटाएँ संलग्नक?",
- "attachments": "संलग्नक",
- "auto-watch": "स्वचालित रूप से देखो बोर्डों जब वे बनाए जाते हैं",
- "avatar-too-big": "अवतार बहुत बड़ा है (70KB अधिकतम)",
- "back": "वापस",
- "board-change-color": "रंग बदलना",
- "board-nb-stars": "%s पसंद होना",
- "board-not-found": "बोर्ड नहीं मिला",
- "board-private-info": "यह बोर्ड हो जाएगा <strong>निजी</strong>.",
- "board-public-info": "यह बोर्ड हो जाएगा <strong>सार्वजनिक</strong>.",
- "boardChangeColorPopup-title": "बोर्ड पृष्ठभूमि बदलें",
- "boardChangeTitlePopup-title": "बोर्ड का नाम बदलें",
- "boardChangeVisibilityPopup-title": "दृश्यता बदलें",
- "boardChangeWatchPopup-title": "बदलें वॉच",
- "boardMenuPopup-title": "बोर्ड सेटिंग्स",
- "boards": "बोर्डों",
- "board-view": "बोर्ड दृष्टिकोण",
- "board-view-cal": "तिथि-पत्र",
- "board-view-swimlanes": "तैरना",
- "board-view-lists": "सूचियाँ",
- "bucket-example": "उदाहरण के लिए “बाल्टी सूची” की तरह",
- "cancel": "रद्द करें",
- "card-archived": "यह कार्ड संग्रह करने के लिए ले जाया गया है ।",
- "board-archived": "यह बोर्ड संग्रह करने के लिए ले जाया जाता है ।",
- "card-comments-title": "इस कार्ड में %s टिप्पणी है।",
- "card-delete-notice": "हटाना स्थायी है। आप इस कार्ड से जुड़े सभी कार्यों को खो देंगे।",
- "card-delete-pop": "सभी कार्रवाइयां गतिविधि फ़ीड से निकाल दी जाएंगी और आप कार्ड को फिर से खोलने में सक्षम नहीं होंगे । कोई पूर्ववत् नहीं है ।",
- "card-delete-suggest-archive": "आप एक कार्ड को बोर्ड से हटाने और गतिविधि को संरक्षित करने के लिए संग्रह में ले जा सकते हैं ।",
- "card-due": "नियत",
- "card-due-on": "पर नियत",
- "card-spent": "समय बिताया",
- "card-edit-attachments": "संपादित संलग्नक",
- "card-edit-custom-fields": "संपादित प्रचलन क्षेत्र",
- "card-edit-labels": "संपादित नामपत्र",
- "card-edit-members": "संपादित सदस्य",
- "card-labels-title": "कार्ड के लिए नामपत्र परिवर्तित करें ।",
- "card-members-title": "कार्ड से बोर्ड के सदस्यों को जोड़ें या हटाएं।",
- "card-start": "प्रारंभ",
- "card-start-on": "पर शुरू होता है",
- "cardAttachmentsPopup-title": "से अनुलग्न करें",
- "cardCustomField-datePopup-title": "तारीख बदलें",
- "cardCustomFieldsPopup-title": "संपादित करें प्रचलन क्षेत्र",
- "cardDeletePopup-title": "मिटाएँ कार्ड?",
- "cardDetailsActionsPopup-title": "कार्ड क्रियाएँ",
- "cardLabelsPopup-title": "नामपत्र",
- "cardMembersPopup-title": "सदस्य",
- "cardMorePopup-title": "अतिरिक्त",
- "cardTemplatePopup-title": "खाका बनाएं",
- "cards": "कार्ड्स",
- "cards-count": "कार्ड्स",
- "casSignIn": "सीएएस के साथ साइन इन करें",
- "cardType-card": "कार्ड",
- "cardType-linkedCard": "जुड़े हुए कार्ड",
- "cardType-linkedBoard": "जुड़े हुए बोर्ड",
- "change": "तब्दीली",
- "change-avatar": "अवतार परिवर्तन करें",
- "change-password": "गोपनीयता परिवर्तन करें",
- "change-permissions": "अनुमतियां परिवर्तित करें",
- "change-settings": "व्यवस्था परिवर्तित करें",
- "changeAvatarPopup-title": "अवतार परिवर्तन करें",
- "changeLanguagePopup-title": "भाषा परिवर्तन करें",
- "changePasswordPopup-title": "गोपनीयता परिवर्तन करें",
- "changePermissionsPopup-title": "अनुमतियां परिवर्तित करें",
- "changeSettingsPopup-title": "व्यवस्था परिवर्तित करें",
- "subtasks": "उप-कार्य",
- "checklists": "जांच सूची",
- "click-to-star": "इस बोर्ड को स्टार करने के लिए क्लिक करें ।",
- "click-to-unstar": "इस बोर्ड को अनस्टार करने के लिए क्लिक करें।",
- "clipboard": "क्लिपबोर्ड या खींचें और छोड़ें",
- "close": "बंद करे",
- "close-board": "बोर्ड बंद करे",
- "close-board-pop": "आप होम हेडर से \"संग्रह\" बटन पर क्लिक करके बोर्ड को पुनर्स्थापित करने में सक्षम होंगे।",
- "color-black": "काला",
- "color-blue": "नीला",
- "color-crimson": "गहरा लाल",
- "color-darkgreen": "गहरा हरा",
- "color-gold": "स्वर्ण",
- "color-gray": "भूरे",
- "color-green": "हरा",
- "color-indigo": "नील",
- "color-lime": "हल्का हरा",
- "color-magenta": "मैजंटा",
- "color-mistyrose": "हल्का गुलाबी",
- "color-navy": "navy",
- "color-orange": "नारंगी",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "गुलाबी",
- "color-plum": "plum",
- "color-purple": "बैंगनी",
- "color-red": "लाल",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "आकाशिया नीला",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "पीला",
- "unset-color": "Unset",
- "comment": "टिप्पणी",
- "comment-placeholder": "टिप्पणी लिखें",
- "comment-only": "केवल टिप्पणी करें",
- "comment-only-desc": "केवल कार्ड पर टिप्पणी कर सकते हैं।",
- "no-comments": "कोई टिप्पणी नहीं",
- "no-comments-desc": "टिप्पणियां और गतिविधियां नहीं देख पा रहे हैं।",
- "computer": "संगणक",
- "confirm-subtask-delete-dialog": "क्या आप वाकई उपकार्य हटाना चाहते हैं?",
- "confirm-checklist-delete-dialog": "क्या आप वाकई जांचसूची हटाना चाहते हैं?",
- "copy-card-link-to-clipboard": "कॉपी कार्ड क्लिपबोर्ड करने के लिए लिंक",
- "linkCardPopup-title": "कार्ड कड़ी",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "कार्ड प्रतिलिपि",
- "copyChecklistToManyCardsPopup-title": "कई कार्ड के लिए जांचसूची खाके की प्रतिलिपि बनाएँ",
- "copyChecklistToManyCardsPopup-instructions": "इस JSON प्रारूप में गंतव्य कार्ड शीर्षक और विवरण",
- "copyChecklistToManyCardsPopup-format": "[{\"title\":\"पहला कार्ड शीर्षक\",\"description\":\"पहला कार्ड विवरण\"},{\"title\":\"दूसरा कार्ड शीर्षक\",\"description\":\"दूसरा कार्ड विवरण\"},{\"title\":\"अंतिम कार्ड शीर्षक\",\"description\":\"अंतिम कार्ड विवरण\" }]",
- "create": "निर्माण करना",
- "createBoardPopup-title": "बोर्ड निर्माण करना",
- "chooseBoardSourcePopup-title": "बोर्ड आयात",
- "createLabelPopup-title": "नामपत्र निर्माण",
- "createCustomField": "क्षेत्र निर्माण करना",
- "createCustomFieldPopup-title": "क्षेत्र निर्माण",
- "current": "वर्तमान",
- "custom-field-delete-pop": "कोई पूर्ववत् नहीं है । यह सभी कार्ड से इस कस्टम क्षेत्र को हटा दें और इसके इतिहास को नष्ट कर देगा ।",
- "custom-field-checkbox": "निशानबक्से",
- "custom-field-date": "दिनांक",
- "custom-field-dropdown": "ड्रॉपडाउन सूची",
- "custom-field-dropdown-none": "(कोई नहीं)",
- "custom-field-dropdown-options": "सूची विकल्प",
- "custom-field-dropdown-options-placeholder": "Press enter तक जोड़ें more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "प्रचलन क्षेत्र",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "मिटाएँ प्रचलन क्षेत्र?",
- "deleteLabelPopup-title": "मिटाएँ Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate सदस्य Action",
- "discard": "Disकार्ड",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "संपादित करें Profile",
- "edit-wip-limit": "संपादित करें WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "संपादित करें Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "संपादित करें Notification",
- "editProfilePopup-title": "संपादित करें Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying तक send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ प्रेषित you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you तक join बोर्ड \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "नमस्ते __user __, \n\n अपना खाता ईमेल सत्यापित करने के लिए, बस नीचे दिए गए लिंक पर क्लिक करें। \n\n__url __ \n\n धन्यवाद।",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "यह बोर्ड does not exist",
- "error-board-notAdmin": "You need तक be व्यवस्थापक of यह बोर्ड तक do that",
- "error-board-notAMember": "You need तक be एक सदस्य of यह बोर्ड तक do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "आपके JSON डेटा में सही प्रारूप में सही जानकारी शामिल नहीं है",
- "error-list-doesNotExist": "यह सूची does not exist",
- "error-user-doesNotExist": "यह user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "यह user is not created",
- "error-username-taken": "यह username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export बोर्ड",
- "filter": "Filter",
- "filter-cards": "Filter कार्ड",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No सदस्य",
- "filter-no-custom-fields": "No प्रचलन क्षेत्र",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering कार्ड इस पर बोर्ड. Click here तक संपादित करें filter.",
- "filter-to-selection": "Filter तक selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows तक write एक string containing following operators: == != <= >= && || ( ) एक space is used as एक separator between the Operators. You can filter for संपूर्ण प्रचलन क्षेत्र by typing their names और values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need तक encapsulate them के अंदर single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) तक be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally संपूर्ण operators are interpreted से left तक right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back तक your बोर्डों page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create बोर्ड",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import बोर्ड",
- "import-board-c": "Import बोर्ड",
- "import-board-title-trello": "Import बोर्ड से Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "सूचित कर बोर्ड will मिटाएँ संपूर्ण existing data on बोर्ड और replace it साथ में सूचित कर बोर्ड.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello बोर्ड, go तक 'Menu', then 'More', 'Print और Export', 'Export JSON', और copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map सदस्य",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Re आलोकन सदस्य mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited तक यह बोर्ड",
- "keyboard-shortcuts": "Keyबोर्ड shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. यह will हटा यह label से संपूर्ण कार्ड और destroy its history.",
- "labels": "नामपत्र",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave बोर्ड",
- "leave-board-pop": "Are you sure you want तक leave __boardTitle__? You हो जाएगा हटा दिया से संपूर्ण कार्ड इस पर बोर्ड.",
- "leaveBoardPopup-title": "Leave बोर्ड ?",
- "link-card": "Link तक यह कार्ड",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "स्थानांतरित संपूर्ण कार्ड अंदर में यह list",
- "list-select-cards": "Select संपूर्ण कार्ड अंदर में यह list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "सूची Actions",
- "swimlaneActionPopup-title": "तैरन Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import एक Trello कार्ड",
- "listMorePopup-title": "More",
- "link-list": "Link तक यह list",
- "list-delete-pop": "All actions हो जाएगा हटा दिया से the activity feed और you won't be able तक recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "तैरन",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "सदस्य व्यवस्था",
- "members": "सदस्य",
- "menu": "Menu",
- "move-selection": "स्थानांतरित selection",
- "moveCardPopup-title": "स्थानांतरित कार्ड",
- "moveCardToBottom-title": "स्थानांतरित तक Bottom",
- "moveCardToTop-title": "स्थानांतरित तक Top",
- "moveSelectionPopup-title": "स्थानांतरित selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "आप किसी भी परिवर्तन के अधिसूचित नहीं किया जाएगा अंदर में यह बोर्ड",
- "my-boards": "My बोर्ड",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can आलोकन और संपादित करें कार्ड. Can't change व्यवस्था.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates तक any कार्ड you participate as creater or सदस्य",
- "notify-watch": "Receive updates तक any बोर्ड, lists, or कार्ड you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "यह page may be private. You may be able तक आलोकन it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page नहीं मिला.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file तक it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "यह बोर्ड is private. Only people संकलित तक the बोर्ड can आलोकन और संपादित करें it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "यह बोर्ड is public. It's visible तक anyone साथ में the link और will show up अंदर में गूगल की तरह खोज इंजन । केवल लोग संकलित तक बोर्ड संपादित कर सकते हैं.",
- "quick-access-description": "Star एक बोर्ड तक जोड़ें एक shortcut अंदर में यह पट्टी .",
- "remove-cover": "हटाएँ Cover",
- "remove-from-board": "हटाएँ से बोर्ड",
- "remove-label": "हटाएँ Label",
- "listDeletePopup-title": "मिटाएँ सूची ?",
- "remove-member": "हटाएँ सदस्य",
- "remove-member-from-card": "हटाएँ से कार्ड",
- "remove-member-pop": "हटाएँ __name__ (__username__) से __boardTitle__? इस बोर्ड पर सभी कार्ड से सदस्य हटा दिया जाएगा। उन्हें एक अधिसूचना प्राप्त होगी।",
- "removeMemberPopup-title": "हटाएँ सदस्य?",
- "rename": "Rename",
- "rename-board": "Rename बोर्ड",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search से कार्ड titles और descriptions इस पर बोर्ड",
- "search-example": "Text तक search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set एक limit for the maximum number of tasks अंदर में यह list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself तक current कार्ड",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete सदस्य",
- "shortcut-clear-filters": "Clear संपूर्ण filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my कार्ड",
- "shortcut-show-shortcuts": "Bring up यह shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle बोर्ड Sidebar",
- "show-cards-minimum-count": "Show कार्ड count if सूची contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click तक star यह बोर्ड. It will show up at top of your बोर्डों list.",
- "starred-boards": "Starred बोर्ड",
- "starred-boards-description": "Starred बोर्डों show up at the top of your बोर्डों list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "यह बोर्ड",
- "this-card": "यह कार्ड",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime कार्ड",
- "has-spenttime-cards": "Has spent time कार्ड",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You हो जाएगा notified of any changes तक those कार्ड you are involved as creator or सदस्य.",
- "type": "Type",
- "unassign-member": "Unassign सदस्य",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "आलोकन it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You हो जाएगा notified of any change अंदर में यह बोर्ड",
- "welcome-board": "Welcome बोर्ड",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "कार्ड का खाका",
- "list-templates-swimlane": "सूची का खाका",
- "board-templates-swimlane": "बोर्ड का खाका",
- "what-to-do": "What do you want तक do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks अंदर में यह सूची is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please स्थानांतरित some tasks out of यह list, or set एक higher WIP limit.",
- "admin-panel": "व्यवस्थापक Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To बोर्ड(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send एक test email तक yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ प्रेषित you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully प्रेषित an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized तक आलोकन यह page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show यह field on कार्ड",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose संपूर्ण lists, कार्ड और actions associated साथ में यह बोर्ड.",
- "delete-board-confirm-popup": "All lists, कार्ड,नामपत्र , और activities हो जाएगा deleted और you won't be able तक recover the बोर्ड contents. There is no undo.",
- "boardDeletePopup-title": "मिटाएँ बोर्ड?",
- "delete-board": "मिटाएँ बोर्ड",
- "default-subtasks-board": "Subtasks for __board__ बोर्ड",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks व्यवस्था",
- "boardSubtaskSettingsPopup-title": "बोर्ड Subtasks व्यवस्था",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks तक यह बोर्ड:",
- "deposit-subtasks-list": "Landing सूची for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent अंदर में minicard:",
- "prefix-with-full-path": "Prefix साथ में full path",
- "prefix-with-parent": "Prefix साथ में parent",
- "subtext-with-full-path": "Subtext साथ में full path",
- "subtext-with-parent": "Subtext साथ में parent",
- "change-card-parent": "Change कार्ड's parent",
- "parent-card": "Parent कार्ड",
- "source-board": "Source बोर्ड",
- "no-parent": "Don't show parent",
- "activity-added-label": "संकलित label '%s' तक %s",
- "activity-removed-label": "हटा दिया label '%s' से %s",
- "activity-delete-attach": "deleted an संलग्नक से %s",
- "activity-added-label-card": "संकलित label '%s'",
- "activity-removed-label-card": "हटा दिया label '%s'",
- "activity-delete-attach-card": "deleted an संलग्नक",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "जोड़ें trigger",
- "r-add-action": "जोड़ें action",
- "r-board-rules": "बोर्ड rules",
- "r-add-rule": "जोड़ें rule",
- "r-view-rule": "आलोकन rule",
- "r-delete-rule": "मिटाएँ rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "हटा दिया from",
- "r-the-board": "the बोर्ड",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "स्थानांतरित to",
- "r-moved-from": "स्थानांतरित from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a कार्ड",
- "r-when-a-label-is": "जब एक नामपत्र है",
- "r-when-the-label": "जब नामपत्र है",
- "r-list-name": "list name",
- "r-when-a-member": "जब एक सदस्य is",
- "r-when-the-member": "जब the सदस्य",
- "r-name": "name",
- "r-when-a-attach": "जब an संलग्नक",
- "r-when-a-checklist": "जब एक चिह्नांकन-सूची is",
- "r-when-the-checklist": "जब the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "जब एक चिह्नांकन-सूची विषय is",
- "r-when-the-item": "जब the चिह्नांकन-सूची item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "स्थानांतरित कार्ड to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "संग्रह में ले जाएं",
- "r-unarchive": "Restore from Archive",
- "r-card": "कार्ड",
- "r-add": "जोड़ें",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "हटाएँ संपूर्ण सदस्य से the कार्ड",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "स्थानांतरित कार्ड तक top of its list",
- "r-d-move-to-top-spec": "स्थानांतरित कार्ड तक top of list",
- "r-d-move-to-bottom-gen": "स्थानांतरित कार्ड तक bottom of its list",
- "r-d-move-to-bottom-spec": "स्थानांतरित कार्ड तक bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "जोड़ें label",
- "r-d-remove-label": "हटाएँ label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "जोड़ें सदस्य",
- "r-d-remove-member": "हटाएँ सदस्य",
- "r-d-remove-all-member": "हटाएँ संपूर्ण सदस्य",
- "r-d-check-all": "Check संपूर्ण items of एक list",
- "r-d-uncheck-all": "Uncheck संपूर्ण items of एक list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "जोड़ें checklist",
- "r-d-remove-checklist": "हटाएँ checklist",
- "r-by": "by",
- "r-add-checklist": "जोड़ें checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "जब एक कार्ड is स्थानांतरित तक another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "स्वीकार",
+ "act-activity-notify": "गतिविधि अधिसूचना",
+ "act-addAttachment": "अनुलग्नक जोड़ा __attachment__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
+ "act-deleteAttachment": "हटाए गए अनुलग्नक __attachment__ कार्ड पर __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
+ "act-addSubtask": "जोड़ा उपकार्य __checklist__ को __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
+ "act-addLabel": "जोड़ा गया लेबल __label__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
+ "act-addedLabel": "जोड़ा गया लेबल __label__ कार्ड के लिए __card__ सूचि मेें __list__ तैराक में __swimlane__ बोर्ड पर __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "कार्रवाई",
+ "activities": "गतिविधि",
+ "activity": "क्रियाएँ",
+ "activity-added": "जोड़ा गया %s से %s",
+ "activity-archived": "%sसंग्रह में ले जाया गया",
+ "activity-attached": "संलग्न %s से %s",
+ "activity-created": "बनाया %s",
+ "activity-customfield-created": "बनाया रिवाज क्षेत्र %s",
+ "activity-excluded": "छोड़ा %s से %s",
+ "activity-imported": "सूचित कर %s के अंदर %s से %s",
+ "activity-imported-board": "सूचित कर %s से %s",
+ "activity-joined": "शामिल %s",
+ "activity-moved": "स्थानांतरित %s से %s तक %s",
+ "activity-on": "पर %s",
+ "activity-removed": "हटा दिया %s से %s",
+ "activity-sent": "प्रेषित %s तक %s",
+ "activity-unjoined": "शामिल नहीं %s",
+ "activity-subtask-added": "जोड़ा उप कार्य तक %s",
+ "activity-checked-item": "चिह्नित %s अंदर में चिह्नांकन-सूची %s of %s",
+ "activity-unchecked-item": "अचिह्नित %s अंदर में चिह्नांकन-सूची %s of %s",
+ "activity-checklist-added": "संकलित चिह्नांकन-सूची तक %s",
+ "activity-checklist-removed": "हटा दिया एक चिह्नांकन-सूची से %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "अपूर्ण चिह्नांकन-सूची %s of %s",
+ "activity-checklist-item-added": "संकलित चिह्नांकन-सूची विषय तक '%s' अंदर में %s",
+ "activity-checklist-item-removed": "हटा दिया एक चिह्नांकन-सूची विषय से '%s' अंदर में %s",
+ "add": "जोड़ें",
+ "activity-checked-item-card": "चिह्नित %s अंदर में चिह्नांकन-सूची %s",
+ "activity-unchecked-item-card": "अचिह्नित %s अंदर में चिह्नांकन-सूची %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "अपूर्ण चिह्नांकन-सूची %s",
+ "add-attachment": "संलग्न करें",
+ "add-board": "बोर्ड जोड़ें",
+ "add-card": "कार्ड जोड़ें",
+ "add-swimlane": "तैरन जोड़ें",
+ "add-subtask": "उप कार्य जोड़ें",
+ "add-checklist": "चिह्नांकन-सूची जोड़ें",
+ "add-checklist-item": "चिह्नांकन-सूची विषय कोई तक जोड़ें",
+ "add-cover": "आवरण जोड़ें",
+ "add-label": "नामपत्र जोड़ें",
+ "add-list": "सूची जोड़ें",
+ "add-members": "सदस्य जोड़ें",
+ "added": "जोड़ा गया",
+ "addMemberPopup-title": "सदस्य",
+ "admin": "Admin",
+ "admin-desc": "कार्ड देख और संपादित कर सकते हैं, सदस्यों को हटा सकते हैं, और बोर्ड के लिए सेटिंग्स बदल सकते हैं।",
+ "admin-announcement": "घोषणा",
+ "admin-announcement-active": "सक्रिय सिस्टम-व्यापी घोषणा",
+ "admin-announcement-title": "घोषणा प्रशासक से",
+ "all-boards": "सभी बोर्ड",
+ "and-n-other-card": "और __count__ other कार्ड",
+ "and-n-other-card_plural": "और __count__ other कार्ड",
+ "apply": "Apply",
+ "app-is-offline": "लोड हो रहा है, कृपया प्रतीक्षा करें । पृष्ठ को ताज़ा करना डेटा की हानि का कारण होगा । यदि लोड करना कार्य नहीं करता है, तो कृपया जांचें कि सर्वर बंद नहीं हुआ है ।",
+ "archive": "संग्रह में ले जाएं",
+ "archive-all": "सभी को संग्रह में ले जाएं",
+ "archive-board": "संग्रह करने के लिए बोर्ड ले जाएँ",
+ "archive-card": "कार्ड को संग्रह में ले जाएं",
+ "archive-list": "सूची को संग्रह में ले जाएं",
+ "archive-swimlane": "संग्रह करने के लिए स्विमलेन ले जाएँ",
+ "archive-selection": "चयन को संग्रह में ले जाएं",
+ "archiveBoardPopup-title": "बोर्ड को संग्रह में स्थानांतरित करें?",
+ "archived-items": "संग्रह",
+ "archived-boards": "संग्रह में बोर्ड",
+ "restore-board": "पुनर्स्थापना बोर्ड",
+ "no-archived-boards": "संग्रह में कोई बोर्ड नहीं ।",
+ "archives": "पुरालेख",
+ "template": "खाका",
+ "templates": "खाका",
+ "assign-member": "आवंटित सदस्य",
+ "attached": "संलग्न",
+ "attachment": "संलग्नक",
+ "attachment-delete-pop": "किसी संलग्नक को हटाना स्थाई है । कोई पूर्ववत् नहीं है ।",
+ "attachmentDeletePopup-title": "मिटाएँ संलग्नक?",
+ "attachments": "संलग्नक",
+ "auto-watch": "स्वचालित रूप से देखो बोर्डों जब वे बनाए जाते हैं",
+ "avatar-too-big": "अवतार बहुत बड़ा है (70KB अधिकतम)",
+ "back": "वापस",
+ "board-change-color": "रंग बदलना",
+ "board-nb-stars": "%s पसंद होना",
+ "board-not-found": "बोर्ड नहीं मिला",
+ "board-private-info": "यह बोर्ड हो जाएगा <strong>निजी</strong>.",
+ "board-public-info": "यह बोर्ड हो जाएगा <strong>सार्वजनिक</strong>.",
+ "boardChangeColorPopup-title": "बोर्ड पृष्ठभूमि बदलें",
+ "boardChangeTitlePopup-title": "बोर्ड का नाम बदलें",
+ "boardChangeVisibilityPopup-title": "दृश्यता बदलें",
+ "boardChangeWatchPopup-title": "बदलें वॉच",
+ "boardMenuPopup-title": "बोर्ड सेटिंग्स",
+ "boards": "बोर्डों",
+ "board-view": "बोर्ड दृष्टिकोण",
+ "board-view-cal": "तिथि-पत्र",
+ "board-view-swimlanes": "तैरना",
+ "board-view-lists": "सूचियाँ",
+ "bucket-example": "उदाहरण के लिए “बाल्टी सूची” की तरह",
+ "cancel": "रद्द करें",
+ "card-archived": "यह कार्ड संग्रह करने के लिए ले जाया गया है ।",
+ "board-archived": "यह बोर्ड संग्रह करने के लिए ले जाया जाता है ।",
+ "card-comments-title": "इस कार्ड में %s टिप्पणी है।",
+ "card-delete-notice": "हटाना स्थायी है। आप इस कार्ड से जुड़े सभी कार्यों को खो देंगे।",
+ "card-delete-pop": "सभी कार्रवाइयां गतिविधि फ़ीड से निकाल दी जाएंगी और आप कार्ड को फिर से खोलने में सक्षम नहीं होंगे । कोई पूर्ववत् नहीं है ।",
+ "card-delete-suggest-archive": "आप एक कार्ड को बोर्ड से हटाने और गतिविधि को संरक्षित करने के लिए संग्रह में ले जा सकते हैं ।",
+ "card-due": "नियत",
+ "card-due-on": "पर नियत",
+ "card-spent": "समय बिताया",
+ "card-edit-attachments": "संपादित संलग्नक",
+ "card-edit-custom-fields": "संपादित प्रचलन क्षेत्र",
+ "card-edit-labels": "संपादित नामपत्र",
+ "card-edit-members": "संपादित सदस्य",
+ "card-labels-title": "कार्ड के लिए नामपत्र परिवर्तित करें ।",
+ "card-members-title": "कार्ड से बोर्ड के सदस्यों को जोड़ें या हटाएं।",
+ "card-start": "प्रारंभ",
+ "card-start-on": "पर शुरू होता है",
+ "cardAttachmentsPopup-title": "से अनुलग्न करें",
+ "cardCustomField-datePopup-title": "तारीख बदलें",
+ "cardCustomFieldsPopup-title": "संपादित करें प्रचलन क्षेत्र",
+ "cardDeletePopup-title": "मिटाएँ कार्ड?",
+ "cardDetailsActionsPopup-title": "कार्ड क्रियाएँ",
+ "cardLabelsPopup-title": "नामपत्र",
+ "cardMembersPopup-title": "सदस्य",
+ "cardMorePopup-title": "अतिरिक्त",
+ "cardTemplatePopup-title": "खाका बनाएं",
+ "cards": "कार्ड्स",
+ "cards-count": "कार्ड्स",
+ "casSignIn": "सीएएस के साथ साइन इन करें",
+ "cardType-card": "कार्ड",
+ "cardType-linkedCard": "जुड़े हुए कार्ड",
+ "cardType-linkedBoard": "जुड़े हुए बोर्ड",
+ "change": "तब्दीली",
+ "change-avatar": "अवतार परिवर्तन करें",
+ "change-password": "गोपनीयता परिवर्तन करें",
+ "change-permissions": "अनुमतियां परिवर्तित करें",
+ "change-settings": "व्यवस्था परिवर्तित करें",
+ "changeAvatarPopup-title": "अवतार परिवर्तन करें",
+ "changeLanguagePopup-title": "भाषा परिवर्तन करें",
+ "changePasswordPopup-title": "गोपनीयता परिवर्तन करें",
+ "changePermissionsPopup-title": "अनुमतियां परिवर्तित करें",
+ "changeSettingsPopup-title": "व्यवस्था परिवर्तित करें",
+ "subtasks": "उप-कार्य",
+ "checklists": "जांच सूची",
+ "click-to-star": "इस बोर्ड को स्टार करने के लिए क्लिक करें ।",
+ "click-to-unstar": "इस बोर्ड को अनस्टार करने के लिए क्लिक करें।",
+ "clipboard": "क्लिपबोर्ड या खींचें और छोड़ें",
+ "close": "बंद करे",
+ "close-board": "बोर्ड बंद करे",
+ "close-board-pop": "आप होम हेडर से \"संग्रह\" बटन पर क्लिक करके बोर्ड को पुनर्स्थापित करने में सक्षम होंगे।",
+ "color-black": "काला",
+ "color-blue": "नीला",
+ "color-crimson": "गहरा लाल",
+ "color-darkgreen": "गहरा हरा",
+ "color-gold": "स्वर्ण",
+ "color-gray": "भूरे",
+ "color-green": "हरा",
+ "color-indigo": "नील",
+ "color-lime": "हल्का हरा",
+ "color-magenta": "मैजंटा",
+ "color-mistyrose": "हल्का गुलाबी",
+ "color-navy": "navy",
+ "color-orange": "नारंगी",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "गुलाबी",
+ "color-plum": "plum",
+ "color-purple": "बैंगनी",
+ "color-red": "लाल",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "आकाशिया नीला",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "पीला",
+ "unset-color": "Unset",
+ "comment": "टिप्पणी",
+ "comment-placeholder": "टिप्पणी लिखें",
+ "comment-only": "केवल टिप्पणी करें",
+ "comment-only-desc": "केवल कार्ड पर टिप्पणी कर सकते हैं।",
+ "no-comments": "कोई टिप्पणी नहीं",
+ "no-comments-desc": "टिप्पणियां और गतिविधियां नहीं देख पा रहे हैं।",
+ "computer": "संगणक",
+ "confirm-subtask-delete-dialog": "क्या आप वाकई उपकार्य हटाना चाहते हैं?",
+ "confirm-checklist-delete-dialog": "क्या आप वाकई जांचसूची हटाना चाहते हैं?",
+ "copy-card-link-to-clipboard": "कॉपी कार्ड क्लिपबोर्ड करने के लिए लिंक",
+ "linkCardPopup-title": "कार्ड कड़ी",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "कार्ड प्रतिलिपि",
+ "copyChecklistToManyCardsPopup-title": "कई कार्ड के लिए जांचसूची खाके की प्रतिलिपि बनाएँ",
+ "copyChecklistToManyCardsPopup-instructions": "इस JSON प्रारूप में गंतव्य कार्ड शीर्षक और विवरण",
+ "copyChecklistToManyCardsPopup-format": "[{\"title\":\"पहला कार्ड शीर्षक\",\"description\":\"पहला कार्ड विवरण\"},{\"title\":\"दूसरा कार्ड शीर्षक\",\"description\":\"दूसरा कार्ड विवरण\"},{\"title\":\"अंतिम कार्ड शीर्षक\",\"description\":\"अंतिम कार्ड विवरण\" }]",
+ "create": "निर्माण करना",
+ "createBoardPopup-title": "बोर्ड निर्माण करना",
+ "chooseBoardSourcePopup-title": "बोर्ड आयात",
+ "createLabelPopup-title": "नामपत्र निर्माण",
+ "createCustomField": "क्षेत्र निर्माण करना",
+ "createCustomFieldPopup-title": "क्षेत्र निर्माण",
+ "current": "वर्तमान",
+ "custom-field-delete-pop": "कोई पूर्ववत् नहीं है । यह सभी कार्ड से इस कस्टम क्षेत्र को हटा दें और इसके इतिहास को नष्ट कर देगा ।",
+ "custom-field-checkbox": "निशानबक्से",
+ "custom-field-date": "दिनांक",
+ "custom-field-dropdown": "ड्रॉपडाउन सूची",
+ "custom-field-dropdown-none": "(कोई नहीं)",
+ "custom-field-dropdown-options": "सूची विकल्प",
+ "custom-field-dropdown-options-placeholder": "Press enter तक जोड़ें more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "प्रचलन क्षेत्र",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "मिटाएँ प्रचलन क्षेत्र?",
+ "deleteLabelPopup-title": "मिटाएँ Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate सदस्य Action",
+ "discard": "Disकार्ड",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "संपादित करें Profile",
+ "edit-wip-limit": "संपादित करें WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "संपादित करें Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "संपादित करें Notification",
+ "editProfilePopup-title": "संपादित करें Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying तक send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ प्रेषित you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you तक join बोर्ड \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "नमस्ते __user __, \n\n अपना खाता ईमेल सत्यापित करने के लिए, बस नीचे दिए गए लिंक पर क्लिक करें। \n\n__url __ \n\n धन्यवाद।",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "यह बोर्ड does not exist",
+ "error-board-notAdmin": "You need तक be व्यवस्थापक of यह बोर्ड तक do that",
+ "error-board-notAMember": "You need तक be एक सदस्य of यह बोर्ड तक do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "आपके JSON डेटा में सही प्रारूप में सही जानकारी शामिल नहीं है",
+ "error-list-doesNotExist": "यह सूची does not exist",
+ "error-user-doesNotExist": "यह user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "यह user is not created",
+ "error-username-taken": "यह username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export बोर्ड",
+ "filter": "Filter",
+ "filter-cards": "Filter कार्ड",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No सदस्य",
+ "filter-no-custom-fields": "No प्रचलन क्षेत्र",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering कार्ड इस पर बोर्ड. Click here तक संपादित करें filter.",
+ "filter-to-selection": "Filter तक selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows तक write एक string containing following operators: == != <= >= && || ( ) एक space is used as एक separator between the Operators. You can filter for संपूर्ण प्रचलन क्षेत्र by typing their names और values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need तक encapsulate them के अंदर single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) तक be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally संपूर्ण operators are interpreted से left तक right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back तक your बोर्डों page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create बोर्ड",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import बोर्ड",
+ "import-board-c": "Import बोर्ड",
+ "import-board-title-trello": "Import बोर्ड से Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "सूचित कर बोर्ड will मिटाएँ संपूर्ण existing data on बोर्ड और replace it साथ में सूचित कर बोर्ड.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello बोर्ड, go तक 'Menu', then 'More', 'Print और Export', 'Export JSON', और copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map सदस्य",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Re आलोकन सदस्य mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited तक यह बोर्ड",
+ "keyboard-shortcuts": "Keyबोर्ड shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. यह will हटा यह label से संपूर्ण कार्ड और destroy its history.",
+ "labels": "नामपत्र",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave बोर्ड",
+ "leave-board-pop": "Are you sure you want तक leave __boardTitle__? You हो जाएगा हटा दिया से संपूर्ण कार्ड इस पर बोर्ड.",
+ "leaveBoardPopup-title": "Leave बोर्ड ?",
+ "link-card": "Link तक यह कार्ड",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "स्थानांतरित संपूर्ण कार्ड अंदर में यह list",
+ "list-select-cards": "Select संपूर्ण कार्ड अंदर में यह list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "सूची Actions",
+ "swimlaneActionPopup-title": "तैरन Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import एक Trello कार्ड",
+ "listMorePopup-title": "More",
+ "link-list": "Link तक यह list",
+ "list-delete-pop": "All actions हो जाएगा हटा दिया से the activity feed और you won't be able तक recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "तैरन",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "सदस्य व्यवस्था",
+ "members": "सदस्य",
+ "menu": "Menu",
+ "move-selection": "स्थानांतरित selection",
+ "moveCardPopup-title": "स्थानांतरित कार्ड",
+ "moveCardToBottom-title": "स्थानांतरित तक Bottom",
+ "moveCardToTop-title": "स्थानांतरित तक Top",
+ "moveSelectionPopup-title": "स्थानांतरित selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "आप किसी भी परिवर्तन के अधिसूचित नहीं किया जाएगा अंदर में यह बोर्ड",
+ "my-boards": "My बोर्ड",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can आलोकन और संपादित करें कार्ड. Can't change व्यवस्था.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates तक any कार्ड you participate as creater or सदस्य",
+ "notify-watch": "Receive updates तक any बोर्ड, lists, or कार्ड you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "यह page may be private. You may be able तक आलोकन it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page नहीं मिला.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file तक it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "यह बोर्ड is private. Only people संकलित तक the बोर्ड can आलोकन और संपादित करें it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "यह बोर्ड is public. It's visible तक anyone साथ में the link और will show up अंदर में गूगल की तरह खोज इंजन । केवल लोग संकलित तक बोर्ड संपादित कर सकते हैं.",
+ "quick-access-description": "Star एक बोर्ड तक जोड़ें एक shortcut अंदर में यह पट्टी .",
+ "remove-cover": "हटाएँ Cover",
+ "remove-from-board": "हटाएँ से बोर्ड",
+ "remove-label": "हटाएँ Label",
+ "listDeletePopup-title": "मिटाएँ सूची ?",
+ "remove-member": "हटाएँ सदस्य",
+ "remove-member-from-card": "हटाएँ से कार्ड",
+ "remove-member-pop": "हटाएँ __name__ (__username__) से __boardTitle__? इस बोर्ड पर सभी कार्ड से सदस्य हटा दिया जाएगा। उन्हें एक अधिसूचना प्राप्त होगी।",
+ "removeMemberPopup-title": "हटाएँ सदस्य?",
+ "rename": "Rename",
+ "rename-board": "Rename बोर्ड",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search से कार्ड titles और descriptions इस पर बोर्ड",
+ "search-example": "Text तक search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set एक limit for the maximum number of tasks अंदर में यह list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself तक current कार्ड",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete सदस्य",
+ "shortcut-clear-filters": "Clear संपूर्ण filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my कार्ड",
+ "shortcut-show-shortcuts": "Bring up यह shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle बोर्ड Sidebar",
+ "show-cards-minimum-count": "Show कार्ड count if सूची contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click तक star यह बोर्ड. It will show up at top of your बोर्डों list.",
+ "starred-boards": "Starred बोर्ड",
+ "starred-boards-description": "Starred बोर्डों show up at the top of your बोर्डों list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "यह बोर्ड",
+ "this-card": "यह कार्ड",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime कार्ड",
+ "has-spenttime-cards": "Has spent time कार्ड",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You हो जाएगा notified of any changes तक those कार्ड you are involved as creator or सदस्य.",
+ "type": "Type",
+ "unassign-member": "Unassign सदस्य",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "आलोकन it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You हो जाएगा notified of any change अंदर में यह बोर्ड",
+ "welcome-board": "Welcome बोर्ड",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "कार्ड का खाका",
+ "list-templates-swimlane": "सूची का खाका",
+ "board-templates-swimlane": "बोर्ड का खाका",
+ "what-to-do": "What do you want तक do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks अंदर में यह सूची is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please स्थानांतरित some tasks out of यह list, or set एक higher WIP limit.",
+ "admin-panel": "व्यवस्थापक Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To बोर्ड(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send एक test email तक yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ प्रेषित you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully प्रेषित an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized तक आलोकन यह page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show यह field on कार्ड",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose संपूर्ण lists, कार्ड और actions associated साथ में यह बोर्ड.",
+ "delete-board-confirm-popup": "All lists, कार्ड,नामपत्र , और activities हो जाएगा deleted और you won't be able तक recover the बोर्ड contents. There is no undo.",
+ "boardDeletePopup-title": "मिटाएँ बोर्ड?",
+ "delete-board": "मिटाएँ बोर्ड",
+ "default-subtasks-board": "Subtasks for __board__ बोर्ड",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks व्यवस्था",
+ "boardSubtaskSettingsPopup-title": "बोर्ड Subtasks व्यवस्था",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks तक यह बोर्ड:",
+ "deposit-subtasks-list": "Landing सूची for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent अंदर में minicard:",
+ "prefix-with-full-path": "Prefix साथ में full path",
+ "prefix-with-parent": "Prefix साथ में parent",
+ "subtext-with-full-path": "Subtext साथ में full path",
+ "subtext-with-parent": "Subtext साथ में parent",
+ "change-card-parent": "Change कार्ड's parent",
+ "parent-card": "Parent कार्ड",
+ "source-board": "Source बोर्ड",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "संकलित label '%s' तक %s",
+ "activity-removed-label": "हटा दिया label '%s' से %s",
+ "activity-delete-attach": "deleted an संलग्नक से %s",
+ "activity-added-label-card": "संकलित label '%s'",
+ "activity-removed-label-card": "हटा दिया label '%s'",
+ "activity-delete-attach-card": "deleted an संलग्नक",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "जोड़ें trigger",
+ "r-add-action": "जोड़ें action",
+ "r-board-rules": "बोर्ड rules",
+ "r-add-rule": "जोड़ें rule",
+ "r-view-rule": "आलोकन rule",
+ "r-delete-rule": "मिटाएँ rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "हटा दिया from",
+ "r-the-board": "the बोर्ड",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "स्थानांतरित to",
+ "r-moved-from": "स्थानांतरित from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a कार्ड",
+ "r-when-a-label-is": "जब एक नामपत्र है",
+ "r-when-the-label": "जब नामपत्र है",
+ "r-list-name": "list name",
+ "r-when-a-member": "जब एक सदस्य is",
+ "r-when-the-member": "जब the सदस्य",
+ "r-name": "name",
+ "r-when-a-attach": "जब an संलग्नक",
+ "r-when-a-checklist": "जब एक चिह्नांकन-सूची is",
+ "r-when-the-checklist": "जब the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "जब एक चिह्नांकन-सूची विषय is",
+ "r-when-the-item": "जब the चिह्नांकन-सूची item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "स्थानांतरित कार्ड to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "संग्रह में ले जाएं",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "कार्ड",
+ "r-add": "जोड़ें",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "हटाएँ संपूर्ण सदस्य से the कार्ड",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "स्थानांतरित कार्ड तक top of its list",
+ "r-d-move-to-top-spec": "स्थानांतरित कार्ड तक top of list",
+ "r-d-move-to-bottom-gen": "स्थानांतरित कार्ड तक bottom of its list",
+ "r-d-move-to-bottom-spec": "स्थानांतरित कार्ड तक bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "जोड़ें label",
+ "r-d-remove-label": "हटाएँ label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "जोड़ें सदस्य",
+ "r-d-remove-member": "हटाएँ सदस्य",
+ "r-d-remove-all-member": "हटाएँ संपूर्ण सदस्य",
+ "r-d-check-all": "Check संपूर्ण items of एक list",
+ "r-d-uncheck-all": "Uncheck संपूर्ण items of एक list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "जोड़ें checklist",
+ "r-d-remove-checklist": "हटाएँ checklist",
+ "r-by": "by",
+ "r-add-checklist": "जोड़ें checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "जब एक कार्ड is स्थानांतरित तक another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/hu.i18n.json b/i18n/hu.i18n.json
index 8d163cbb..3fef808d 100644
--- a/i18n/hu.i18n.json
+++ b/i18n/hu.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Elfogadás",
- "act-activity-notify": "Tevékenység értesítés",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Műveletek",
- "activities": "Tevékenységek",
- "activity": "Tevékenység",
- "activity-added": "%s hozzáadva ehhez: %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "%s mellékletet csatolt a kártyához: %s",
- "activity-created": "%s létrehozva",
- "activity-customfield-created": "létrehozta a(z) %s egyéni mezőt",
- "activity-excluded": "%s kizárva innen: %s",
- "activity-imported": "%s importálva ebbe: %s, innen: %s",
- "activity-imported-board": "%s importálva innen: %s",
- "activity-joined": "%s csatlakozott",
- "activity-moved": "%s áthelyezve: %s → %s",
- "activity-on": "ekkor: %s",
- "activity-removed": "%s eltávolítva innen: %s",
- "activity-sent": "%s elküldve ide: %s",
- "activity-unjoined": "%s kilépett a csoportból",
- "activity-subtask-added": "Alfeladat hozzáadva ehhez: %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "ellenőrzőlista hozzáadva ehhez: %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "ellenőrzőlista elem hozzáadva ehhez: „%s”, ebben: %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Hozzáadás",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Melléklet hozzáadása",
- "add-board": "Tábla hozzáadása",
- "add-card": "Kártya hozzáadása",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Alfeladat hozzáadása",
- "add-checklist": "Ellenőrzőlista hozzáadása",
- "add-checklist-item": "Elem hozzáadása az ellenőrzőlistához",
- "add-cover": "Borító hozzáadása",
- "add-label": "Címke hozzáadása",
- "add-list": "Lista hozzáadása",
- "add-members": "Tagok hozzáadása",
- "added": "Hozzáadva",
- "addMemberPopup-title": "Tagok",
- "admin": "Adminisztrátor",
- "admin-desc": "Megtekintheti és szerkesztheti a kártyákat, eltávolíthat tagokat, valamint megváltoztathatja a tábla beállításait.",
- "admin-announcement": "Bejelentés",
- "admin-announcement-active": "Bekapcsolt rendszerszintű bejelentés",
- "admin-announcement-title": "Bejelentés az adminisztrátortól",
- "all-boards": "Összes tábla",
- "and-n-other-card": "És __count__ egyéb kártya",
- "and-n-other-card_plural": "És __count__ egyéb kártya",
- "apply": "Alkalmaz",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Mozgatás az archívumba",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archiválás",
- "archived-boards": "Boards in Archive",
- "restore-board": "Tábla visszaállítása",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archiválás",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Tag hozzárendelése",
- "attached": "csatolva",
- "attachment": "Melléklet",
- "attachment-delete-pop": "A melléklet törlése végeleges. Nincs visszaállítás.",
- "attachmentDeletePopup-title": "Törli a mellékletet?",
- "attachments": "Mellékletek",
- "auto-watch": "Táblák automatikus megtekintése, amikor létrejönnek",
- "avatar-too-big": "Az avatár túl nagy (legfeljebb 70 KB)",
- "back": "Vissza",
- "board-change-color": "Szín megváltoztatása",
- "board-nb-stars": "%s csillag",
- "board-not-found": "A tábla nem található",
- "board-private-info": "Ez a tábla legyen <strong>személyes</strong>.",
- "board-public-info": "Ez a tábla legyen <strong>nyilvános</strong>.",
- "boardChangeColorPopup-title": "Tábla hátterének megváltoztatása",
- "boardChangeTitlePopup-title": "Tábla átnevezése",
- "boardChangeVisibilityPopup-title": "Láthatóság megváltoztatása",
- "boardChangeWatchPopup-title": "Megfigyelés megváltoztatása",
- "boardMenuPopup-title": "Tábla beállítások",
- "boards": "Táblák",
- "board-view": "Tábla nézet",
- "board-view-cal": "Naptár",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Listák",
- "bucket-example": "Mint például „Bakancslista”",
- "cancel": "Mégse",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Ez a kártya %s hozzászólást tartalmaz.",
- "card-delete-notice": "A törlés végleges. Az összes műveletet elveszíti, amely ehhez a kártyához tartozik.",
- "card-delete-pop": "Az összes művelet el lesz távolítva a tevékenységlistából, és nem lesz képes többé újra megnyitni a kártyát. Nincs visszaállítási lehetőség.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Esedékes",
- "card-due-on": "Esedékes ekkor",
- "card-spent": "Eltöltött idő",
- "card-edit-attachments": "Mellékletek szerkesztése",
- "card-edit-custom-fields": "Egyéni mezők szerkesztése",
- "card-edit-labels": "Címkék szerkesztése",
- "card-edit-members": "Tagok szerkesztése",
- "card-labels-title": "A kártya címkéinek megváltoztatása.",
- "card-members-title": "A tábla tagjainak hozzáadása vagy eltávolítása a kártyáról.",
- "card-start": "Kezdés",
- "card-start-on": "Kezdés ekkor",
- "cardAttachmentsPopup-title": "Innen csatolva",
- "cardCustomField-datePopup-title": "Dátum megváltoztatása",
- "cardCustomFieldsPopup-title": "Egyéni mezők szerkesztése",
- "cardDeletePopup-title": "Törli a kártyát?",
- "cardDetailsActionsPopup-title": "Kártyaműveletek",
- "cardLabelsPopup-title": "Címkék",
- "cardMembersPopup-title": "Tagok",
- "cardMorePopup-title": "Több",
- "cardTemplatePopup-title": "Create template",
- "cards": "Kártyák",
- "cards-count": "Kártyák",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Változtatás",
- "change-avatar": "Avatár megváltoztatása",
- "change-password": "Jelszó megváltoztatása",
- "change-permissions": "Jogosultságok megváltoztatása",
- "change-settings": "Beállítások megváltoztatása",
- "changeAvatarPopup-title": "Avatár megváltoztatása",
- "changeLanguagePopup-title": "Nyelv megváltoztatása",
- "changePasswordPopup-title": "Jelszó megváltoztatása",
- "changePermissionsPopup-title": "Jogosultságok megváltoztatása",
- "changeSettingsPopup-title": "Beállítások megváltoztatása",
- "subtasks": "Alfeladat",
- "checklists": "Ellenőrzőlisták",
- "click-to-star": "Kattintson a tábla csillagozásához.",
- "click-to-unstar": "Kattintson a tábla csillagának eltávolításához.",
- "clipboard": "Vágólap vagy fogd és vidd",
- "close": "Bezárás",
- "close-board": "Tábla bezárása",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "fekete",
- "color-blue": "kék",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "zöld",
- "color-indigo": "indigo",
- "color-lime": "citrus",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "narancssárga",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "rózsaszín",
- "color-plum": "plum",
- "color-purple": "lila",
- "color-red": "piros",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "égszínkék",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "sárga",
- "unset-color": "Unset",
- "comment": "Megjegyzés",
- "comment-placeholder": "Megjegyzés írása",
- "comment-only": "Csak megjegyzés",
- "comment-only-desc": "Csak megjegyzést írhat a kártyákhoz.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Számítógép",
- "confirm-subtask-delete-dialog": "Biztosan törölni szeretnél az alfeladatot?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Kártya hivatkozásának másolása a vágólapra",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Keresés",
- "copyCardPopup-title": "Kártya másolása",
- "copyChecklistToManyCardsPopup-title": "Ellenőrzőlista sablon másolása több kártyára",
- "copyChecklistToManyCardsPopup-instructions": "A célkártyák címe és a leírások ebben a JSON formátumban",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Első kártya címe\", \"description\":\"Első kártya leírása\"}, {\"title\":\"Második kártya címe\",\"description\":\"Második kártya leírása\"},{\"title\":\"Utolsó kártya címe\",\"description\":\"Utolsó kártya leírása\"} ]",
- "create": "Létrehozás",
- "createBoardPopup-title": "Tábla létrehozása",
- "chooseBoardSourcePopup-title": "Tábla importálása",
- "createLabelPopup-title": "Címke létrehozása",
- "createCustomField": "Mező létrehozása",
- "createCustomFieldPopup-title": "Mező létrehozása",
- "current": "jelenlegi",
- "custom-field-delete-pop": "Nincs visszavonás. Ez el fogja távolítani az egyéni mezőt az összes kártyáról, és megsemmisíti az előzményeit.",
- "custom-field-checkbox": "Jelölőnégyzet",
- "custom-field-date": "Dátum",
- "custom-field-dropdown": "Legördülő lista",
- "custom-field-dropdown-none": "(nincs)",
- "custom-field-dropdown-options": "Lista lehetőségei",
- "custom-field-dropdown-options-placeholder": "Nyomja meg az Enter billentyűt több lehetőség hozzáadásához",
- "custom-field-dropdown-unknown": "(ismeretlen)",
- "custom-field-number": "Szám",
- "custom-field-text": "Szöveg",
- "custom-fields": "Egyéni mezők",
- "date": "Dátum",
- "decline": "Elutasítás",
- "default-avatar": "Alapértelmezett avatár",
- "delete": "Törlés",
- "deleteCustomFieldPopup-title": "Törli az egyéni mezőt?",
- "deleteLabelPopup-title": "Törli a címkét?",
- "description": "Leírás",
- "disambiguateMultiLabelPopup-title": "Címkeművelet egyértelműsítése",
- "disambiguateMultiMemberPopup-title": "Tagművelet egyértelműsítése",
- "discard": "Eldobás",
- "done": "Kész",
- "download": "Letöltés",
- "edit": "Szerkesztés",
- "edit-avatar": "Avatár megváltoztatása",
- "edit-profile": "Profil szerkesztése",
- "edit-wip-limit": "WIP korlát szerkesztése",
- "soft-wip-limit": "Gyenge WIP korlát",
- "editCardStartDatePopup-title": "Kezdődátum megváltoztatása",
- "editCardDueDatePopup-title": "Esedékesség dátumának megváltoztatása",
- "editCustomFieldPopup-title": "Mező szerkesztése",
- "editCardSpentTimePopup-title": "Eltöltött idő megváltoztatása",
- "editLabelPopup-title": "Címke megváltoztatása",
- "editNotificationPopup-title": "Értesítés szerkesztése",
- "editProfilePopup-title": "Profil szerkesztése",
- "email": "E-mail",
- "email-enrollAccount-subject": "Létrejött a profilja a következő oldalon: __siteName__",
- "email-enrollAccount-text": "Kedves __user__!\n\nA szolgáltatás használatának megkezdéséhez egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
- "email-fail": "Az e-mail küldése nem sikerült",
- "email-fail-text": "Hiba az e-mail küldésének kísérlete közben",
- "email-invalid": "Érvénytelen e-mail",
- "email-invite": "Meghívás e-mailben",
- "email-invite-subject": "__inviter__ egy meghívást küldött Önnek",
- "email-invite-text": "Kedves __user__!\n\n__inviter__ meghívta Önt, hogy csatlakozzon a(z) „__board__” táblán történő együttműködéshez.\n\nKattintson az alábbi hivatkozásra:\n\n__url__\n\nKöszönjük.",
- "email-resetPassword-subject": "Jelszó visszaállítása ezen az oldalon: __siteName__",
- "email-resetPassword-text": "Kedves __user__!\n\nA jelszava visszaállításához egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
- "email-sent": "E-mail elküldve",
- "email-verifyEmail-subject": "Igazolja vissza az e-mail címét a következő oldalon: __siteName__",
- "email-verifyEmail-text": "Kedves __user__!\n\nAz e-mail fiókjának visszaigazolásához egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
- "enable-wip-limit": "WIP korlát engedélyezése",
- "error-board-doesNotExist": "Ez a tábla nem létezik",
- "error-board-notAdmin": "A tábla adminisztrátorának kell lennie, hogy ezt megtehesse",
- "error-board-notAMember": "A tábla tagjának kell lennie, hogy ezt megtehesse",
- "error-json-malformed": "A szöveg nem érvényes JSON",
- "error-json-schema": "A JSON adatok nem a helyes formátumban tartalmazzák a megfelelő információkat",
- "error-list-doesNotExist": "Ez a lista nem létezik",
- "error-user-doesNotExist": "Ez a felhasználó nem létezik",
- "error-user-notAllowSelf": "Nem hívhatja meg saját magát",
- "error-user-notCreated": "Ez a felhasználó nincs létrehozva",
- "error-username-taken": "Ez a felhasználónév már foglalt",
- "error-email-taken": "Az e-mail már foglalt",
- "export-board": "Tábla exportálása",
- "filter": "Szűrő",
- "filter-cards": "Kártyák szűrése",
- "filter-clear": "Szűrő törlése",
- "filter-no-label": "Nincs címke",
- "filter-no-member": "Nincs tag",
- "filter-no-custom-fields": "Nincsenek egyéni mezők",
- "filter-on": "Szűrő bekapcsolva",
- "filter-on-desc": "A kártyaszűrés be van kapcsolva ezen a táblán. Kattintson ide a szűrő szerkesztéséhez.",
- "filter-to-selection": "Szűrés a kijelöléshez",
- "advanced-filter-label": "Speciális szűrő",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Teljes név",
- "header-logo-title": "Vissza a táblák oldalára.",
- "hide-system-messages": "Rendszerüzenetek elrejtése",
- "headerBarCreateBoardPopup-title": "Tábla létrehozása",
- "home": "Kezdőlap",
- "import": "Importálás",
- "link": "Link",
- "import-board": "tábla importálása",
- "import-board-c": "Tábla importálása",
- "import-board-title-trello": "Tábla importálása a Trello oldalról",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Az importált tábla törölni fogja a táblán lévő összes meglévő adatot, és kicseréli az importált táblával.",
- "from-trello": "A Trello oldalról",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "A Trello tábláján menjen a „Menü”, majd a „Több”, „Nyomtatás és exportálás”, „JSON exportálása” menüpontokra, és másolja ki az eredményül kapott szöveget.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Illessze be ide az érvényes JSON adatokat",
- "import-map-members": "Tagok leképezése",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Tagok leképezésének vizsgálata",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Verzió",
- "initials": "Kezdőbetűk",
- "invalid-date": "Érvénytelen dátum",
- "invalid-time": "Érvénytelen idő",
- "invalid-user": "Érvénytelen felhasználó",
- "joined": "csatlakozott",
- "just-invited": "Éppen most hívták meg erre a táblára",
- "keyboard-shortcuts": "Gyorsbillentyűk",
- "label-create": "Címke létrehozása",
- "label-default": "%s címke (alapértelmezett)",
- "label-delete-pop": "Nincs visszavonás. Ez el fogja távolítani ezt a címkét az összes kártyáról, és törli az előzményeit.",
- "labels": "Címkék",
- "language": "Nyelv",
- "last-admin-desc": "Nem változtathatja meg a szerepeket, mert legalább egy adminisztrátora szükség van.",
- "leave-board": "Tábla elhagyása",
- "leave-board-pop": "Biztosan el szeretné hagyni ezt a táblát: __boardTitle__? El lesz távolítva a táblán lévő összes kártyáról.",
- "leaveBoardPopup-title": "Elhagyja a táblát?",
- "link-card": "Összekapcsolás ezzel a kártyával",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "A listán lévő összes kártya áthelyezése",
- "list-select-cards": "A listán lévő összes kártya kiválasztása",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Műveletek felsorolása",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Trello kártya importálása",
- "listMorePopup-title": "Több",
- "link-list": "Összekapcsolás ezzel a listával",
- "list-delete-pop": "Az összes művelet el lesz távolítva a tevékenységlistából, és nem lesz lehetősége visszaállítani a listát. Nincs visszavonás.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Listák",
- "swimlanes": "Swimlanes",
- "log-out": "Kijelentkezés",
- "log-in": "Bejelentkezés",
- "loginPopup-title": "Bejelentkezés",
- "memberMenuPopup-title": "Tagok beállításai",
- "members": "Tagok",
- "menu": "Menü",
- "move-selection": "Kijelölés áthelyezése",
- "moveCardPopup-title": "Kártya áthelyezése",
- "moveCardToBottom-title": "Áthelyezés az aljára",
- "moveCardToTop-title": "Áthelyezés a tetejére",
- "moveSelectionPopup-title": "Kijelölés áthelyezése",
- "multi-selection": "Többszörös kijelölés",
- "multi-selection-on": "Többszörös kijelölés bekapcsolva",
- "muted": "Némítva",
- "muted-info": "Soha sem lesz értesítve a táblán lévő semmilyen változásról.",
- "my-boards": "Saját tábláim",
- "name": "Név",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Nincs találat",
- "normal": "Normál",
- "normal-desc": "Megtekintheti és szerkesztheti a kártyákat. Nem változtathatja meg a beállításokat.",
- "not-accepted-yet": "A meghívás még nincs elfogadva",
- "notify-participate": "Frissítések fogadása bármely kártyánál, amelynél létrehozóként vagy tagként vesz részt",
- "notify-watch": "Frissítések fogadása bármely táblánál, listánál vagy kártyánál, amelyet megtekint",
- "optional": "opcionális",
- "or": "vagy",
- "page-maybe-private": "Ez az oldal személyes lehet. Esetleg megtekintheti, ha <a href='%s'>bejelentkezik</a>.",
- "page-not-found": "Az oldal nem található.",
- "password": "Jelszó",
- "paste-or-dragdrop": "illessze be, vagy fogd és vidd módon húzza ide a képfájlt (csak képeket)",
- "participating": "Részvétel",
- "preview": "Előnézet",
- "previewAttachedImagePopup-title": "Előnézet",
- "previewClipboardImagePopup-title": "Előnézet",
- "private": "Személyes",
- "private-desc": "Ez a tábla személyes. Csak a táblához hozzáadott emberek tekinthetik meg és szerkeszthetik.",
- "profile": "Profil",
- "public": "Nyilvános",
- "public-desc": "Ez a tábla nyilvános. A hivatkozás birtokában bárki számára látható, és megjelenik az olyan keresőmotorokban, mint például a Google. Csak a táblához hozzáadott emberek szerkeszthetik.",
- "quick-access-description": "Csillagozzon meg egy táblát egy gyors hivatkozás hozzáadásához ebbe a sávba.",
- "remove-cover": "Borító eltávolítása",
- "remove-from-board": "Eltávolítás a tábláról",
- "remove-label": "Címke eltávolítása",
- "listDeletePopup-title": "Törli a listát?",
- "remove-member": "Tag eltávolítása",
- "remove-member-from-card": "Eltávolítás a kártyáról",
- "remove-member-pop": "Eltávolítja __name__ (__username__) felhasználót a tábláról: __boardTitle__? A tag el lesz távolítva a táblán lévő összes kártyáról. Értesítést fog kapni erről.",
- "removeMemberPopup-title": "Eltávolítja a tagot?",
- "rename": "Átnevezés",
- "rename-board": "Tábla átnevezése",
- "restore": "Visszaállítás",
- "save": "Mentés",
- "search": "Keresés",
- "rules": "Rules",
- "search-cards": "Keresés a táblán lévő kártyák címében illetve leírásában",
- "search-example": "keresőkifejezés",
- "select-color": "Szín kiválasztása",
- "set-wip-limit-value": "Korlát beállítása a listán lévő feladatok legnagyobb számához",
- "setWipLimitPopup-title": "WIP korlát beállítása",
- "shortcut-assign-self": "Önmaga hozzárendelése a jelenlegi kártyához",
- "shortcut-autocomplete-emoji": "Emodzsi automatikus kiegészítése",
- "shortcut-autocomplete-members": "Tagok automatikus kiegészítése",
- "shortcut-clear-filters": "Összes szűrő törlése",
- "shortcut-close-dialog": "Párbeszédablak bezárása",
- "shortcut-filter-my-cards": "Kártyáim szűrése",
- "shortcut-show-shortcuts": "A hivatkozási lista előre hozása",
- "shortcut-toggle-filterbar": "Szűrő oldalsáv ki- és bekapcsolása",
- "shortcut-toggle-sidebar": "Tábla oldalsáv ki- és bekapcsolása",
- "show-cards-minimum-count": "Kártyaszámok megjelenítése, ha a lista többet tartalmaz mint",
- "sidebar-open": "Oldalsáv megnyitása",
- "sidebar-close": "Oldalsáv bezárása",
- "signupPopup-title": "Fiók létrehozása",
- "star-board-title": "Kattintson a tábla csillagozásához. Meg fog jelenni a táblalistája tetején.",
- "starred-boards": "Csillagozott táblák",
- "starred-boards-description": "A csillagozott táblák megjelennek a táblalistája tetején.",
- "subscribe": "Feliratkozás",
- "team": "Csapat",
- "this-board": "ez a tábla",
- "this-card": "ez a kártya",
- "spent-time-hours": "Eltöltött idő (óra)",
- "overtime-hours": "Túlóra (óra)",
- "overtime": "Túlóra",
- "has-overtime-cards": "Van túlórás kártyája",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Idő",
- "title": "Cím",
- "tracking": "Követés",
- "tracking-info": "Értesítve lesz az összes olyan kártya változásáról, amelyen létrehozóként vagy tagként vesz részt.",
- "type": "Típus",
- "unassign-member": "Tag hozzárendelésének megszüntetése",
- "unsaved-description": "Van egy mentetlen leírása.",
- "unwatch": "Megfigyelés megszüntetése",
- "upload": "Feltöltés",
- "upload-avatar": "Egy avatár feltöltése",
- "uploaded-avatar": "Egy avatár feltöltve",
- "username": "Felhasználónév",
- "view-it": "Megtekintés",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Megfigyelés",
- "watching": "Megfigyelés",
- "watching-info": "Értesítve lesz a táblán lévő összes változásról",
- "welcome-board": "Üdvözlő tábla",
- "welcome-swimlane": "1. mérföldkő",
- "welcome-list1": "Alapok",
- "welcome-list2": "Speciális",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Mit szeretne tenni?",
- "wipLimitErrorPopup-title": "Érvénytelen WIP korlát",
- "wipLimitErrorPopup-dialog-pt1": "A listán lévő feladatok száma magasabb a meghatározott WIP korlátnál.",
- "wipLimitErrorPopup-dialog-pt2": "Helyezzen át néhány feladatot a listáról, vagy állítson be magasabb WIP korlátot.",
- "admin-panel": "Adminisztrációs panel",
- "settings": "Beállítások",
- "people": "Emberek",
- "registration": "Regisztráció",
- "disable-self-registration": "Önregisztráció letiltása",
- "invite": "Meghívás",
- "invite-people": "Emberek meghívása",
- "to-boards": "Táblákhoz",
- "email-addresses": "E-mail címek",
- "smtp-host-description": "Az SMTP kiszolgáló címe, amely az e-maileket kezeli.",
- "smtp-port-description": "Az SMTP kiszolgáló által használt port a kimenő e-mailekhez.",
- "smtp-tls-description": "TLS támogatás engedélyezése az SMTP kiszolgálónál",
- "smtp-host": "SMTP kiszolgáló",
- "smtp-port": "SMTP port",
- "smtp-username": "Felhasználónév",
- "smtp-password": "Jelszó",
- "smtp-tls": "TLS támogatás",
- "send-from": "Feladó",
- "send-smtp-test": "Teszt e-mail küldése magamnak",
- "invitation-code": "Meghívási kód",
- "email-invite-register-subject": "__inviter__ egy meghívás küldött Önnek",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Sikeresen elküldött egy e-mailt",
- "error-invitation-code-not-exist": "A meghívási kód nem létezik",
- "error-notAuthorized": "Nincs jogosultsága az oldal megtekintéséhez.",
- "outgoing-webhooks": "Kimenő webhurkok",
- "outgoingWebhooksPopup-title": "Kimenő webhurkok",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "Új kimenő webhurok",
- "no-name": "(Ismeretlen)",
- "Node_version": "Node verzió",
- "OS_Arch": "Operációs rendszer architektúrája",
- "OS_Cpus": "Operációs rendszer CPU száma",
- "OS_Freemem": "Operációs rendszer szabad memóriája",
- "OS_Loadavg": "Operációs rendszer átlagos terhelése",
- "OS_Platform": "Operációs rendszer platformja",
- "OS_Release": "Operációs rendszer kiadása",
- "OS_Totalmem": "Operációs rendszer összes memóriája",
- "OS_Type": "Operációs rendszer típusa",
- "OS_Uptime": "Operációs rendszer üzemideje",
- "days": "days",
- "hours": "óra",
- "minutes": "perc",
- "seconds": "másodperc",
- "show-field-on-card": "A mező megjelenítése a kártyán",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Igen",
- "no": "Nem",
- "accounts": "Fiókok",
- "accounts-allowEmailChange": "E-mail megváltoztatásának engedélyezése",
- "accounts-allowUserNameChange": "Felhasználónév megváltoztatásának engedélyezése",
- "createdAt": "Létrehozva",
- "verified": "Ellenőrizve",
- "active": "Aktív",
- "card-received": "Érkezett",
- "card-received-on": "Ekkor érkezett",
- "card-end": "Befejezés",
- "card-end-on": "Befejeződik ekkor",
- "editCardReceivedDatePopup-title": "Érkezési dátum megváltoztatása",
- "editCardEndDatePopup-title": "Befejezési dátum megváltoztatása",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Alfeladat beállítások",
- "boardSubtaskSettingsPopup-title": "Tábla alfeladat beállítások",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Archívumba helyezve",
- "r-unarchived": "Helyreállítva az archívumból",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Mozgatás az archívumba",
- "r-unarchive": "Helyreállítás az archívumból",
- "r-card": "card",
- "r-add": "Hozzáadás",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "ellenőrzőlistából",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Elem ellenőrzése",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "ellenőrzőlistából",
- "r-d-add-checklist": "Ellenőrzőlista hozzáadása",
- "r-d-remove-checklist": "Ellenőrzőlista eltávolítása",
- "r-by": "által",
- "r-add-checklist": "Ellenőrzőlista hozzáadása",
- "r-with-items": "elemekkel",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "Amikor egy kártya másik listába kerül",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Hitelesítési mód",
- "authentication-type": "Hitelesítés típusa",
- "custom-product-name": "Saját terméknév",
- "layout": "Elrendezés",
- "hide-logo": "Logo elrejtése",
- "add-custom-html-after-body-start": "Egyedi HTML hozzáadása <body> után",
- "add-custom-html-before-body-end": "1",
- "error-undefined": "Valami hiba történt",
- "error-ldap-login": "Hiba történt bejelentkezés közben",
- "display-authentication-method": "Hitelelesítési mód mutatása",
- "default-authentication-method": "Alapértelmezett hitelesítési mód",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Elfogadás",
+ "act-activity-notify": "Tevékenység értesítés",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Műveletek",
+ "activities": "Tevékenységek",
+ "activity": "Tevékenység",
+ "activity-added": "%s hozzáadva ehhez: %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "%s mellékletet csatolt a kártyához: %s",
+ "activity-created": "%s létrehozva",
+ "activity-customfield-created": "létrehozta a(z) %s egyéni mezőt",
+ "activity-excluded": "%s kizárva innen: %s",
+ "activity-imported": "%s importálva ebbe: %s, innen: %s",
+ "activity-imported-board": "%s importálva innen: %s",
+ "activity-joined": "%s csatlakozott",
+ "activity-moved": "%s áthelyezve: %s → %s",
+ "activity-on": "ekkor: %s",
+ "activity-removed": "%s eltávolítva innen: %s",
+ "activity-sent": "%s elküldve ide: %s",
+ "activity-unjoined": "%s kilépett a csoportból",
+ "activity-subtask-added": "Alfeladat hozzáadva ehhez: %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "ellenőrzőlista hozzáadva ehhez: %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "ellenőrzőlista elem hozzáadva ehhez: „%s”, ebben: %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Hozzáadás",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Melléklet hozzáadása",
+ "add-board": "Tábla hozzáadása",
+ "add-card": "Kártya hozzáadása",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Alfeladat hozzáadása",
+ "add-checklist": "Ellenőrzőlista hozzáadása",
+ "add-checklist-item": "Elem hozzáadása az ellenőrzőlistához",
+ "add-cover": "Borító hozzáadása",
+ "add-label": "Címke hozzáadása",
+ "add-list": "Lista hozzáadása",
+ "add-members": "Tagok hozzáadása",
+ "added": "Hozzáadva",
+ "addMemberPopup-title": "Tagok",
+ "admin": "Adminisztrátor",
+ "admin-desc": "Megtekintheti és szerkesztheti a kártyákat, eltávolíthat tagokat, valamint megváltoztathatja a tábla beállításait.",
+ "admin-announcement": "Bejelentés",
+ "admin-announcement-active": "Bekapcsolt rendszerszintű bejelentés",
+ "admin-announcement-title": "Bejelentés az adminisztrátortól",
+ "all-boards": "Összes tábla",
+ "and-n-other-card": "És __count__ egyéb kártya",
+ "and-n-other-card_plural": "És __count__ egyéb kártya",
+ "apply": "Alkalmaz",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Mozgatás az archívumba",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archiválás",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Tábla visszaállítása",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archiválás",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Tag hozzárendelése",
+ "attached": "csatolva",
+ "attachment": "Melléklet",
+ "attachment-delete-pop": "A melléklet törlése végeleges. Nincs visszaállítás.",
+ "attachmentDeletePopup-title": "Törli a mellékletet?",
+ "attachments": "Mellékletek",
+ "auto-watch": "Táblák automatikus megtekintése, amikor létrejönnek",
+ "avatar-too-big": "Az avatár túl nagy (legfeljebb 70 KB)",
+ "back": "Vissza",
+ "board-change-color": "Szín megváltoztatása",
+ "board-nb-stars": "%s csillag",
+ "board-not-found": "A tábla nem található",
+ "board-private-info": "Ez a tábla legyen <strong>személyes</strong>.",
+ "board-public-info": "Ez a tábla legyen <strong>nyilvános</strong>.",
+ "boardChangeColorPopup-title": "Tábla hátterének megváltoztatása",
+ "boardChangeTitlePopup-title": "Tábla átnevezése",
+ "boardChangeVisibilityPopup-title": "Láthatóság megváltoztatása",
+ "boardChangeWatchPopup-title": "Megfigyelés megváltoztatása",
+ "boardMenuPopup-title": "Tábla beállítások",
+ "boards": "Táblák",
+ "board-view": "Tábla nézet",
+ "board-view-cal": "Naptár",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Listák",
+ "bucket-example": "Mint például „Bakancslista”",
+ "cancel": "Mégse",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Ez a kártya %s hozzászólást tartalmaz.",
+ "card-delete-notice": "A törlés végleges. Az összes műveletet elveszíti, amely ehhez a kártyához tartozik.",
+ "card-delete-pop": "Az összes művelet el lesz távolítva a tevékenységlistából, és nem lesz képes többé újra megnyitni a kártyát. Nincs visszaállítási lehetőség.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Esedékes",
+ "card-due-on": "Esedékes ekkor",
+ "card-spent": "Eltöltött idő",
+ "card-edit-attachments": "Mellékletek szerkesztése",
+ "card-edit-custom-fields": "Egyéni mezők szerkesztése",
+ "card-edit-labels": "Címkék szerkesztése",
+ "card-edit-members": "Tagok szerkesztése",
+ "card-labels-title": "A kártya címkéinek megváltoztatása.",
+ "card-members-title": "A tábla tagjainak hozzáadása vagy eltávolítása a kártyáról.",
+ "card-start": "Kezdés",
+ "card-start-on": "Kezdés ekkor",
+ "cardAttachmentsPopup-title": "Innen csatolva",
+ "cardCustomField-datePopup-title": "Dátum megváltoztatása",
+ "cardCustomFieldsPopup-title": "Egyéni mezők szerkesztése",
+ "cardDeletePopup-title": "Törli a kártyát?",
+ "cardDetailsActionsPopup-title": "Kártyaműveletek",
+ "cardLabelsPopup-title": "Címkék",
+ "cardMembersPopup-title": "Tagok",
+ "cardMorePopup-title": "Több",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Kártyák",
+ "cards-count": "Kártyák",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Változtatás",
+ "change-avatar": "Avatár megváltoztatása",
+ "change-password": "Jelszó megváltoztatása",
+ "change-permissions": "Jogosultságok megváltoztatása",
+ "change-settings": "Beállítások megváltoztatása",
+ "changeAvatarPopup-title": "Avatár megváltoztatása",
+ "changeLanguagePopup-title": "Nyelv megváltoztatása",
+ "changePasswordPopup-title": "Jelszó megváltoztatása",
+ "changePermissionsPopup-title": "Jogosultságok megváltoztatása",
+ "changeSettingsPopup-title": "Beállítások megváltoztatása",
+ "subtasks": "Alfeladat",
+ "checklists": "Ellenőrzőlisták",
+ "click-to-star": "Kattintson a tábla csillagozásához.",
+ "click-to-unstar": "Kattintson a tábla csillagának eltávolításához.",
+ "clipboard": "Vágólap vagy fogd és vidd",
+ "close": "Bezárás",
+ "close-board": "Tábla bezárása",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "fekete",
+ "color-blue": "kék",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "zöld",
+ "color-indigo": "indigo",
+ "color-lime": "citrus",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "narancssárga",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "rózsaszín",
+ "color-plum": "plum",
+ "color-purple": "lila",
+ "color-red": "piros",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "égszínkék",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "sárga",
+ "unset-color": "Unset",
+ "comment": "Megjegyzés",
+ "comment-placeholder": "Megjegyzés írása",
+ "comment-only": "Csak megjegyzés",
+ "comment-only-desc": "Csak megjegyzést írhat a kártyákhoz.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Számítógép",
+ "confirm-subtask-delete-dialog": "Biztosan törölni szeretnél az alfeladatot?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Kártya hivatkozásának másolása a vágólapra",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Keresés",
+ "copyCardPopup-title": "Kártya másolása",
+ "copyChecklistToManyCardsPopup-title": "Ellenőrzőlista sablon másolása több kártyára",
+ "copyChecklistToManyCardsPopup-instructions": "A célkártyák címe és a leírások ebben a JSON formátumban",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Első kártya címe\", \"description\":\"Első kártya leírása\"}, {\"title\":\"Második kártya címe\",\"description\":\"Második kártya leírása\"},{\"title\":\"Utolsó kártya címe\",\"description\":\"Utolsó kártya leírása\"} ]",
+ "create": "Létrehozás",
+ "createBoardPopup-title": "Tábla létrehozása",
+ "chooseBoardSourcePopup-title": "Tábla importálása",
+ "createLabelPopup-title": "Címke létrehozása",
+ "createCustomField": "Mező létrehozása",
+ "createCustomFieldPopup-title": "Mező létrehozása",
+ "current": "jelenlegi",
+ "custom-field-delete-pop": "Nincs visszavonás. Ez el fogja távolítani az egyéni mezőt az összes kártyáról, és megsemmisíti az előzményeit.",
+ "custom-field-checkbox": "Jelölőnégyzet",
+ "custom-field-date": "Dátum",
+ "custom-field-dropdown": "Legördülő lista",
+ "custom-field-dropdown-none": "(nincs)",
+ "custom-field-dropdown-options": "Lista lehetőségei",
+ "custom-field-dropdown-options-placeholder": "Nyomja meg az Enter billentyűt több lehetőség hozzáadásához",
+ "custom-field-dropdown-unknown": "(ismeretlen)",
+ "custom-field-number": "Szám",
+ "custom-field-text": "Szöveg",
+ "custom-fields": "Egyéni mezők",
+ "date": "Dátum",
+ "decline": "Elutasítás",
+ "default-avatar": "Alapértelmezett avatár",
+ "delete": "Törlés",
+ "deleteCustomFieldPopup-title": "Törli az egyéni mezőt?",
+ "deleteLabelPopup-title": "Törli a címkét?",
+ "description": "Leírás",
+ "disambiguateMultiLabelPopup-title": "Címkeművelet egyértelműsítése",
+ "disambiguateMultiMemberPopup-title": "Tagművelet egyértelműsítése",
+ "discard": "Eldobás",
+ "done": "Kész",
+ "download": "Letöltés",
+ "edit": "Szerkesztés",
+ "edit-avatar": "Avatár megváltoztatása",
+ "edit-profile": "Profil szerkesztése",
+ "edit-wip-limit": "WIP korlát szerkesztése",
+ "soft-wip-limit": "Gyenge WIP korlát",
+ "editCardStartDatePopup-title": "Kezdődátum megváltoztatása",
+ "editCardDueDatePopup-title": "Esedékesség dátumának megváltoztatása",
+ "editCustomFieldPopup-title": "Mező szerkesztése",
+ "editCardSpentTimePopup-title": "Eltöltött idő megváltoztatása",
+ "editLabelPopup-title": "Címke megváltoztatása",
+ "editNotificationPopup-title": "Értesítés szerkesztése",
+ "editProfilePopup-title": "Profil szerkesztése",
+ "email": "E-mail",
+ "email-enrollAccount-subject": "Létrejött a profilja a következő oldalon: __siteName__",
+ "email-enrollAccount-text": "Kedves __user__!\n\nA szolgáltatás használatának megkezdéséhez egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
+ "email-fail": "Az e-mail küldése nem sikerült",
+ "email-fail-text": "Hiba az e-mail küldésének kísérlete közben",
+ "email-invalid": "Érvénytelen e-mail",
+ "email-invite": "Meghívás e-mailben",
+ "email-invite-subject": "__inviter__ egy meghívást küldött Önnek",
+ "email-invite-text": "Kedves __user__!\n\n__inviter__ meghívta Önt, hogy csatlakozzon a(z) „__board__” táblán történő együttműködéshez.\n\nKattintson az alábbi hivatkozásra:\n\n__url__\n\nKöszönjük.",
+ "email-resetPassword-subject": "Jelszó visszaállítása ezen az oldalon: __siteName__",
+ "email-resetPassword-text": "Kedves __user__!\n\nA jelszava visszaállításához egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
+ "email-sent": "E-mail elküldve",
+ "email-verifyEmail-subject": "Igazolja vissza az e-mail címét a következő oldalon: __siteName__",
+ "email-verifyEmail-text": "Kedves __user__!\n\nAz e-mail fiókjának visszaigazolásához egyszerűen kattintson a lenti hivatkozásra.\n\n__url__\n\nKöszönjük.",
+ "enable-wip-limit": "WIP korlát engedélyezése",
+ "error-board-doesNotExist": "Ez a tábla nem létezik",
+ "error-board-notAdmin": "A tábla adminisztrátorának kell lennie, hogy ezt megtehesse",
+ "error-board-notAMember": "A tábla tagjának kell lennie, hogy ezt megtehesse",
+ "error-json-malformed": "A szöveg nem érvényes JSON",
+ "error-json-schema": "A JSON adatok nem a helyes formátumban tartalmazzák a megfelelő információkat",
+ "error-list-doesNotExist": "Ez a lista nem létezik",
+ "error-user-doesNotExist": "Ez a felhasználó nem létezik",
+ "error-user-notAllowSelf": "Nem hívhatja meg saját magát",
+ "error-user-notCreated": "Ez a felhasználó nincs létrehozva",
+ "error-username-taken": "Ez a felhasználónév már foglalt",
+ "error-email-taken": "Az e-mail már foglalt",
+ "export-board": "Tábla exportálása",
+ "filter": "Szűrő",
+ "filter-cards": "Kártyák szűrése",
+ "filter-clear": "Szűrő törlése",
+ "filter-no-label": "Nincs címke",
+ "filter-no-member": "Nincs tag",
+ "filter-no-custom-fields": "Nincsenek egyéni mezők",
+ "filter-on": "Szűrő bekapcsolva",
+ "filter-on-desc": "A kártyaszűrés be van kapcsolva ezen a táblán. Kattintson ide a szűrő szerkesztéséhez.",
+ "filter-to-selection": "Szűrés a kijelöléshez",
+ "advanced-filter-label": "Speciális szűrő",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Teljes név",
+ "header-logo-title": "Vissza a táblák oldalára.",
+ "hide-system-messages": "Rendszerüzenetek elrejtése",
+ "headerBarCreateBoardPopup-title": "Tábla létrehozása",
+ "home": "Kezdőlap",
+ "import": "Importálás",
+ "link": "Link",
+ "import-board": "tábla importálása",
+ "import-board-c": "Tábla importálása",
+ "import-board-title-trello": "Tábla importálása a Trello oldalról",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Az importált tábla törölni fogja a táblán lévő összes meglévő adatot, és kicseréli az importált táblával.",
+ "from-trello": "A Trello oldalról",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "A Trello tábláján menjen a „Menü”, majd a „Több”, „Nyomtatás és exportálás”, „JSON exportálása” menüpontokra, és másolja ki az eredményül kapott szöveget.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Illessze be ide az érvényes JSON adatokat",
+ "import-map-members": "Tagok leképezése",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Tagok leképezésének vizsgálata",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Verzió",
+ "initials": "Kezdőbetűk",
+ "invalid-date": "Érvénytelen dátum",
+ "invalid-time": "Érvénytelen idő",
+ "invalid-user": "Érvénytelen felhasználó",
+ "joined": "csatlakozott",
+ "just-invited": "Éppen most hívták meg erre a táblára",
+ "keyboard-shortcuts": "Gyorsbillentyűk",
+ "label-create": "Címke létrehozása",
+ "label-default": "%s címke (alapértelmezett)",
+ "label-delete-pop": "Nincs visszavonás. Ez el fogja távolítani ezt a címkét az összes kártyáról, és törli az előzményeit.",
+ "labels": "Címkék",
+ "language": "Nyelv",
+ "last-admin-desc": "Nem változtathatja meg a szerepeket, mert legalább egy adminisztrátora szükség van.",
+ "leave-board": "Tábla elhagyása",
+ "leave-board-pop": "Biztosan el szeretné hagyni ezt a táblát: __boardTitle__? El lesz távolítva a táblán lévő összes kártyáról.",
+ "leaveBoardPopup-title": "Elhagyja a táblát?",
+ "link-card": "Összekapcsolás ezzel a kártyával",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "A listán lévő összes kártya áthelyezése",
+ "list-select-cards": "A listán lévő összes kártya kiválasztása",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Műveletek felsorolása",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Trello kártya importálása",
+ "listMorePopup-title": "Több",
+ "link-list": "Összekapcsolás ezzel a listával",
+ "list-delete-pop": "Az összes művelet el lesz távolítva a tevékenységlistából, és nem lesz lehetősége visszaállítani a listát. Nincs visszavonás.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Listák",
+ "swimlanes": "Swimlanes",
+ "log-out": "Kijelentkezés",
+ "log-in": "Bejelentkezés",
+ "loginPopup-title": "Bejelentkezés",
+ "memberMenuPopup-title": "Tagok beállításai",
+ "members": "Tagok",
+ "menu": "Menü",
+ "move-selection": "Kijelölés áthelyezése",
+ "moveCardPopup-title": "Kártya áthelyezése",
+ "moveCardToBottom-title": "Áthelyezés az aljára",
+ "moveCardToTop-title": "Áthelyezés a tetejére",
+ "moveSelectionPopup-title": "Kijelölés áthelyezése",
+ "multi-selection": "Többszörös kijelölés",
+ "multi-selection-on": "Többszörös kijelölés bekapcsolva",
+ "muted": "Némítva",
+ "muted-info": "Soha sem lesz értesítve a táblán lévő semmilyen változásról.",
+ "my-boards": "Saját tábláim",
+ "name": "Név",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Nincs találat",
+ "normal": "Normál",
+ "normal-desc": "Megtekintheti és szerkesztheti a kártyákat. Nem változtathatja meg a beállításokat.",
+ "not-accepted-yet": "A meghívás még nincs elfogadva",
+ "notify-participate": "Frissítések fogadása bármely kártyánál, amelynél létrehozóként vagy tagként vesz részt",
+ "notify-watch": "Frissítések fogadása bármely táblánál, listánál vagy kártyánál, amelyet megtekint",
+ "optional": "opcionális",
+ "or": "vagy",
+ "page-maybe-private": "Ez az oldal személyes lehet. Esetleg megtekintheti, ha <a href='%s'>bejelentkezik</a>.",
+ "page-not-found": "Az oldal nem található.",
+ "password": "Jelszó",
+ "paste-or-dragdrop": "illessze be, vagy fogd és vidd módon húzza ide a képfájlt (csak képeket)",
+ "participating": "Részvétel",
+ "preview": "Előnézet",
+ "previewAttachedImagePopup-title": "Előnézet",
+ "previewClipboardImagePopup-title": "Előnézet",
+ "private": "Személyes",
+ "private-desc": "Ez a tábla személyes. Csak a táblához hozzáadott emberek tekinthetik meg és szerkeszthetik.",
+ "profile": "Profil",
+ "public": "Nyilvános",
+ "public-desc": "Ez a tábla nyilvános. A hivatkozás birtokában bárki számára látható, és megjelenik az olyan keresőmotorokban, mint például a Google. Csak a táblához hozzáadott emberek szerkeszthetik.",
+ "quick-access-description": "Csillagozzon meg egy táblát egy gyors hivatkozás hozzáadásához ebbe a sávba.",
+ "remove-cover": "Borító eltávolítása",
+ "remove-from-board": "Eltávolítás a tábláról",
+ "remove-label": "Címke eltávolítása",
+ "listDeletePopup-title": "Törli a listát?",
+ "remove-member": "Tag eltávolítása",
+ "remove-member-from-card": "Eltávolítás a kártyáról",
+ "remove-member-pop": "Eltávolítja __name__ (__username__) felhasználót a tábláról: __boardTitle__? A tag el lesz távolítva a táblán lévő összes kártyáról. Értesítést fog kapni erről.",
+ "removeMemberPopup-title": "Eltávolítja a tagot?",
+ "rename": "Átnevezés",
+ "rename-board": "Tábla átnevezése",
+ "restore": "Visszaállítás",
+ "save": "Mentés",
+ "search": "Keresés",
+ "rules": "Rules",
+ "search-cards": "Keresés a táblán lévő kártyák címében illetve leírásában",
+ "search-example": "keresőkifejezés",
+ "select-color": "Szín kiválasztása",
+ "set-wip-limit-value": "Korlát beállítása a listán lévő feladatok legnagyobb számához",
+ "setWipLimitPopup-title": "WIP korlát beállítása",
+ "shortcut-assign-self": "Önmaga hozzárendelése a jelenlegi kártyához",
+ "shortcut-autocomplete-emoji": "Emodzsi automatikus kiegészítése",
+ "shortcut-autocomplete-members": "Tagok automatikus kiegészítése",
+ "shortcut-clear-filters": "Összes szűrő törlése",
+ "shortcut-close-dialog": "Párbeszédablak bezárása",
+ "shortcut-filter-my-cards": "Kártyáim szűrése",
+ "shortcut-show-shortcuts": "A hivatkozási lista előre hozása",
+ "shortcut-toggle-filterbar": "Szűrő oldalsáv ki- és bekapcsolása",
+ "shortcut-toggle-sidebar": "Tábla oldalsáv ki- és bekapcsolása",
+ "show-cards-minimum-count": "Kártyaszámok megjelenítése, ha a lista többet tartalmaz mint",
+ "sidebar-open": "Oldalsáv megnyitása",
+ "sidebar-close": "Oldalsáv bezárása",
+ "signupPopup-title": "Fiók létrehozása",
+ "star-board-title": "Kattintson a tábla csillagozásához. Meg fog jelenni a táblalistája tetején.",
+ "starred-boards": "Csillagozott táblák",
+ "starred-boards-description": "A csillagozott táblák megjelennek a táblalistája tetején.",
+ "subscribe": "Feliratkozás",
+ "team": "Csapat",
+ "this-board": "ez a tábla",
+ "this-card": "ez a kártya",
+ "spent-time-hours": "Eltöltött idő (óra)",
+ "overtime-hours": "Túlóra (óra)",
+ "overtime": "Túlóra",
+ "has-overtime-cards": "Van túlórás kártyája",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Idő",
+ "title": "Cím",
+ "tracking": "Követés",
+ "tracking-info": "Értesítve lesz az összes olyan kártya változásáról, amelyen létrehozóként vagy tagként vesz részt.",
+ "type": "Típus",
+ "unassign-member": "Tag hozzárendelésének megszüntetése",
+ "unsaved-description": "Van egy mentetlen leírása.",
+ "unwatch": "Megfigyelés megszüntetése",
+ "upload": "Feltöltés",
+ "upload-avatar": "Egy avatár feltöltése",
+ "uploaded-avatar": "Egy avatár feltöltve",
+ "username": "Felhasználónév",
+ "view-it": "Megtekintés",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Megfigyelés",
+ "watching": "Megfigyelés",
+ "watching-info": "Értesítve lesz a táblán lévő összes változásról",
+ "welcome-board": "Üdvözlő tábla",
+ "welcome-swimlane": "1. mérföldkő",
+ "welcome-list1": "Alapok",
+ "welcome-list2": "Speciális",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Mit szeretne tenni?",
+ "wipLimitErrorPopup-title": "Érvénytelen WIP korlát",
+ "wipLimitErrorPopup-dialog-pt1": "A listán lévő feladatok száma magasabb a meghatározott WIP korlátnál.",
+ "wipLimitErrorPopup-dialog-pt2": "Helyezzen át néhány feladatot a listáról, vagy állítson be magasabb WIP korlátot.",
+ "admin-panel": "Adminisztrációs panel",
+ "settings": "Beállítások",
+ "people": "Emberek",
+ "registration": "Regisztráció",
+ "disable-self-registration": "Önregisztráció letiltása",
+ "invite": "Meghívás",
+ "invite-people": "Emberek meghívása",
+ "to-boards": "Táblákhoz",
+ "email-addresses": "E-mail címek",
+ "smtp-host-description": "Az SMTP kiszolgáló címe, amely az e-maileket kezeli.",
+ "smtp-port-description": "Az SMTP kiszolgáló által használt port a kimenő e-mailekhez.",
+ "smtp-tls-description": "TLS támogatás engedélyezése az SMTP kiszolgálónál",
+ "smtp-host": "SMTP kiszolgáló",
+ "smtp-port": "SMTP port",
+ "smtp-username": "Felhasználónév",
+ "smtp-password": "Jelszó",
+ "smtp-tls": "TLS támogatás",
+ "send-from": "Feladó",
+ "send-smtp-test": "Teszt e-mail küldése magamnak",
+ "invitation-code": "Meghívási kód",
+ "email-invite-register-subject": "__inviter__ egy meghívás küldött Önnek",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Sikeresen elküldött egy e-mailt",
+ "error-invitation-code-not-exist": "A meghívási kód nem létezik",
+ "error-notAuthorized": "Nincs jogosultsága az oldal megtekintéséhez.",
+ "outgoing-webhooks": "Kimenő webhurkok",
+ "outgoingWebhooksPopup-title": "Kimenő webhurkok",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "Új kimenő webhurok",
+ "no-name": "(Ismeretlen)",
+ "Node_version": "Node verzió",
+ "OS_Arch": "Operációs rendszer architektúrája",
+ "OS_Cpus": "Operációs rendszer CPU száma",
+ "OS_Freemem": "Operációs rendszer szabad memóriája",
+ "OS_Loadavg": "Operációs rendszer átlagos terhelése",
+ "OS_Platform": "Operációs rendszer platformja",
+ "OS_Release": "Operációs rendszer kiadása",
+ "OS_Totalmem": "Operációs rendszer összes memóriája",
+ "OS_Type": "Operációs rendszer típusa",
+ "OS_Uptime": "Operációs rendszer üzemideje",
+ "days": "days",
+ "hours": "óra",
+ "minutes": "perc",
+ "seconds": "másodperc",
+ "show-field-on-card": "A mező megjelenítése a kártyán",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Igen",
+ "no": "Nem",
+ "accounts": "Fiókok",
+ "accounts-allowEmailChange": "E-mail megváltoztatásának engedélyezése",
+ "accounts-allowUserNameChange": "Felhasználónév megváltoztatásának engedélyezése",
+ "createdAt": "Létrehozva",
+ "verified": "Ellenőrizve",
+ "active": "Aktív",
+ "card-received": "Érkezett",
+ "card-received-on": "Ekkor érkezett",
+ "card-end": "Befejezés",
+ "card-end-on": "Befejeződik ekkor",
+ "editCardReceivedDatePopup-title": "Érkezési dátum megváltoztatása",
+ "editCardEndDatePopup-title": "Befejezési dátum megváltoztatása",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Alfeladat beállítások",
+ "boardSubtaskSettingsPopup-title": "Tábla alfeladat beállítások",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Archívumba helyezve",
+ "r-unarchived": "Helyreállítva az archívumból",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Mozgatás az archívumba",
+ "r-unarchive": "Helyreállítás az archívumból",
+ "r-card": "card",
+ "r-add": "Hozzáadás",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "ellenőrzőlistából",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Elem ellenőrzése",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "ellenőrzőlistából",
+ "r-d-add-checklist": "Ellenőrzőlista hozzáadása",
+ "r-d-remove-checklist": "Ellenőrzőlista eltávolítása",
+ "r-by": "által",
+ "r-add-checklist": "Ellenőrzőlista hozzáadása",
+ "r-with-items": "elemekkel",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "Amikor egy kártya másik listába kerül",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Hitelesítési mód",
+ "authentication-type": "Hitelesítés típusa",
+ "custom-product-name": "Saját terméknév",
+ "layout": "Elrendezés",
+ "hide-logo": "Logo elrejtése",
+ "add-custom-html-after-body-start": "Egyedi HTML hozzáadása <body> után",
+ "add-custom-html-before-body-end": "1",
+ "error-undefined": "Valami hiba történt",
+ "error-ldap-login": "Hiba történt bejelentkezés közben",
+ "display-authentication-method": "Hitelelesítési mód mutatása",
+ "default-authentication-method": "Alapértelmezett hitelesítési mód",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/hy.i18n.json b/i18n/hy.i18n.json
index 5e1cf0d1..b5bda644 100644
--- a/i18n/hy.i18n.json
+++ b/i18n/hy.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Ընդունել",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Ընդունել",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/id.i18n.json b/i18n/id.i18n.json
index 6baef52f..ce41998e 100644
--- a/i18n/id.i18n.json
+++ b/i18n/id.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Terima",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "__kartu__[__Panel__]",
- "actions": "Daftar Tindakan",
- "activities": "Daftar Kegiatan",
- "activity": "Kegiatan",
- "activity-added": "ditambahkan %s ke %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "dilampirkan %s ke %s",
- "activity-created": "dibuat %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "tidak termasuk %s dari %s",
- "activity-imported": "diimpor %s kedalam %s dari %s",
- "activity-imported-board": "diimpor %s dari %s",
- "activity-joined": "bergabung %s",
- "activity-moved": "dipindahkan %s dari %s ke %s",
- "activity-on": "pada %s",
- "activity-removed": "dihapus %s dari %s",
- "activity-sent": "terkirim %s ke %s",
- "activity-unjoined": "tidak bergabung %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "daftar periksa ditambahkan ke %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Tambah",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Tambahkan hal ke daftar periksa",
- "add-cover": "Tambahkan Sampul",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Tambahkan Anggota",
- "added": "Ditambahkan",
- "addMemberPopup-title": "Daftar Anggota",
- "admin": "Admin",
- "admin-desc": "Bisa tampilkan dan sunting kartu, menghapus partisipan, dan merubah setting panel",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Semua Panel",
- "and-n-other-card": "Dan__menghitung__kartu lain",
- "and-n-other-card_plural": "Dan__menghitung__kartu lain",
- "apply": "Terapkan",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arsip",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Arsip",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Tugaskan anggota",
- "attached": "terlampir",
- "attachment": "Lampiran",
- "attachment-delete-pop": "Menghapus lampiran bersifat permanen. Tidak bisa dipulihkan.",
- "attachmentDeletePopup-title": "Hapus Lampiran?",
- "attachments": "Daftar Lampiran",
- "auto-watch": "Otomatis diawasi saat membuat Panel",
- "avatar-too-big": "Berkas avatar terlalu besar (70KB maks)",
- "back": "Kembali",
- "board-change-color": "Ubah warna",
- "board-nb-stars": "%s bintang",
- "board-not-found": "Panel tidak ditemukan",
- "board-private-info": "Panel ini akan jadi <strong>Pribadi<strong>",
- "board-public-info": "Panel ini akan jadi <strong>Publik<strong",
- "boardChangeColorPopup-title": "Ubah Warna Latar ",
- "boardChangeTitlePopup-title": "Ganti Nama Panel",
- "boardChangeVisibilityPopup-title": "Ubah Penampakan",
- "boardChangeWatchPopup-title": "Ubah Pengamatan",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Panel",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Daftar",
- "bucket-example": "Contohnya seperti “Bucket List” ",
- "cancel": "Batal",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Kartu ini punya %s komentar",
- "card-delete-notice": "Menghapus sama dengan permanen. Anda akan kehilangan semua aksi yang terhubung ke kartu ini",
- "card-delete-pop": "Semua aksi akan dihapus dari aktivitas dan anda tidak bisa lagi buka kartu ini",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Jatuh Tempo",
- "card-due-on": "Jatuh Tempo pada",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Sunting lampiran",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Sunting label",
- "card-edit-members": "Sunting anggota",
- "card-labels-title": "Ubah label kartu",
- "card-members-title": "Tambah atau hapus partisipan di panel dari kartu ",
- "card-start": "Mulai",
- "card-start-on": "Mulai pada",
- "cardAttachmentsPopup-title": "Lampirkan dari",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Hapus kartu",
- "cardDetailsActionsPopup-title": "Aksi Kartu",
- "cardLabelsPopup-title": "Daftar Label",
- "cardMembersPopup-title": "Daftar Anggota",
- "cardMorePopup-title": "Lainnya",
- "cardTemplatePopup-title": "Create template",
- "cards": "Daftar Kartu",
- "cards-count": "Daftar Kartu",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Ubah",
- "change-avatar": "Ubah Avatar",
- "change-password": "Ubah Kata Sandi",
- "change-permissions": "Ubah hak akses",
- "change-settings": "Ubah Setelan",
- "changeAvatarPopup-title": "Ubah Avatar",
- "changeLanguagePopup-title": "Ubah Bahasa",
- "changePasswordPopup-title": "Ubah Kata Sandi",
- "changePermissionsPopup-title": "Ubah Hak Akses",
- "changeSettingsPopup-title": "Ubah Setelan",
- "subtasks": "Subtasks",
- "checklists": "Daftar Periksa",
- "click-to-star": "Klik untuk tandai bintang panel ini",
- "click-to-unstar": "Klik untuk tidak memberi bintang pada panel ini",
- "clipboard": "Clipboard atau drag & drop",
- "close": "Tutup",
- "close-board": "Tutup Panel",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "hitam",
- "color-blue": "biru",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "hijau",
- "color-indigo": "indigo",
- "color-lime": "hijau muda",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "jingga",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "merah muda",
- "color-plum": "plum",
- "color-purple": "ungu",
- "color-red": "merah",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "biru muda",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "kuning",
- "unset-color": "Unset",
- "comment": "Komentar",
- "comment-placeholder": "Write Comment",
- "comment-only": "Hanya komentar",
- "comment-only-desc": "Bisa komen hanya di kartu",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Komputer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Cari",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Buat",
- "createBoardPopup-title": "Buat Panel",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Buat Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "sekarang",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Tanggal",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Tanggal",
- "decline": "Tolak",
- "default-avatar": "Avatar standar",
- "delete": "Hapus",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Hapus label?",
- "description": "Deskripsi",
- "disambiguateMultiLabelPopup-title": "Abaikan label Aksi",
- "disambiguateMultiMemberPopup-title": "Abaikan aksi partisipan",
- "discard": "Abaikan",
- "done": "Selesai",
- "download": "Unduh",
- "edit": "Sunting",
- "edit-avatar": "Ubah Avatar",
- "edit-profile": "Sunting Profil",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Ubah tanggal mulai",
- "editCardDueDatePopup-title": "Ubah tanggal selesai",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Ubah Label",
- "editNotificationPopup-title": "Sunting Pemberitahuan",
- "editProfilePopup-title": "Sunting Profil",
- "email": "Email",
- "email-enrollAccount-subject": "Sebuah akun dibuat untuk Anda pada __siteName__",
- "email-enrollAccount-text": "Halo __user__,\n\nUntuk mulai menggunakan, silakan klik tautan berikut.\n\n__url__\n\nTerima kasih.",
- "email-fail": "Surel gagal terkirim",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Surel tidak sah",
- "email-invite": "Undang via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Pulihkan kata sandi Anda pada __siteName__",
- "email-resetPassword-text": "Halo __user__,\n\nUntuk memulihkan kata sandi Anda, silakan klik tautan berikut.\n\n__url__\n\nTerima kasih.",
- "email-sent": "Email terkirim",
- "email-verifyEmail-subject": "Verifikasi surel Anda pada __siteName__",
- "email-verifyEmail-text": "Halo __user__,\n\nUntuk memverifikasi surel Anda, silakan klik tautan berikut.\n\n__url__\n\nTerima kasih.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "Panel ini tidak ada",
- "error-board-notAdmin": "Anda harus admin dari panel ini untuk melakukan itu",
- "error-board-notAMember": "Anda harus jadi member panel ini untuk melakukannya",
- "error-json-malformed": "Teks Anda bukan JSON yang sah",
- "error-json-schema": "Data JSON Anda tidak mengikutsertakan informasi yang sesuai format",
- "error-list-doesNotExist": "Daftar ini tidak ada",
- "error-user-doesNotExist": "Nama pengguna ini tidak ada",
- "error-user-notAllowSelf": "Anda tidak bisa mengundang diri sendiri",
- "error-user-notCreated": "Nama pengguna ini tidak dibuat",
- "error-username-taken": "Nama pengguna ini sudah dipakai",
- "error-email-taken": "Email has already been taken",
- "export-board": "Exspor Panel",
- "filter": "Penyaringan",
- "filter-cards": "Filter Kartu",
- "filter-clear": "Bersihkan penyaringan",
- "filter-no-label": "Tidak ada label",
- "filter-no-member": "Tidak ada anggota",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Penyaring aktif",
- "filter-on-desc": "Anda memfilter kartu di panel ini. Klik di sini untuk menyunting filter",
- "filter-to-selection": "Saring berdasarkan yang dipilih",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Nama Lengkap",
- "header-logo-title": "Kembali ke laman panel anda",
- "hide-system-messages": "Sembunyikan pesan-pesan sistem",
- "headerBarCreateBoardPopup-title": "Buat Panel",
- "home": "Beranda",
- "import": "Impor",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Impor panel dari Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "Di panel Trello anda, ke 'Menu', terus 'More', 'Print and Export','Export JSON', dan salin hasilnya",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Tempelkan data JSON yang sah disini",
- "import-map-members": "Petakan partisipan",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review pemetaan partisipan",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Versi",
- "initials": "Inisial",
- "invalid-date": "Tanggal tidak sah",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "bergabung",
- "just-invited": "Anda baru diundang di panel ini",
- "keyboard-shortcuts": "Pintasan kibor",
- "label-create": "Buat Label",
- "label-default": "label %s (default)",
- "label-delete-pop": "Ini tidak bisa dikembalikan, akan menghapus label ini dari semua kartu dan menghapus semua riwayatnya",
- "labels": "Daftar Label",
- "language": "Bahasa",
- "last-admin-desc": "Anda tidak dapat mengubah aturan karena harus ada minimal seorang Admin.",
- "leave-board": "Tingalkan Panel",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link ke kartu ini",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Pindah semua kartu ke daftar ini",
- "list-select-cards": "Pilih semua kartu di daftar ini",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Daftar Tindakan",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Impor dari Kartu Trello",
- "listMorePopup-title": "Lainnya",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Daftar",
- "swimlanes": "Swimlanes",
- "log-out": "Keluar",
- "log-in": "Masuk",
- "loginPopup-title": "Masuk",
- "memberMenuPopup-title": "Setelan Anggota",
- "members": "Daftar Anggota",
- "menu": "Menu",
- "move-selection": "Pindahkan yang dipilih",
- "moveCardPopup-title": "Pindahkan kartu",
- "moveCardToBottom-title": "Pindahkan ke bawah",
- "moveCardToTop-title": "Pindahkan ke atas",
- "moveSelectionPopup-title": "Pindahkan yang dipilih",
- "multi-selection": "Multi Pilihan",
- "multi-selection-on": "Multi Pilihan aktif",
- "muted": "Pemberitahuan tidak aktif",
- "muted-info": "Anda tidak akan pernah dinotifikasi semua perubahan di panel ini",
- "my-boards": "Panel saya",
- "name": "Nama",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Tidak ada hasil",
- "normal": "Normal",
- "normal-desc": "Bisa tampilkan dan edit kartu. Tidak bisa ubah setting",
- "not-accepted-yet": "Undangan belum diterima",
- "notify-participate": "Terima update ke semua kartu dimana anda menjadi creator atau partisipan",
- "notify-watch": "Terima update dari semua panel, daftar atau kartu yang anda amati",
- "optional": "opsi",
- "or": "atau",
- "page-maybe-private": "Halaman ini hanya untuk kalangan terbatas. Anda dapat melihatnya dengan <a href='%s'>masuk ke dalam sistem</a>.",
- "page-not-found": "Halaman tidak ditemukan.",
- "password": "Kata Sandi",
- "paste-or-dragdrop": "untuk menempelkan, atau drag& drop gambar pada ini (hanya gambar)",
- "participating": "Berpartisipasi",
- "preview": "Pratinjau",
- "previewAttachedImagePopup-title": "Pratinjau",
- "previewClipboardImagePopup-title": "Pratinjau",
- "private": "Terbatas",
- "private-desc": "Panel ini Pribadi. Hanya orang yang ditambahkan ke panel ini yang bisa melihat dan menyuntingnya",
- "profile": "Profil",
- "public": "Umum",
- "public-desc": "Panel ini publik. Akan terlihat oleh siapapun dengan link terkait dan muncul di mesin pencari seperti Google. Hanya orang yang ditambahkan di panel yang bisa sunting",
- "quick-access-description": "Beri bintang panel untuk menambah shortcut di papan ini",
- "remove-cover": "Hapus Sampul",
- "remove-from-board": "Hapus dari panel",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Hapus Anggota",
- "remove-member-from-card": "Hapus dari Kartu",
- "remove-member-pop": "Hapus__nama__(__username__) dari __boardTitle__? Partisipan akan dihapus dari semua kartu di panel ini. Mereka akan diberi tahu",
- "removeMemberPopup-title": "Hapus Anggota?",
- "rename": "Ganti Nama",
- "rename-board": "Ubah nama Panel",
- "restore": "Pulihkan",
- "save": "Simpan",
- "search": "Cari",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Masukkan diri anda sendiri ke kartu ini",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete partisipan",
- "shortcut-clear-filters": "Bersihkan semua saringan",
- "shortcut-close-dialog": "Tutup Dialog",
- "shortcut-filter-my-cards": "Filter kartu saya",
- "shortcut-show-shortcuts": "Angkat naik shortcut daftar ini",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Tampilkan jumlah kartu jika daftar punya lebih dari ",
- "sidebar-open": "Buka Sidebar",
- "sidebar-close": "Tutup Sidebar",
- "signupPopup-title": "Buat Akun",
- "star-board-title": "Klik untuk beri bintang panel ini. Akan muncul paling atas dari daftar panel",
- "starred-boards": "Panel dengan bintang",
- "starred-boards-description": "Panel berbintang muncul paling atas dari daftar panel anda",
- "subscribe": "Langganan",
- "team": "Tim",
- "this-board": "Panel ini",
- "this-card": "Kartu ini",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Waktu",
- "title": "Judul",
- "tracking": "Pelacakan",
- "tracking-info": "Anda akan dinotifikasi semua perubahan di kartu tersebut diaman anda terlibat sebagai creator atau partisipan",
- "type": "Type",
- "unassign-member": "Tidak sertakan partisipan",
- "unsaved-description": "Anda memiliki deskripsi yang belum disimpan.",
- "unwatch": "Tidak mengamati",
- "upload": "Unggah",
- "upload-avatar": "Unggah avatar",
- "uploaded-avatar": "Avatar diunggah",
- "username": "Nama Pengguna",
- "view-it": "Lihat",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Amati",
- "watching": "Mengamati",
- "watching-info": "Anda akan diberitahu semua perubahan di panel ini",
- "welcome-board": "Panel Selamat Datang",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Tingkat dasar",
- "welcome-list2": "Tingkat lanjut",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Apa yang mau Anda lakukan?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Panel Admin",
- "settings": "Setelan",
- "people": "Orang-orang",
- "registration": "Registrasi",
- "disable-self-registration": "Nonaktifkan Swa Registrasi",
- "invite": "Undang",
- "invite-people": "Undang Orang-orang",
- "to-boards": "ke panel",
- "email-addresses": "Alamat surel",
- "smtp-host-description": "Alamat server SMTP yang menangani surel Anda.",
- "smtp-port-description": "Port server SMTP yang Anda gunakan untuk mengirim surel.",
- "smtp-tls-description": "Aktifkan dukungan TLS untuk server SMTP",
- "smtp-host": "Host SMTP",
- "smtp-port": "Port SMTP",
- "smtp-username": "Nama Pengguna",
- "smtp-password": "Kata Sandi",
- "smtp-tls": "Dukungan TLS",
- "send-from": "Dari",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Kode Undangan",
- "email-invite-register-subject": "__inviter__ mengirim undangan ke Anda",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Kode undangan tidak ada",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Tambah",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Tambahkan label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Metode Autentikasi",
- "authentication-type": "Tipe Autentikasi",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Sembunyikan Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Terima",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "__kartu__[__Panel__]",
+ "actions": "Daftar Tindakan",
+ "activities": "Daftar Kegiatan",
+ "activity": "Kegiatan",
+ "activity-added": "ditambahkan %s ke %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "dilampirkan %s ke %s",
+ "activity-created": "dibuat %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "tidak termasuk %s dari %s",
+ "activity-imported": "diimpor %s kedalam %s dari %s",
+ "activity-imported-board": "diimpor %s dari %s",
+ "activity-joined": "bergabung %s",
+ "activity-moved": "dipindahkan %s dari %s ke %s",
+ "activity-on": "pada %s",
+ "activity-removed": "dihapus %s dari %s",
+ "activity-sent": "terkirim %s ke %s",
+ "activity-unjoined": "tidak bergabung %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "daftar periksa ditambahkan ke %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Tambah",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Tambahkan hal ke daftar periksa",
+ "add-cover": "Tambahkan Sampul",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Tambahkan Anggota",
+ "added": "Ditambahkan",
+ "addMemberPopup-title": "Daftar Anggota",
+ "admin": "Admin",
+ "admin-desc": "Bisa tampilkan dan sunting kartu, menghapus partisipan, dan merubah setting panel",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Semua Panel",
+ "and-n-other-card": "Dan__menghitung__kartu lain",
+ "and-n-other-card_plural": "Dan__menghitung__kartu lain",
+ "apply": "Terapkan",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arsip",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Arsip",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Tugaskan anggota",
+ "attached": "terlampir",
+ "attachment": "Lampiran",
+ "attachment-delete-pop": "Menghapus lampiran bersifat permanen. Tidak bisa dipulihkan.",
+ "attachmentDeletePopup-title": "Hapus Lampiran?",
+ "attachments": "Daftar Lampiran",
+ "auto-watch": "Otomatis diawasi saat membuat Panel",
+ "avatar-too-big": "Berkas avatar terlalu besar (70KB maks)",
+ "back": "Kembali",
+ "board-change-color": "Ubah warna",
+ "board-nb-stars": "%s bintang",
+ "board-not-found": "Panel tidak ditemukan",
+ "board-private-info": "Panel ini akan jadi <strong>Pribadi<strong>",
+ "board-public-info": "Panel ini akan jadi <strong>Publik<strong",
+ "boardChangeColorPopup-title": "Ubah Warna Latar ",
+ "boardChangeTitlePopup-title": "Ganti Nama Panel",
+ "boardChangeVisibilityPopup-title": "Ubah Penampakan",
+ "boardChangeWatchPopup-title": "Ubah Pengamatan",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Panel",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Daftar",
+ "bucket-example": "Contohnya seperti “Bucket List” ",
+ "cancel": "Batal",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Kartu ini punya %s komentar",
+ "card-delete-notice": "Menghapus sama dengan permanen. Anda akan kehilangan semua aksi yang terhubung ke kartu ini",
+ "card-delete-pop": "Semua aksi akan dihapus dari aktivitas dan anda tidak bisa lagi buka kartu ini",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Jatuh Tempo",
+ "card-due-on": "Jatuh Tempo pada",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Sunting lampiran",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Sunting label",
+ "card-edit-members": "Sunting anggota",
+ "card-labels-title": "Ubah label kartu",
+ "card-members-title": "Tambah atau hapus partisipan di panel dari kartu ",
+ "card-start": "Mulai",
+ "card-start-on": "Mulai pada",
+ "cardAttachmentsPopup-title": "Lampirkan dari",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Hapus kartu",
+ "cardDetailsActionsPopup-title": "Aksi Kartu",
+ "cardLabelsPopup-title": "Daftar Label",
+ "cardMembersPopup-title": "Daftar Anggota",
+ "cardMorePopup-title": "Lainnya",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Daftar Kartu",
+ "cards-count": "Daftar Kartu",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Ubah",
+ "change-avatar": "Ubah Avatar",
+ "change-password": "Ubah Kata Sandi",
+ "change-permissions": "Ubah hak akses",
+ "change-settings": "Ubah Setelan",
+ "changeAvatarPopup-title": "Ubah Avatar",
+ "changeLanguagePopup-title": "Ubah Bahasa",
+ "changePasswordPopup-title": "Ubah Kata Sandi",
+ "changePermissionsPopup-title": "Ubah Hak Akses",
+ "changeSettingsPopup-title": "Ubah Setelan",
+ "subtasks": "Subtasks",
+ "checklists": "Daftar Periksa",
+ "click-to-star": "Klik untuk tandai bintang panel ini",
+ "click-to-unstar": "Klik untuk tidak memberi bintang pada panel ini",
+ "clipboard": "Clipboard atau drag & drop",
+ "close": "Tutup",
+ "close-board": "Tutup Panel",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "hitam",
+ "color-blue": "biru",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "hijau",
+ "color-indigo": "indigo",
+ "color-lime": "hijau muda",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "jingga",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "merah muda",
+ "color-plum": "plum",
+ "color-purple": "ungu",
+ "color-red": "merah",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "biru muda",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "kuning",
+ "unset-color": "Unset",
+ "comment": "Komentar",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Hanya komentar",
+ "comment-only-desc": "Bisa komen hanya di kartu",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Komputer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Cari",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Buat",
+ "createBoardPopup-title": "Buat Panel",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Buat Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "sekarang",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Tanggal",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Tanggal",
+ "decline": "Tolak",
+ "default-avatar": "Avatar standar",
+ "delete": "Hapus",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Hapus label?",
+ "description": "Deskripsi",
+ "disambiguateMultiLabelPopup-title": "Abaikan label Aksi",
+ "disambiguateMultiMemberPopup-title": "Abaikan aksi partisipan",
+ "discard": "Abaikan",
+ "done": "Selesai",
+ "download": "Unduh",
+ "edit": "Sunting",
+ "edit-avatar": "Ubah Avatar",
+ "edit-profile": "Sunting Profil",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Ubah tanggal mulai",
+ "editCardDueDatePopup-title": "Ubah tanggal selesai",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Ubah Label",
+ "editNotificationPopup-title": "Sunting Pemberitahuan",
+ "editProfilePopup-title": "Sunting Profil",
+ "email": "Email",
+ "email-enrollAccount-subject": "Sebuah akun dibuat untuk Anda pada __siteName__",
+ "email-enrollAccount-text": "Halo __user__,\n\nUntuk mulai menggunakan, silakan klik tautan berikut.\n\n__url__\n\nTerima kasih.",
+ "email-fail": "Surel gagal terkirim",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Surel tidak sah",
+ "email-invite": "Undang via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Pulihkan kata sandi Anda pada __siteName__",
+ "email-resetPassword-text": "Halo __user__,\n\nUntuk memulihkan kata sandi Anda, silakan klik tautan berikut.\n\n__url__\n\nTerima kasih.",
+ "email-sent": "Email terkirim",
+ "email-verifyEmail-subject": "Verifikasi surel Anda pada __siteName__",
+ "email-verifyEmail-text": "Halo __user__,\n\nUntuk memverifikasi surel Anda, silakan klik tautan berikut.\n\n__url__\n\nTerima kasih.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "Panel ini tidak ada",
+ "error-board-notAdmin": "Anda harus admin dari panel ini untuk melakukan itu",
+ "error-board-notAMember": "Anda harus jadi member panel ini untuk melakukannya",
+ "error-json-malformed": "Teks Anda bukan JSON yang sah",
+ "error-json-schema": "Data JSON Anda tidak mengikutsertakan informasi yang sesuai format",
+ "error-list-doesNotExist": "Daftar ini tidak ada",
+ "error-user-doesNotExist": "Nama pengguna ini tidak ada",
+ "error-user-notAllowSelf": "Anda tidak bisa mengundang diri sendiri",
+ "error-user-notCreated": "Nama pengguna ini tidak dibuat",
+ "error-username-taken": "Nama pengguna ini sudah dipakai",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Exspor Panel",
+ "filter": "Penyaringan",
+ "filter-cards": "Filter Kartu",
+ "filter-clear": "Bersihkan penyaringan",
+ "filter-no-label": "Tidak ada label",
+ "filter-no-member": "Tidak ada anggota",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Penyaring aktif",
+ "filter-on-desc": "Anda memfilter kartu di panel ini. Klik di sini untuk menyunting filter",
+ "filter-to-selection": "Saring berdasarkan yang dipilih",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Nama Lengkap",
+ "header-logo-title": "Kembali ke laman panel anda",
+ "hide-system-messages": "Sembunyikan pesan-pesan sistem",
+ "headerBarCreateBoardPopup-title": "Buat Panel",
+ "home": "Beranda",
+ "import": "Impor",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Impor panel dari Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "Di panel Trello anda, ke 'Menu', terus 'More', 'Print and Export','Export JSON', dan salin hasilnya",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Tempelkan data JSON yang sah disini",
+ "import-map-members": "Petakan partisipan",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review pemetaan partisipan",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Versi",
+ "initials": "Inisial",
+ "invalid-date": "Tanggal tidak sah",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "bergabung",
+ "just-invited": "Anda baru diundang di panel ini",
+ "keyboard-shortcuts": "Pintasan kibor",
+ "label-create": "Buat Label",
+ "label-default": "label %s (default)",
+ "label-delete-pop": "Ini tidak bisa dikembalikan, akan menghapus label ini dari semua kartu dan menghapus semua riwayatnya",
+ "labels": "Daftar Label",
+ "language": "Bahasa",
+ "last-admin-desc": "Anda tidak dapat mengubah aturan karena harus ada minimal seorang Admin.",
+ "leave-board": "Tingalkan Panel",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link ke kartu ini",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Pindah semua kartu ke daftar ini",
+ "list-select-cards": "Pilih semua kartu di daftar ini",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Daftar Tindakan",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Impor dari Kartu Trello",
+ "listMorePopup-title": "Lainnya",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Daftar",
+ "swimlanes": "Swimlanes",
+ "log-out": "Keluar",
+ "log-in": "Masuk",
+ "loginPopup-title": "Masuk",
+ "memberMenuPopup-title": "Setelan Anggota",
+ "members": "Daftar Anggota",
+ "menu": "Menu",
+ "move-selection": "Pindahkan yang dipilih",
+ "moveCardPopup-title": "Pindahkan kartu",
+ "moveCardToBottom-title": "Pindahkan ke bawah",
+ "moveCardToTop-title": "Pindahkan ke atas",
+ "moveSelectionPopup-title": "Pindahkan yang dipilih",
+ "multi-selection": "Multi Pilihan",
+ "multi-selection-on": "Multi Pilihan aktif",
+ "muted": "Pemberitahuan tidak aktif",
+ "muted-info": "Anda tidak akan pernah dinotifikasi semua perubahan di panel ini",
+ "my-boards": "Panel saya",
+ "name": "Nama",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Tidak ada hasil",
+ "normal": "Normal",
+ "normal-desc": "Bisa tampilkan dan edit kartu. Tidak bisa ubah setting",
+ "not-accepted-yet": "Undangan belum diterima",
+ "notify-participate": "Terima update ke semua kartu dimana anda menjadi creator atau partisipan",
+ "notify-watch": "Terima update dari semua panel, daftar atau kartu yang anda amati",
+ "optional": "opsi",
+ "or": "atau",
+ "page-maybe-private": "Halaman ini hanya untuk kalangan terbatas. Anda dapat melihatnya dengan <a href='%s'>masuk ke dalam sistem</a>.",
+ "page-not-found": "Halaman tidak ditemukan.",
+ "password": "Kata Sandi",
+ "paste-or-dragdrop": "untuk menempelkan, atau drag& drop gambar pada ini (hanya gambar)",
+ "participating": "Berpartisipasi",
+ "preview": "Pratinjau",
+ "previewAttachedImagePopup-title": "Pratinjau",
+ "previewClipboardImagePopup-title": "Pratinjau",
+ "private": "Terbatas",
+ "private-desc": "Panel ini Pribadi. Hanya orang yang ditambahkan ke panel ini yang bisa melihat dan menyuntingnya",
+ "profile": "Profil",
+ "public": "Umum",
+ "public-desc": "Panel ini publik. Akan terlihat oleh siapapun dengan link terkait dan muncul di mesin pencari seperti Google. Hanya orang yang ditambahkan di panel yang bisa sunting",
+ "quick-access-description": "Beri bintang panel untuk menambah shortcut di papan ini",
+ "remove-cover": "Hapus Sampul",
+ "remove-from-board": "Hapus dari panel",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Hapus Anggota",
+ "remove-member-from-card": "Hapus dari Kartu",
+ "remove-member-pop": "Hapus__nama__(__username__) dari __boardTitle__? Partisipan akan dihapus dari semua kartu di panel ini. Mereka akan diberi tahu",
+ "removeMemberPopup-title": "Hapus Anggota?",
+ "rename": "Ganti Nama",
+ "rename-board": "Ubah nama Panel",
+ "restore": "Pulihkan",
+ "save": "Simpan",
+ "search": "Cari",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Masukkan diri anda sendiri ke kartu ini",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete partisipan",
+ "shortcut-clear-filters": "Bersihkan semua saringan",
+ "shortcut-close-dialog": "Tutup Dialog",
+ "shortcut-filter-my-cards": "Filter kartu saya",
+ "shortcut-show-shortcuts": "Angkat naik shortcut daftar ini",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Tampilkan jumlah kartu jika daftar punya lebih dari ",
+ "sidebar-open": "Buka Sidebar",
+ "sidebar-close": "Tutup Sidebar",
+ "signupPopup-title": "Buat Akun",
+ "star-board-title": "Klik untuk beri bintang panel ini. Akan muncul paling atas dari daftar panel",
+ "starred-boards": "Panel dengan bintang",
+ "starred-boards-description": "Panel berbintang muncul paling atas dari daftar panel anda",
+ "subscribe": "Langganan",
+ "team": "Tim",
+ "this-board": "Panel ini",
+ "this-card": "Kartu ini",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Waktu",
+ "title": "Judul",
+ "tracking": "Pelacakan",
+ "tracking-info": "Anda akan dinotifikasi semua perubahan di kartu tersebut diaman anda terlibat sebagai creator atau partisipan",
+ "type": "Type",
+ "unassign-member": "Tidak sertakan partisipan",
+ "unsaved-description": "Anda memiliki deskripsi yang belum disimpan.",
+ "unwatch": "Tidak mengamati",
+ "upload": "Unggah",
+ "upload-avatar": "Unggah avatar",
+ "uploaded-avatar": "Avatar diunggah",
+ "username": "Nama Pengguna",
+ "view-it": "Lihat",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Amati",
+ "watching": "Mengamati",
+ "watching-info": "Anda akan diberitahu semua perubahan di panel ini",
+ "welcome-board": "Panel Selamat Datang",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Tingkat dasar",
+ "welcome-list2": "Tingkat lanjut",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Apa yang mau Anda lakukan?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Panel Admin",
+ "settings": "Setelan",
+ "people": "Orang-orang",
+ "registration": "Registrasi",
+ "disable-self-registration": "Nonaktifkan Swa Registrasi",
+ "invite": "Undang",
+ "invite-people": "Undang Orang-orang",
+ "to-boards": "ke panel",
+ "email-addresses": "Alamat surel",
+ "smtp-host-description": "Alamat server SMTP yang menangani surel Anda.",
+ "smtp-port-description": "Port server SMTP yang Anda gunakan untuk mengirim surel.",
+ "smtp-tls-description": "Aktifkan dukungan TLS untuk server SMTP",
+ "smtp-host": "Host SMTP",
+ "smtp-port": "Port SMTP",
+ "smtp-username": "Nama Pengguna",
+ "smtp-password": "Kata Sandi",
+ "smtp-tls": "Dukungan TLS",
+ "send-from": "Dari",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Kode Undangan",
+ "email-invite-register-subject": "__inviter__ mengirim undangan ke Anda",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Kode undangan tidak ada",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Tambah",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Tambahkan label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Metode Autentikasi",
+ "authentication-type": "Tipe Autentikasi",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Sembunyikan Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/ig.i18n.json b/i18n/ig.i18n.json
index 3cb95171..17a499b3 100644
--- a/i18n/ig.i18n.json
+++ b/i18n/ig.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Kwere",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "na %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Tinye",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Tinye ndị otu ọhụrụ",
- "added": "Etinyere ",
- "addMemberPopup-title": "Ndị otu",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Bido",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Aha",
- "cardMembersPopup-title": "Ndị otu",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Gbanwe",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Họrọ asụsụ ọzọ",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Aha",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Ndị otu",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Banye aha ọzọ",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "Hụ ya",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Hụ",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "Ndị mmadụ",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "elekere",
- "minutes": "nkeji",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Ee",
- "no": "Mba",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Ekere na",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Tinye",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Kwere",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "na %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Tinye",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Tinye ndị otu ọhụrụ",
+ "added": "Etinyere ",
+ "addMemberPopup-title": "Ndị otu",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Bido",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Aha",
+ "cardMembersPopup-title": "Ndị otu",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Gbanwe",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Họrọ asụsụ ọzọ",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Aha",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Ndị otu",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Banye aha ọzọ",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "Hụ ya",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Hụ",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "Ndị mmadụ",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "elekere",
+ "minutes": "nkeji",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Ee",
+ "no": "Mba",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Ekere na",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Tinye",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json
index 6d8f03f9..cabe312b 100644
--- a/i18n/it.i18n.json
+++ b/i18n/it.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Accetta",
- "act-activity-notify": "Notifica attività",
- "act-addAttachment": "aggiunto allegato __attachment__ alla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-deleteAttachment": "eliminato allegato __attachment__ dalla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-addSubtask": "aggiunto sottotask __subtask__ alla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-addLabel": "aggiunta etichetta __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-addedLabel": "aggiunta etichetta __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-removeLabel": "rimossa etichetta __label__ dalla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-removedLabel": "rimossa etichetta __label__ dalla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-addChecklist": "aggiunta lista di controllo __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-addChecklistItem": "aggiunto elemento __checklistItem__ alla lista di controllo __checklist__ della scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-removeChecklist": "rimossa lista di controllo __checklist__ dalla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-removeChecklistItem": "rimosso elemento __checklistitem__ dalla lista di controllo __checkList__ della scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "act-checkedItem": "attivato __checklistitem__ nella lista di controllo __checklist__ della scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-uncheckedItem": "disattivato __checklistItem__ della lista di controllo __checklist__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-completeChecklist": "completata lista di controllo __checklist__ nella scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-uncompleteChecklist": "lista di controllo __checklist__ incompleta nella scheda __card__ della lista __list__ in corsia __swimlane__ della bacheca __board__",
- "act-addComment": "commento sulla scheda __card__: __comment__ nella lista __list__ della corsia __swimlane__ della bacheca __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "bacheca __board__ creata",
- "act-createSwimlane": "creata corsia __swimlane__ alla bacheca __board__",
- "act-createCard": "scheda __card__ creata nella lista __list__ della corsia __swimlane__ della bacheca __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "aggiunta lista __list__ alla bacheca __board__",
- "act-addBoardMember": "aggiunto membro __member__ alla bacheca __board__",
- "act-archivedBoard": "Bacheca __board__ archiviata",
- "act-archivedCard": "Scheda __card__ della lista __list__ della corsia __swimlane__ della bacheca __board__ archiviata",
- "act-archivedList": "Lista __list__ della corsia __swimlane__ della bacheca __board__ archiviata",
- "act-archivedSwimlane": "Corsia __swimlane__ della bacheca __board__ archiviata",
- "act-importBoard": "Bacheca __board__ importata",
- "act-importCard": "scheda importata __card__ nella lista __list__ della corsia __swimlane__ della bacheca __board__",
- "act-importList": "lista __list__ importata nella corsia __swimlane__ della bacheca __board__",
- "act-joinMember": "aggiunto membro __member__ alla scheda __card__ della list __list__ nella corsia __swimlane__ della bacheca __board__",
- "act-moveCard": "spostata scheda __card__ della bacheca __board__ dalla lista __oldList__ della corsia __oldSwimlane__ alla lista __list__ della corsia __swimlane__",
- "act-moveCardToOtherBoard": "postata scheda __card__ dalla lista __oldList__ della corsia __oldSwimlane__ della bacheca __oldBoard__ alla lista __list__ nella corsia __swimlane__ della bacheca __board__",
- "act-removeBoardMember": "rimosso membro __member__ dalla bacheca __board__",
- "act-restoredCard": "scheda ripristinata __card__ della lista __list__ nella corsia __swimlane__ della bacheca __board__",
- "act-unjoinMember": "rimosso membro __member__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Azioni",
- "activities": "Attività",
- "activity": "Attività",
- "activity-added": "ha aggiunto %s a %s",
- "activity-archived": "%s spostato nell'archivio",
- "activity-attached": "allegato %s a %s",
- "activity-created": "creato %s",
- "activity-customfield-created": "%s creato come campo personalizzato",
- "activity-excluded": "escluso %s da %s",
- "activity-imported": "importato %s in %s da %s",
- "activity-imported-board": "importato %s da %s",
- "activity-joined": "si è unito a %s",
- "activity-moved": "spostato %s da %s a %s",
- "activity-on": "su %s",
- "activity-removed": "rimosso %s da %s",
- "activity-sent": "inviato %s a %s",
- "activity-unjoined": "ha abbandonato %s",
- "activity-subtask-added": "aggiunto il sottocompito a 1%s",
- "activity-checked-item": "selezionata %s nella checklist %s di %s",
- "activity-unchecked-item": "disattivato %s nella checklist %s di %s",
- "activity-checklist-added": "aggiunta checklist a %s",
- "activity-checklist-removed": "È stata rimossa una checklist da%s",
- "activity-checklist-completed": "checklist __checklist__ completata nella scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "activity-checklist-uncompleted": "La checklist non è stata completata",
- "activity-checklist-item-added": "Aggiunto l'elemento checklist a '%s' in %s",
- "activity-checklist-item-removed": "è stato rimosso un elemento della checklist da '%s' in %s",
- "add": "Aggiungere",
- "activity-checked-item-card": "%s è stato selezionato nella checklist %s",
- "activity-unchecked-item-card": "%s è stato deselezionato nella checklist %s",
- "activity-checklist-completed-card": "checklist __label__ completata nella scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
- "activity-checklist-uncompleted-card": "La checklist %s non è completa",
- "add-attachment": "Aggiungi Allegato",
- "add-board": "Aggiungi Bacheca",
- "add-card": "Aggiungi Scheda",
- "add-swimlane": "Aggiungi Diagramma Swimlane",
- "add-subtask": "Aggiungi sotto-compito",
- "add-checklist": "Aggiungi Checklist",
- "add-checklist-item": "Aggiungi un elemento alla checklist",
- "add-cover": "Aggiungi copertina",
- "add-label": "Aggiungi Etichetta",
- "add-list": "Aggiungi Lista",
- "add-members": "Aggiungi membri",
- "added": "Aggiunto",
- "addMemberPopup-title": "Membri",
- "admin": "Amministratore",
- "admin-desc": "Può vedere e modificare schede, rimuovere membri e modificare le impostazioni della bacheca.",
- "admin-announcement": "Annunci",
- "admin-announcement-active": "Attiva annunci di sistema",
- "admin-announcement-title": "Annunci dall'Amministratore",
- "all-boards": "Tutte le bacheche",
- "and-n-other-card": "E __count__ altra scheda",
- "and-n-other-card_plural": "E __count__ altre schede",
- "apply": "Applica",
- "app-is-offline": "Caricamento, attendere prego. Aggiornare la pagina porterà ad una perdita dei dati. Se il caricamento non dovesse funzionare, per favore controlla che il server non sia stato fermato.",
- "archive": "Sposta nell'Archivio",
- "archive-all": "Sposta tutto nell'Archivio",
- "archive-board": "Sposta la bacheca nell'Archivio",
- "archive-card": "Sposta la scheda nell'Archivio",
- "archive-list": "Sposta elenco nell'Archivio",
- "archive-swimlane": "Sposta diagramma nell'Archivio",
- "archive-selection": "Sposta la selezione nell'archivio",
- "archiveBoardPopup-title": "Spostare al bacheca nell'archivio?",
- "archived-items": "Archivia",
- "archived-boards": "Bacheche nell'archivio",
- "restore-board": "Ripristina Bacheca",
- "no-archived-boards": "Nessuna bacheca presente nell'archivio",
- "archives": "Archivia",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Aggiungi membro",
- "attached": "allegato",
- "attachment": "Allegato",
- "attachment-delete-pop": "L'eliminazione di un allegato è permanente. Non è possibile annullare.",
- "attachmentDeletePopup-title": "Eliminare l'allegato?",
- "attachments": "Allegati",
- "auto-watch": "Segui automaticamente le bacheche quando vengono create.",
- "avatar-too-big": "L'avatar è troppo grande (70KB max)",
- "back": "Indietro",
- "board-change-color": "Cambia colore",
- "board-nb-stars": "%s stelle",
- "board-not-found": "Bacheca non trovata",
- "board-private-info": "Questa bacheca sarà <strong>privata</strong>.",
- "board-public-info": "Questa bacheca sarà <strong>pubblica</strong>.",
- "boardChangeColorPopup-title": "Cambia sfondo della bacheca",
- "boardChangeTitlePopup-title": "Rinomina bacheca",
- "boardChangeVisibilityPopup-title": "Cambia visibilità",
- "boardChangeWatchPopup-title": "Cambia faccia",
- "boardMenuPopup-title": "Impostazioni bacheca",
- "boards": "Bacheche",
- "board-view": "Visualizza bacheca",
- "board-view-cal": "Calendario",
- "board-view-swimlanes": "Diagramma Swimlane",
- "board-view-lists": "Liste",
- "bucket-example": "Per esempio come \"una lista di cose da fare\"",
- "cancel": "Cancella",
- "card-archived": "Questa scheda è stata spostata nell'archivio",
- "board-archived": "Questa bacheca è stata spostata nell'archivio",
- "card-comments-title": "Questa scheda ha %s commenti.",
- "card-delete-notice": "L'eliminazione è permanente. Tutte le azioni associate a questa scheda andranno perse.",
- "card-delete-pop": "Tutte le azioni saranno rimosse dal flusso attività e non sarai in grado di riaprire la scheda. Non potrai tornare indietro.",
- "card-delete-suggest-archive": "Puoi spostare una scheda nell'archivio per rimuoverla dalla bacheca e mantenere la sua attività",
- "card-due": "Scadenza",
- "card-due-on": "Scade",
- "card-spent": "Tempo trascorso",
- "card-edit-attachments": "Modifica allegati",
- "card-edit-custom-fields": "Modifica campo personalizzato",
- "card-edit-labels": "Modifica etichette",
- "card-edit-members": "Modifica membri",
- "card-labels-title": "Cambia le etichette per questa scheda.",
- "card-members-title": "Aggiungi o rimuovi membri della bacheca da questa scheda",
- "card-start": "Inizio",
- "card-start-on": "Inizia",
- "cardAttachmentsPopup-title": "Allega da",
- "cardCustomField-datePopup-title": "Cambia data",
- "cardCustomFieldsPopup-title": "Modifica campo personalizzato",
- "cardDeletePopup-title": "Elimina scheda?",
- "cardDetailsActionsPopup-title": "Azioni scheda",
- "cardLabelsPopup-title": "Etichette",
- "cardMembersPopup-title": "Membri",
- "cardMorePopup-title": "Altro",
- "cardTemplatePopup-title": "Crea un template",
- "cards": "Schede",
- "cards-count": "Schede",
- "casSignIn": "Entra con CAS",
- "cardType-card": "Scheda",
- "cardType-linkedCard": "Scheda collegata",
- "cardType-linkedBoard": "Bacheca collegata",
- "change": "Cambia",
- "change-avatar": "Cambia avatar",
- "change-password": "Cambia password",
- "change-permissions": "Cambia permessi",
- "change-settings": "Cambia impostazioni",
- "changeAvatarPopup-title": "Cambia avatar",
- "changeLanguagePopup-title": "Cambia lingua",
- "changePasswordPopup-title": "Cambia password",
- "changePermissionsPopup-title": "Cambia permessi",
- "changeSettingsPopup-title": "Cambia impostazioni",
- "subtasks": "Sotto-compiti",
- "checklists": "Checklist",
- "click-to-star": "Clicca per stellare questa bacheca",
- "click-to-unstar": "Clicca per togliere la stella da questa bacheca",
- "clipboard": "Clipboard o drag & drop",
- "close": "Chiudi",
- "close-board": "Chiudi bacheca",
- "close-board-pop": "Potrai ripristinare la bacheca cliccando sul tasto \"Archivio\" presente nell'intestazione della home.",
- "color-black": "nero",
- "color-blue": "blu",
- "color-crimson": "Rosso cremisi",
- "color-darkgreen": "Verde scuro",
- "color-gold": "Dorato",
- "color-gray": "Grigio",
- "color-green": "verde",
- "color-indigo": "Indaco",
- "color-lime": "lime",
- "color-magenta": "Magenta",
- "color-mistyrose": "Mistyrose",
- "color-navy": "Navy",
- "color-orange": "arancione",
- "color-paleturquoise": "Turchese chiaro",
- "color-peachpuff": "Pesca",
- "color-pink": "rosa",
- "color-plum": "Prugna",
- "color-purple": "viola",
- "color-red": "rosso",
- "color-saddlebrown": "Saddlebrown",
- "color-silver": "Argento",
- "color-sky": "azzurro",
- "color-slateblue": "Ardesia",
- "color-white": "Bianco",
- "color-yellow": "giallo",
- "unset-color": "Non impostato",
- "comment": "Commento",
- "comment-placeholder": "Scrivi Commento",
- "comment-only": "Solo commenti",
- "comment-only-desc": "Puoi commentare solo le schede.",
- "no-comments": "Non ci sono commenti.",
- "no-comments-desc": "Impossibile visualizzare commenti o attività.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Sei sicuro di voler eliminare il sotto-compito?",
- "confirm-checklist-delete-dialog": "Sei sicuro di voler eliminare la checklist?",
- "copy-card-link-to-clipboard": "Copia link della scheda sulla clipboard",
- "linkCardPopup-title": "Collega scheda",
- "searchElementPopup-title": "Cerca",
- "copyCardPopup-title": "Copia Scheda",
- "copyChecklistToManyCardsPopup-title": "Copia template checklist su più schede",
- "copyChecklistToManyCardsPopup-instructions": "Titolo e la descrizione della scheda di destinazione in questo formato JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titolo prima scheda\", \"description\":\"Descrizione prima scheda\"}, {\"title\":\"Titolo seconda scheda\",\"description\":\"Descrizione seconda scheda\"},{\"title\":\"Titolo ultima scheda\",\"description\":\"Descrizione ultima scheda\"} ]",
- "create": "Crea",
- "createBoardPopup-title": "Crea bacheca",
- "chooseBoardSourcePopup-title": "Importa bacheca",
- "createLabelPopup-title": "Crea etichetta",
- "createCustomField": "Crea campo",
- "createCustomFieldPopup-title": "Crea campo",
- "current": "corrente",
- "custom-field-delete-pop": "Non potrai tornare indietro. Questa azione rimuoverà questo campo personalizzato da tutte le schede ed eliminerà ogni sua traccia.",
- "custom-field-checkbox": "Casella di scelta",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Lista a discesa",
- "custom-field-dropdown-none": "(niente)",
- "custom-field-dropdown-options": "Lista opzioni",
- "custom-field-dropdown-options-placeholder": "Premi invio per aggiungere altre opzioni",
- "custom-field-dropdown-unknown": "(sconosciuto)",
- "custom-field-number": "Numero",
- "custom-field-text": "Testo",
- "custom-fields": "Campi personalizzati",
- "date": "Data",
- "decline": "Declina",
- "default-avatar": "Avatar predefinito",
- "delete": "Elimina",
- "deleteCustomFieldPopup-title": "Elimina il campo personalizzato?",
- "deleteLabelPopup-title": "Eliminare etichetta?",
- "description": "Descrizione",
- "disambiguateMultiLabelPopup-title": "Disambiguare l'azione Etichetta",
- "disambiguateMultiMemberPopup-title": "Disambiguare l'azione Membro",
- "discard": "Scarta",
- "done": "Fatto",
- "download": "Download",
- "edit": "Modifica",
- "edit-avatar": "Cambia avatar",
- "edit-profile": "Modifica profilo",
- "edit-wip-limit": "Modifica limite di work in progress",
- "soft-wip-limit": "Limite Work in progress soft",
- "editCardStartDatePopup-title": "Cambia data di inizio",
- "editCardDueDatePopup-title": "Cambia data di scadenza",
- "editCustomFieldPopup-title": "Modifica campo",
- "editCardSpentTimePopup-title": "Cambia tempo trascorso",
- "editLabelPopup-title": "Cambia etichetta",
- "editNotificationPopup-title": "Modifica notifiche",
- "editProfilePopup-title": "Modifica profilo",
- "email": "Email",
- "email-enrollAccount-subject": "Creato un account per te su __siteName__",
- "email-enrollAccount-text": "Ciao __user__,\n\nPer iniziare ad usare il servizio, clicca sul link seguente:\n\n__url__\n\nGrazie.",
- "email-fail": "Invio email fallito",
- "email-fail-text": "Errore nel tentativo di invio email",
- "email-invalid": "Email non valida",
- "email-invite": "Invita via email",
- "email-invite-subject": "__inviter__ ti ha inviato un invito",
- "email-invite-text": "Caro __user__,\n\n__inviter__ ti ha invitato ad unirti alla bacheca \"__board__\" per le collaborazioni.\n\nPer favore clicca sul link seguente:\n\n__url__\n\nGrazie.",
- "email-resetPassword-subject": "Ripristina la tua password su on __siteName__",
- "email-resetPassword-text": "Ciao __user__,\n\nPer ripristinare la tua password, clicca sul link seguente:\n\n__url__\n\nGrazie.",
- "email-sent": "Email inviata",
- "email-verifyEmail-subject": "Verifica il tuo indirizzo email su on __siteName__",
- "email-verifyEmail-text": "Ciao __user__,\n\nPer verificare il tuo account email, clicca sul link seguente:\n\n__url__\n\nGrazie.",
- "enable-wip-limit": "Abilita limite di work in progress",
- "error-board-doesNotExist": "Questa bacheca non esiste",
- "error-board-notAdmin": "Devi essere admin di questa bacheca per poterlo fare",
- "error-board-notAMember": "Devi essere un membro di questa bacheca per poterlo fare",
- "error-json-malformed": "Il tuo testo non è un JSON valido",
- "error-json-schema": "Il tuo file JSON non contiene le giuste informazioni nel formato corretto",
- "error-list-doesNotExist": "Questa lista non esiste",
- "error-user-doesNotExist": "Questo utente non esiste",
- "error-user-notAllowSelf": "Non puoi invitare te stesso",
- "error-user-notCreated": "L'utente non è stato creato",
- "error-username-taken": "Questo username è già utilizzato",
- "error-email-taken": "L'email è già stata presa",
- "export-board": "Esporta bacheca",
- "filter": "Filtra",
- "filter-cards": "Filtra schede",
- "filter-clear": "Pulisci filtri",
- "filter-no-label": "Nessuna etichetta",
- "filter-no-member": "Nessun membro",
- "filter-no-custom-fields": "Nessun campo personalizzato",
- "filter-on": "Il filtro è attivo",
- "filter-on-desc": "Stai filtrando le schede su questa bacheca. Clicca qui per modificare il filtro,",
- "filter-to-selection": "Seleziona",
- "advanced-filter-label": "Filtro avanzato",
- "advanced-filter-description": "Il filtro avanzato permette di scrivere una stringa contenente i seguenti operatori: == != <= >= && || ( ) Uno spazio è usato come separatore tra gli operatori. Si può filtrare per tutti i campi personalizzati, scrivendo i loro nomi e valori. Per esempio: Campo1 == Valore1. Nota: Se i campi o i valori contengono spazi, è necessario incapsularli all'interno di paici singoli. Per esempio: 'Campo 1' == 'Valore 1'. Per i singoli caratteri di controllo (' V) che devono essere ignorati, si può usare \\. Per esempio: C1 == Campo1 == L'\\ho. Si possono anche combinare condizioni multiple. Per esempio: C1 == V1 || C1 ==V2. Di norma tutti gli operatori vengono lettti da sinistra a destra. Si può cambiare l'ordine posizionando delle parentesi. Per esempio: C1 == V1 && ( C2 == V2 || C2 == V3) . Inoltre è possibile cercare nei campi di testo usando le espressioni regolari (n.d.t. regex): F1 ==/Tes.*/i",
- "fullname": "Nome completo",
- "header-logo-title": "Torna alla tua bacheca.",
- "hide-system-messages": "Nascondi i messaggi di sistema",
- "headerBarCreateBoardPopup-title": "Crea bacheca",
- "home": "Home",
- "import": "Importa",
- "link": "Collegamento",
- "import-board": "Importa bacheca",
- "import-board-c": "Importa bacheca",
- "import-board-title-trello": "Importa una bacheca da Trello",
- "import-board-title-wekan": "Importa bacheca dall'esportazione precedente",
- "import-sandstorm-backup-warning": "Non cancellare i dati che importi dalla bacheca esportata in origine o da Trello prima che il controllo finisca e si riapra ancora, altrimenti otterrai un messaggio di errore Bacheca non trovata, che significa che i dati sono perduti.",
- "import-sandstorm-warning": "La bacheca importata cancellerà tutti i dati esistenti su questa bacheca e li rimpiazzerà con quelli della bacheca importata.",
- "from-trello": "Da Trello",
- "from-wekan": "Dall'esportazione precedente",
- "import-board-instruction-trello": "Nella tua bacheca Trello vai a 'Menu', poi 'Altro', 'Stampa ed esporta', 'Esporta JSON', e copia il testo che compare.",
- "import-board-instruction-wekan": "Nella tua bacheca vai su \"Menu\", poi \"Esporta la bacheca\", e copia il testo nel file scaricato",
- "import-board-instruction-about-errors": "Se hai degli errori quando importi una bacheca, qualche volta l'importazione funziona comunque, e la bacheca si trova nella pagina \"Tutte le bacheche\"",
- "import-json-placeholder": "Incolla un JSON valido qui",
- "import-map-members": "Mappatura dei membri",
- "import-members-map": "La bacheca che hai importato contiene alcuni membri. Per favore scegli i membri che vuoi importare tra i tuoi utenti",
- "import-show-user-mapping": "Rivedi la mappatura dei membri",
- "import-user-select": "Scegli l'utente che vuoi venga utilizzato come questo membro",
- "importMapMembersAddPopup-title": "Scegli membro",
- "info": "Versione",
- "initials": "Iniziali",
- "invalid-date": "Data non valida",
- "invalid-time": "Tempo non valido",
- "invalid-user": "User non valido",
- "joined": "si è unito a",
- "just-invited": "Sei stato appena invitato a questa bacheca",
- "keyboard-shortcuts": "Scorciatoie da tastiera",
- "label-create": "Crea etichetta",
- "label-default": "%s etichetta (default)",
- "label-delete-pop": "Non potrai tornare indietro. Procedendo, rimuoverai questa etichetta da tutte le schede e distruggerai la sua cronologia.",
- "labels": "Etichette",
- "language": "Lingua",
- "last-admin-desc": "Non puoi cambiare i ruoli perché deve esserci almeno un admin.",
- "leave-board": "Abbandona bacheca",
- "leave-board-pop": "Sei sicuro di voler abbandonare __boardTitle__? Sarai rimosso da tutte le schede in questa bacheca.",
- "leaveBoardPopup-title": "Abbandona Bacheca?",
- "link-card": "Link a questa scheda",
- "list-archive-cards": "Sposta tutte le schede in questo elenco nell'Archivio",
- "list-archive-cards-pop": "Questo rimuoverà tutte le schede nell'elenco dalla bacheca. Per vedere le schede nell'archivio e portarle dov'erano nella bacheca, clicca su \"Menu\" > \"Archivio\".",
- "list-move-cards": "Sposta tutte le schede in questa lista",
- "list-select-cards": "Selezione tutte le schede in questa lista",
- "set-color-list": "Imposta un colore",
- "listActionPopup-title": "Azioni disponibili",
- "swimlaneActionPopup-title": "Azioni diagramma Swimlane",
- "swimlaneAddPopup-title": "Aggiungi un diagramma Swimlane di seguito",
- "listImportCardPopup-title": "Importa una scheda di Trello",
- "listMorePopup-title": "Altro",
- "link-list": "Link a questa lista",
- "list-delete-pop": "Tutte le azioni saranno rimosse dal flusso attività e non sarai in grado di recuperare la lista. Non potrai tornare indietro.",
- "list-delete-suggest-archive": "Puoi spostare un elenco nell'archivio per rimuoverlo dalla bacheca e mantentere la sua attività.",
- "lists": "Liste",
- "swimlanes": "Diagramma Swimlane",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Impostazioni membri",
- "members": "Membri",
- "menu": "Menu",
- "move-selection": "Sposta selezione",
- "moveCardPopup-title": "Sposta scheda",
- "moveCardToBottom-title": "Sposta in fondo",
- "moveCardToTop-title": "Sposta in alto",
- "moveSelectionPopup-title": "Sposta selezione",
- "multi-selection": "Multi-Selezione",
- "multi-selection-on": "Multi-Selezione attiva",
- "muted": "Silenziato",
- "muted-info": "Non sarai mai notificato delle modifiche in questa bacheca",
- "my-boards": "Le mie bacheche",
- "name": "Nome",
- "no-archived-cards": "Non ci sono schede nell'archivio.",
- "no-archived-lists": "Non ci sono elenchi nell'archivio.",
- "no-archived-swimlanes": "Non ci sono diagrammi Swimlane nell'archivio.",
- "no-results": "Nessun risultato",
- "normal": "Normale",
- "normal-desc": "Può visionare e modificare le schede. Non può cambiare le impostazioni.",
- "not-accepted-yet": "Invitato non ancora accettato",
- "notify-participate": "Ricevi aggiornamenti per qualsiasi scheda a cui partecipi come creatore o membro",
- "notify-watch": "Ricevi aggiornamenti per tutte le bacheche, liste o schede che stai seguendo",
- "optional": "opzionale",
- "or": "o",
- "page-maybe-private": "Questa pagina potrebbe essere privata. Potresti essere in grado di vederla <a href='%s'>facendo il log-in</a>.",
- "page-not-found": "Pagina non trovata.",
- "password": "Password",
- "paste-or-dragdrop": "per incollare, oppure trascina & rilascia il file immagine (solo immagini)",
- "participating": "Partecipando",
- "preview": "Anteprima",
- "previewAttachedImagePopup-title": "Anteprima",
- "previewClipboardImagePopup-title": "Anteprima",
- "private": "Privata",
- "private-desc": "Questa bacheca è privata. Solo le persone aggiunte alla bacheca possono vederla e modificarla.",
- "profile": "Profilo",
- "public": "Pubblica",
- "public-desc": "Questa bacheca è pubblica. È visibile a chiunque abbia il link e sarà mostrata dai motori di ricerca come Google. Solo le persone aggiunte alla bacheca possono modificarla.",
- "quick-access-description": "Stella una bacheca per aggiungere una scorciatoia in questa barra.",
- "remove-cover": "Rimuovi cover",
- "remove-from-board": "Rimuovi dalla bacheca",
- "remove-label": "Rimuovi Etichetta",
- "listDeletePopup-title": "Eliminare Lista?",
- "remove-member": "Rimuovi utente",
- "remove-member-from-card": "Rimuovi dalla scheda",
- "remove-member-pop": "Rimuovere __name__ (__username__) da __boardTitle__? L'utente sarà rimosso da tutte le schede in questa bacheca. Riceveranno una notifica.",
- "removeMemberPopup-title": "Rimuovere membro?",
- "rename": "Rinomina",
- "rename-board": "Rinomina bacheca",
- "restore": "Ripristina",
- "save": "Salva",
- "search": "Cerca",
- "rules": "Regole",
- "search-cards": "Ricerca per titolo e descrizione scheda su questa bacheca",
- "search-example": "Testo da ricercare?",
- "select-color": "Seleziona Colore",
- "set-wip-limit-value": "Seleziona un limite per il massimo numero di attività in questa lista",
- "setWipLimitPopup-title": "Imposta limite di work in progress",
- "shortcut-assign-self": "Aggiungi te stesso alla scheda corrente",
- "shortcut-autocomplete-emoji": "Autocompletamento emoji",
- "shortcut-autocomplete-members": "Autocompletamento membri",
- "shortcut-clear-filters": "Pulisci tutti i filtri",
- "shortcut-close-dialog": "Chiudi finestra di dialogo",
- "shortcut-filter-my-cards": "Filtra le mie schede",
- "shortcut-show-shortcuts": "Apri questa lista di scorciatoie",
- "shortcut-toggle-filterbar": "Apri/chiudi la barra laterale dei filtri",
- "shortcut-toggle-sidebar": "Apri/chiudi la barra laterale della bacheca",
- "show-cards-minimum-count": "Mostra il contatore delle schede se la lista ne contiene più di",
- "sidebar-open": "Apri Sidebar",
- "sidebar-close": "Chiudi Sidebar",
- "signupPopup-title": "Crea un account",
- "star-board-title": "Clicca per stellare questa bacheca. Sarà mostrata all'inizio della tua lista bacheche.",
- "starred-boards": "Bacheche stellate",
- "starred-boards-description": "Le bacheche stellate vengono mostrato all'inizio della tua lista bacheche.",
- "subscribe": "Sottoscrivi",
- "team": "Team",
- "this-board": "questa bacheca",
- "this-card": "questa scheda",
- "spent-time-hours": "Tempo trascorso (ore)",
- "overtime-hours": "Overtime (ore)",
- "overtime": "Overtime",
- "has-overtime-cards": "Ci sono scheda scadute",
- "has-spenttime-cards": "Ci sono scheda con tempo impiegato",
- "time": "Ora",
- "title": "Titolo",
- "tracking": "Monitoraggio",
- "tracking-info": "Sarai notificato per tutte le modifiche alle schede delle quali sei creatore o membro.",
- "type": "Tipo",
- "unassign-member": "Rimuovi membro",
- "unsaved-description": "Hai una descrizione non salvata",
- "unwatch": "Non seguire",
- "upload": "Upload",
- "upload-avatar": "Carica un avatar",
- "uploaded-avatar": "Avatar caricato",
- "username": "Username",
- "view-it": "Vedi",
- "warn-list-archived": "Attenzione:questa scheda si trova in un elenco dell'archivio",
- "watch": "Segui",
- "watching": "Stai seguendo",
- "watching-info": "Sarai notificato per tutte le modifiche in questa bacheca",
- "welcome-board": "Bacheca di benvenuto",
- "welcome-swimlane": "Pietra miliare 1",
- "welcome-list1": "Basi",
- "welcome-list2": "Avanzate",
- "card-templates-swimlane": "Template scheda",
- "list-templates-swimlane": "Elenca i template",
- "board-templates-swimlane": "Bacheca dei template",
- "what-to-do": "Cosa vuoi fare?",
- "wipLimitErrorPopup-title": "Limite work in progress non valido.",
- "wipLimitErrorPopup-dialog-pt1": "Il numero di compiti in questa lista è maggiore del limite di work in progress che hai definito in precedenza.",
- "wipLimitErrorPopup-dialog-pt2": "Per favore, sposta alcuni dei compiti fuori da questa lista, oppure imposta un limite di work in progress più alto.",
- "admin-panel": "Pannello dell'Amministratore",
- "settings": "Impostazioni",
- "people": "Persone",
- "registration": "Registrazione",
- "disable-self-registration": "Disabilita Auto-registrazione",
- "invite": "Invita",
- "invite-people": "Invita persone",
- "to-boards": "Alla(e) bacheca",
- "email-addresses": "Indirizzi email",
- "smtp-host-description": "L'indirizzo del server SMTP che gestisce le tue email.",
- "smtp-port-description": "La porta che il tuo server SMTP utilizza per le email in uscita.",
- "smtp-tls-description": "Abilita supporto TLS per server SMTP",
- "smtp-host": "SMTP Host",
- "smtp-port": "Porta SMTP",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "Supporto TLS",
- "send-from": "Da",
- "send-smtp-test": "Invia un'email di test a te stesso",
- "invitation-code": "Codice d'invito",
- "email-invite-register-subject": "__inviter__ ti ha inviato un invito",
- "email-invite-register-text": "Gentile __user__,\n\n__inviter__ ti ha invitato a partecipare a questa bacheca kanban per collaborare.\n\nPer favore segui il collegamento qui sotto:\n__url__\n\nIl tuo codice di invito è: __icode__\n\nGrazie.",
- "email-smtp-test-subject": "E-Mail di prova SMTP",
- "email-smtp-test-text": "Hai inviato un'email con successo",
- "error-invitation-code-not-exist": "Il codice d'invito non esiste",
- "error-notAuthorized": "Non sei autorizzato ad accedere a questa pagina.",
- "outgoing-webhooks": "Server esterni",
- "outgoingWebhooksPopup-title": "Server esterni",
- "boardCardTitlePopup-title": "Filtro per Titolo Scheda",
- "new-outgoing-webhook": "Nuovo webhook in uscita",
- "no-name": "(Sconosciuto)",
- "Node_version": "Versione di Node",
- "OS_Arch": "Architettura del sistema operativo",
- "OS_Cpus": "Conteggio della CPU del sistema operativo",
- "OS_Freemem": "Memoria libera del sistema operativo",
- "OS_Loadavg": "Carico medio del sistema operativo",
- "OS_Platform": "Piattaforma del sistema operativo",
- "OS_Release": "Versione di rilascio del sistema operativo",
- "OS_Totalmem": "Memoria totale del sistema operativo",
- "OS_Type": "Tipo di sistema operativo",
- "OS_Uptime": "Tempo di attività del sistema operativo.",
- "days": "giorni",
- "hours": "ore",
- "minutes": "minuti",
- "seconds": "secondi",
- "show-field-on-card": "Visualizza questo campo sulla scheda",
- "automatically-field-on-card": "Crea automaticamente i campi per tutte le schede",
- "showLabel-field-on-card": "Mostra l'etichetta di campo su minischeda",
- "yes": "Sì",
- "no": "No",
- "accounts": "Profili",
- "accounts-allowEmailChange": "Permetti modifica dell'email",
- "accounts-allowUserNameChange": "Consenti la modifica del nome utente",
- "createdAt": "creato alle",
- "verified": "Verificato",
- "active": "Attivo",
- "card-received": "Ricevuta",
- "card-received-on": "Ricevuta il",
- "card-end": "Fine",
- "card-end-on": "Termina il",
- "editCardReceivedDatePopup-title": "Cambia data ricezione",
- "editCardEndDatePopup-title": "Cambia data finale",
- "setCardColorPopup-title": "Imposta il colore",
- "setCardActionsColorPopup-title": "Scegli un colore",
- "setSwimlaneColorPopup-title": "Scegli un colore",
- "setListColorPopup-title": "Scegli un colore",
- "assigned-by": "Assegnato da",
- "requested-by": "Richiesto da",
- "board-delete-notice": "L'eliminazione è permanente. Tutte le azioni, liste e schede associate a questa bacheca andranno perse.",
- "delete-board-confirm-popup": "Tutte le liste, schede, etichette e azioni saranno rimosse e non sarai più in grado di recuperare il contenuto della bacheca. L'azione non è annullabile.",
- "boardDeletePopup-title": "Eliminare la bacheca?",
- "delete-board": "Elimina bacheca",
- "default-subtasks-board": "Sottocompiti per la bacheca __board__",
- "default": "Predefinito",
- "queue": "Coda",
- "subtask-settings": "Impostazioni sotto-compiti",
- "boardSubtaskSettingsPopup-title": "Impostazioni sotto-compiti della bacheca",
- "show-subtasks-field": "Le schede posso avere dei sotto-compiti",
- "deposit-subtasks-board": "Deposita i sotto compiti in questa bacheca",
- "deposit-subtasks-list": "Lista di destinaizoni per questi sotto-compiti",
- "show-parent-in-minicard": "Mostra genirotri nelle mini schede:",
- "prefix-with-full-path": "Prefisso con percorso completo",
- "prefix-with-parent": "Prefisso con genitore",
- "subtext-with-full-path": "Sottotesto con percorso completo",
- "subtext-with-parent": "Sotto-testo con genitore",
- "change-card-parent": "Cambia la scheda genitore",
- "parent-card": "Scheda genitore",
- "source-board": "Bacheca d'origine",
- "no-parent": "Non mostrare i genitori",
- "activity-added-label": "L' etichetta '%s' è stata aggiunta a %s",
- "activity-removed-label": "L'etichetta '%s' è stata rimossa da %s",
- "activity-delete-attach": "Rimosso un allegato da %s",
- "activity-added-label-card": "aggiunta etichetta '%s'",
- "activity-removed-label-card": "L' etichetta '%s' è stata rimossa.",
- "activity-delete-attach-card": "Cancella un allegato",
- "activity-set-customfield": "imposta campo personalizzato '%s' a '%s' in %s",
- "activity-unset-customfield": "campo personalizzato non impostato '%s' in %s",
- "r-rule": "Ruolo",
- "r-add-trigger": "Aggiungi trigger",
- "r-add-action": "Aggiungi azione",
- "r-board-rules": "Regole della bacheca",
- "r-add-rule": "Aggiungi regola",
- "r-view-rule": "Visualizza regola",
- "r-delete-rule": "Cancella regola",
- "r-new-rule-name": "Titolo nuova regola",
- "r-no-rules": "Nessuna regola",
- "r-when-a-card": "Quando una scheda",
- "r-is": "è",
- "r-is-moved": "viene spostata",
- "r-added-to": "Aggiunto/a a",
- "r-removed-from": "Rimosso da",
- "r-the-board": "La bacheca",
- "r-list": "lista",
- "set-filter": "Imposta un filtro",
- "r-moved-to": "Spostato/a a",
- "r-moved-from": "Spostato/a da",
- "r-archived": "Spostato/a nell'archivio",
- "r-unarchived": "Ripristinato/a dall'archivio",
- "r-a-card": "una scheda",
- "r-when-a-label-is": "Quando un'etichetta viene",
- "r-when-the-label": "Quando l'etichetta viene",
- "r-list-name": "Nome dell'elenco",
- "r-when-a-member": "Quando un membro viene",
- "r-when-the-member": "Quando un membro viene",
- "r-name": "nome",
- "r-when-a-attach": "Quando un allegato",
- "r-when-a-checklist": "Quando una checklist è",
- "r-when-the-checklist": "Quando la checklist",
- "r-completed": "Completato/a",
- "r-made-incomplete": "Rendi incompleto",
- "r-when-a-item": "Quando un elemento della checklist è",
- "r-when-the-item": "Quando un elemento della checklist",
- "r-checked": "Selezionato",
- "r-unchecked": "Deselezionato",
- "r-move-card-to": "Sposta scheda a",
- "r-top-of": "Al di sopra di",
- "r-bottom-of": "Al di sotto di",
- "r-its-list": "il suo elenco",
- "r-archive": "Sposta nell'Archivio",
- "r-unarchive": "Ripristina dall'archivio",
- "r-card": "scheda",
- "r-add": "Aggiungere",
- "r-remove": "Rimuovi",
- "r-label": "etichetta",
- "r-member": "membro",
- "r-remove-all": "Rimuovi tutti i membri dalla scheda",
- "r-set-color": "Imposta il colore a",
- "r-checklist": "checklist",
- "r-check-all": "Spunta tutti",
- "r-uncheck-all": "Togli la spunta a tutti",
- "r-items-check": "Elementi della checklist",
- "r-check": "Spunta",
- "r-uncheck": "Togli la spunta",
- "r-item": "elemento",
- "r-of-checklist": "della lista di cose da fare",
- "r-send-email": "Invia un e-mail",
- "r-to": "a",
- "r-subject": "soggetto",
- "r-rule-details": "Dettagli della regola",
- "r-d-move-to-top-gen": "Sposta la scheda al di sopra del suo elenco",
- "r-d-move-to-top-spec": "Sposta la scheda la di sopra dell'elenco",
- "r-d-move-to-bottom-gen": "Sposta la scheda in fondo alla sua lista",
- "r-d-move-to-bottom-spec": "Muovi la scheda in fondo alla lista",
- "r-d-send-email": "Spedisci email",
- "r-d-send-email-to": "a",
- "r-d-send-email-subject": "soggetto",
- "r-d-send-email-message": "Messaggio",
- "r-d-archive": "Sposta la scheda nell'archivio",
- "r-d-unarchive": "Ripristina la scheda dall'archivio",
- "r-d-add-label": "Aggiungi etichetta",
- "r-d-remove-label": "Rimuovi Etichetta",
- "r-create-card": "Crea una nuova scheda",
- "r-in-list": "in elenco",
- "r-in-swimlane": "nel diagramma swimlane",
- "r-d-add-member": "Aggiungi membro",
- "r-d-remove-member": "Rimuovi membro",
- "r-d-remove-all-member": "Rimouvi tutti i membri",
- "r-d-check-all": "Seleziona tutti gli item di una lista",
- "r-d-uncheck-all": "Deseleziona tutti gli items di una lista",
- "r-d-check-one": "Seleziona",
- "r-d-uncheck-one": "Deselezionalo",
- "r-d-check-of-list": "della lista di cose da fare",
- "r-d-add-checklist": "Aggiungi lista di cose da fare",
- "r-d-remove-checklist": "Rimuovi check list",
- "r-by": "da",
- "r-add-checklist": "Aggiungi lista di cose da fare",
- "r-with-items": "con elementi",
- "r-items-list": "elemento1,elemento2,elemento3",
- "r-add-swimlane": "Aggiungi un diagramma swimlane",
- "r-swimlane-name": "Nome diagramma swimlane",
- "r-board-note": "Nota: Lascia un campo vuoto per abbinare ogni possibile valore",
- "r-checklist-note": "Nota: Gli elementi della checklist devono essere scritti come valori separati dalla virgola",
- "r-when-a-card-is-moved": "Quando una scheda viene spostata su un'altra lista",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "Oauth2",
- "cas": "CAS",
- "authentication-method": "Metodo di Autenticazione",
- "authentication-type": "Tipo Autenticazione",
- "custom-product-name": "Nome prodotto personalizzato",
- "layout": "Layout",
- "hide-logo": "Nascondi il logo",
- "add-custom-html-after-body-start": "Aggiungi codice HTML personalizzato dopo <body> inzio",
- "add-custom-html-before-body-end": "Aggiunti il codice HTML prima di </body> fine",
- "error-undefined": "Qualcosa è andato storto",
- "error-ldap-login": "C'è stato un errore mentre provavi ad effettuare il login",
- "display-authentication-method": "Mostra il metodo di autenticazione",
- "default-authentication-method": "Metodo di autenticazione predefinito",
- "duplicate-board": "Duplica bacheca",
- "people-number": "Il numero di persone è:",
- "swimlaneDeletePopup-title": "Cancella diagramma swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Cancella tutto",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Accetta",
+ "act-activity-notify": "Notifica attività",
+ "act-addAttachment": "aggiunto allegato __attachment__ alla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-deleteAttachment": "eliminato allegato __attachment__ dalla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-addSubtask": "aggiunto sottotask __subtask__ alla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-addLabel": "aggiunta etichetta __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-addedLabel": "aggiunta etichetta __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-removeLabel": "rimossa etichetta __label__ dalla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-removedLabel": "rimossa etichetta __label__ dalla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-addChecklist": "aggiunta lista di controllo __label__ alla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-addChecklistItem": "aggiunto elemento __checklistItem__ alla lista di controllo __checklist__ della scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-removeChecklist": "rimossa lista di controllo __checklist__ dalla scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-removeChecklistItem": "rimosso elemento __checklistitem__ dalla lista di controllo __checkList__ della scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "act-checkedItem": "attivato __checklistitem__ nella lista di controllo __checklist__ della scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-uncheckedItem": "disattivato __checklistItem__ della lista di controllo __checklist__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-completeChecklist": "completata lista di controllo __checklist__ nella scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-uncompleteChecklist": "lista di controllo __checklist__ incompleta nella scheda __card__ della lista __list__ in corsia __swimlane__ della bacheca __board__",
+ "act-addComment": "commento sulla scheda __card__: __comment__ nella lista __list__ della corsia __swimlane__ della bacheca __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "bacheca __board__ creata",
+ "act-createSwimlane": "creata corsia __swimlane__ alla bacheca __board__",
+ "act-createCard": "scheda __card__ creata nella lista __list__ della corsia __swimlane__ della bacheca __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "aggiunta lista __list__ alla bacheca __board__",
+ "act-addBoardMember": "aggiunto membro __member__ alla bacheca __board__",
+ "act-archivedBoard": "Bacheca __board__ archiviata",
+ "act-archivedCard": "Scheda __card__ della lista __list__ della corsia __swimlane__ della bacheca __board__ archiviata",
+ "act-archivedList": "Lista __list__ della corsia __swimlane__ della bacheca __board__ archiviata",
+ "act-archivedSwimlane": "Corsia __swimlane__ della bacheca __board__ archiviata",
+ "act-importBoard": "Bacheca __board__ importata",
+ "act-importCard": "scheda importata __card__ nella lista __list__ della corsia __swimlane__ della bacheca __board__",
+ "act-importList": "lista __list__ importata nella corsia __swimlane__ della bacheca __board__",
+ "act-joinMember": "aggiunto membro __member__ alla scheda __card__ della list __list__ nella corsia __swimlane__ della bacheca __board__",
+ "act-moveCard": "spostata scheda __card__ della bacheca __board__ dalla lista __oldList__ della corsia __oldSwimlane__ alla lista __list__ della corsia __swimlane__",
+ "act-moveCardToOtherBoard": "postata scheda __card__ dalla lista __oldList__ della corsia __oldSwimlane__ della bacheca __oldBoard__ alla lista __list__ nella corsia __swimlane__ della bacheca __board__",
+ "act-removeBoardMember": "rimosso membro __member__ dalla bacheca __board__",
+ "act-restoredCard": "scheda ripristinata __card__ della lista __list__ nella corsia __swimlane__ della bacheca __board__",
+ "act-unjoinMember": "rimosso membro __member__ dalla scheda __card__ della lista __list__ della corsia __swimlane__ nella bacheca __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Azioni",
+ "activities": "Attività",
+ "activity": "Attività",
+ "activity-added": "ha aggiunto %s a %s",
+ "activity-archived": "%s spostato nell'archivio",
+ "activity-attached": "allegato %s a %s",
+ "activity-created": "creato %s",
+ "activity-customfield-created": "%s creato come campo personalizzato",
+ "activity-excluded": "escluso %s da %s",
+ "activity-imported": "importato %s in %s da %s",
+ "activity-imported-board": "importato %s da %s",
+ "activity-joined": "si è unito a %s",
+ "activity-moved": "spostato %s da %s a %s",
+ "activity-on": "su %s",
+ "activity-removed": "rimosso %s da %s",
+ "activity-sent": "inviato %s a %s",
+ "activity-unjoined": "ha abbandonato %s",
+ "activity-subtask-added": "aggiunto il sottocompito a 1%s",
+ "activity-checked-item": "selezionata %s nella checklist %s di %s",
+ "activity-unchecked-item": "disattivato %s nella checklist %s di %s",
+ "activity-checklist-added": "aggiunta checklist a %s",
+ "activity-checklist-removed": "È stata rimossa una checklist da%s",
+ "activity-checklist-completed": "checklist __checklist__ completata nella scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "activity-checklist-uncompleted": "La checklist non è stata completata",
+ "activity-checklist-item-added": "Aggiunto l'elemento checklist a '%s' in %s",
+ "activity-checklist-item-removed": "è stato rimosso un elemento della checklist da '%s' in %s",
+ "add": "Aggiungere",
+ "activity-checked-item-card": "%s è stato selezionato nella checklist %s",
+ "activity-unchecked-item-card": "%s è stato deselezionato nella checklist %s",
+ "activity-checklist-completed-card": "checklist __label__ completata nella scheda __card__ della lista __list__ della corsia __swimlane__  nella bacheca __board__",
+ "activity-checklist-uncompleted-card": "La checklist %s non è completa",
+ "add-attachment": "Aggiungi Allegato",
+ "add-board": "Aggiungi Bacheca",
+ "add-card": "Aggiungi Scheda",
+ "add-swimlane": "Aggiungi Diagramma Swimlane",
+ "add-subtask": "Aggiungi sotto-compito",
+ "add-checklist": "Aggiungi Checklist",
+ "add-checklist-item": "Aggiungi un elemento alla checklist",
+ "add-cover": "Aggiungi copertina",
+ "add-label": "Aggiungi Etichetta",
+ "add-list": "Aggiungi Lista",
+ "add-members": "Aggiungi membri",
+ "added": "Aggiunto",
+ "addMemberPopup-title": "Membri",
+ "admin": "Amministratore",
+ "admin-desc": "Può vedere e modificare schede, rimuovere membri e modificare le impostazioni della bacheca.",
+ "admin-announcement": "Annunci",
+ "admin-announcement-active": "Attiva annunci di sistema",
+ "admin-announcement-title": "Annunci dall'Amministratore",
+ "all-boards": "Tutte le bacheche",
+ "and-n-other-card": "E __count__ altra scheda",
+ "and-n-other-card_plural": "E __count__ altre schede",
+ "apply": "Applica",
+ "app-is-offline": "Caricamento, attendere prego. Aggiornare la pagina porterà ad una perdita dei dati. Se il caricamento non dovesse funzionare, per favore controlla che il server non sia stato fermato.",
+ "archive": "Sposta nell'Archivio",
+ "archive-all": "Sposta tutto nell'Archivio",
+ "archive-board": "Sposta la bacheca nell'Archivio",
+ "archive-card": "Sposta la scheda nell'Archivio",
+ "archive-list": "Sposta elenco nell'Archivio",
+ "archive-swimlane": "Sposta diagramma nell'Archivio",
+ "archive-selection": "Sposta la selezione nell'archivio",
+ "archiveBoardPopup-title": "Spostare al bacheca nell'archivio?",
+ "archived-items": "Archivia",
+ "archived-boards": "Bacheche nell'archivio",
+ "restore-board": "Ripristina Bacheca",
+ "no-archived-boards": "Nessuna bacheca presente nell'archivio",
+ "archives": "Archivia",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Aggiungi membro",
+ "attached": "allegato",
+ "attachment": "Allegato",
+ "attachment-delete-pop": "L'eliminazione di un allegato è permanente. Non è possibile annullare.",
+ "attachmentDeletePopup-title": "Eliminare l'allegato?",
+ "attachments": "Allegati",
+ "auto-watch": "Segui automaticamente le bacheche quando vengono create.",
+ "avatar-too-big": "L'avatar è troppo grande (70KB max)",
+ "back": "Indietro",
+ "board-change-color": "Cambia colore",
+ "board-nb-stars": "%s stelle",
+ "board-not-found": "Bacheca non trovata",
+ "board-private-info": "Questa bacheca sarà <strong>privata</strong>.",
+ "board-public-info": "Questa bacheca sarà <strong>pubblica</strong>.",
+ "boardChangeColorPopup-title": "Cambia sfondo della bacheca",
+ "boardChangeTitlePopup-title": "Rinomina bacheca",
+ "boardChangeVisibilityPopup-title": "Cambia visibilità",
+ "boardChangeWatchPopup-title": "Cambia faccia",
+ "boardMenuPopup-title": "Impostazioni bacheca",
+ "boards": "Bacheche",
+ "board-view": "Visualizza bacheca",
+ "board-view-cal": "Calendario",
+ "board-view-swimlanes": "Diagramma Swimlane",
+ "board-view-lists": "Liste",
+ "bucket-example": "Per esempio come \"una lista di cose da fare\"",
+ "cancel": "Cancella",
+ "card-archived": "Questa scheda è stata spostata nell'archivio",
+ "board-archived": "Questa bacheca è stata spostata nell'archivio",
+ "card-comments-title": "Questa scheda ha %s commenti.",
+ "card-delete-notice": "L'eliminazione è permanente. Tutte le azioni associate a questa scheda andranno perse.",
+ "card-delete-pop": "Tutte le azioni saranno rimosse dal flusso attività e non sarai in grado di riaprire la scheda. Non potrai tornare indietro.",
+ "card-delete-suggest-archive": "Puoi spostare una scheda nell'archivio per rimuoverla dalla bacheca e mantenere la sua attività",
+ "card-due": "Scadenza",
+ "card-due-on": "Scade",
+ "card-spent": "Tempo trascorso",
+ "card-edit-attachments": "Modifica allegati",
+ "card-edit-custom-fields": "Modifica campo personalizzato",
+ "card-edit-labels": "Modifica etichette",
+ "card-edit-members": "Modifica membri",
+ "card-labels-title": "Cambia le etichette per questa scheda.",
+ "card-members-title": "Aggiungi o rimuovi membri della bacheca da questa scheda",
+ "card-start": "Inizio",
+ "card-start-on": "Inizia",
+ "cardAttachmentsPopup-title": "Allega da",
+ "cardCustomField-datePopup-title": "Cambia data",
+ "cardCustomFieldsPopup-title": "Modifica campo personalizzato",
+ "cardDeletePopup-title": "Elimina scheda?",
+ "cardDetailsActionsPopup-title": "Azioni scheda",
+ "cardLabelsPopup-title": "Etichette",
+ "cardMembersPopup-title": "Membri",
+ "cardMorePopup-title": "Altro",
+ "cardTemplatePopup-title": "Crea un template",
+ "cards": "Schede",
+ "cards-count": "Schede",
+ "casSignIn": "Entra con CAS",
+ "cardType-card": "Scheda",
+ "cardType-linkedCard": "Scheda collegata",
+ "cardType-linkedBoard": "Bacheca collegata",
+ "change": "Cambia",
+ "change-avatar": "Cambia avatar",
+ "change-password": "Cambia password",
+ "change-permissions": "Cambia permessi",
+ "change-settings": "Cambia impostazioni",
+ "changeAvatarPopup-title": "Cambia avatar",
+ "changeLanguagePopup-title": "Cambia lingua",
+ "changePasswordPopup-title": "Cambia password",
+ "changePermissionsPopup-title": "Cambia permessi",
+ "changeSettingsPopup-title": "Cambia impostazioni",
+ "subtasks": "Sotto-compiti",
+ "checklists": "Checklist",
+ "click-to-star": "Clicca per stellare questa bacheca",
+ "click-to-unstar": "Clicca per togliere la stella da questa bacheca",
+ "clipboard": "Clipboard o drag & drop",
+ "close": "Chiudi",
+ "close-board": "Chiudi bacheca",
+ "close-board-pop": "Potrai ripristinare la bacheca cliccando sul tasto \"Archivio\" presente nell'intestazione della home.",
+ "color-black": "nero",
+ "color-blue": "blu",
+ "color-crimson": "Rosso cremisi",
+ "color-darkgreen": "Verde scuro",
+ "color-gold": "Dorato",
+ "color-gray": "Grigio",
+ "color-green": "verde",
+ "color-indigo": "Indaco",
+ "color-lime": "lime",
+ "color-magenta": "Magenta",
+ "color-mistyrose": "Mistyrose",
+ "color-navy": "Navy",
+ "color-orange": "arancione",
+ "color-paleturquoise": "Turchese chiaro",
+ "color-peachpuff": "Pesca",
+ "color-pink": "rosa",
+ "color-plum": "Prugna",
+ "color-purple": "viola",
+ "color-red": "rosso",
+ "color-saddlebrown": "Saddlebrown",
+ "color-silver": "Argento",
+ "color-sky": "azzurro",
+ "color-slateblue": "Ardesia",
+ "color-white": "Bianco",
+ "color-yellow": "giallo",
+ "unset-color": "Non impostato",
+ "comment": "Commento",
+ "comment-placeholder": "Scrivi Commento",
+ "comment-only": "Solo commenti",
+ "comment-only-desc": "Puoi commentare solo le schede.",
+ "no-comments": "Non ci sono commenti.",
+ "no-comments-desc": "Impossibile visualizzare commenti o attività.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Sei sicuro di voler eliminare il sotto-compito?",
+ "confirm-checklist-delete-dialog": "Sei sicuro di voler eliminare la checklist?",
+ "copy-card-link-to-clipboard": "Copia link della scheda sulla clipboard",
+ "linkCardPopup-title": "Collega scheda",
+ "searchElementPopup-title": "Cerca",
+ "copyCardPopup-title": "Copia Scheda",
+ "copyChecklistToManyCardsPopup-title": "Copia template checklist su più schede",
+ "copyChecklistToManyCardsPopup-instructions": "Titolo e la descrizione della scheda di destinazione in questo formato JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titolo prima scheda\", \"description\":\"Descrizione prima scheda\"}, {\"title\":\"Titolo seconda scheda\",\"description\":\"Descrizione seconda scheda\"},{\"title\":\"Titolo ultima scheda\",\"description\":\"Descrizione ultima scheda\"} ]",
+ "create": "Crea",
+ "createBoardPopup-title": "Crea bacheca",
+ "chooseBoardSourcePopup-title": "Importa bacheca",
+ "createLabelPopup-title": "Crea etichetta",
+ "createCustomField": "Crea campo",
+ "createCustomFieldPopup-title": "Crea campo",
+ "current": "corrente",
+ "custom-field-delete-pop": "Non potrai tornare indietro. Questa azione rimuoverà questo campo personalizzato da tutte le schede ed eliminerà ogni sua traccia.",
+ "custom-field-checkbox": "Casella di scelta",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Lista a discesa",
+ "custom-field-dropdown-none": "(niente)",
+ "custom-field-dropdown-options": "Lista opzioni",
+ "custom-field-dropdown-options-placeholder": "Premi invio per aggiungere altre opzioni",
+ "custom-field-dropdown-unknown": "(sconosciuto)",
+ "custom-field-number": "Numero",
+ "custom-field-text": "Testo",
+ "custom-fields": "Campi personalizzati",
+ "date": "Data",
+ "decline": "Declina",
+ "default-avatar": "Avatar predefinito",
+ "delete": "Elimina",
+ "deleteCustomFieldPopup-title": "Elimina il campo personalizzato?",
+ "deleteLabelPopup-title": "Eliminare etichetta?",
+ "description": "Descrizione",
+ "disambiguateMultiLabelPopup-title": "Disambiguare l'azione Etichetta",
+ "disambiguateMultiMemberPopup-title": "Disambiguare l'azione Membro",
+ "discard": "Scarta",
+ "done": "Fatto",
+ "download": "Download",
+ "edit": "Modifica",
+ "edit-avatar": "Cambia avatar",
+ "edit-profile": "Modifica profilo",
+ "edit-wip-limit": "Modifica limite di work in progress",
+ "soft-wip-limit": "Limite Work in progress soft",
+ "editCardStartDatePopup-title": "Cambia data di inizio",
+ "editCardDueDatePopup-title": "Cambia data di scadenza",
+ "editCustomFieldPopup-title": "Modifica campo",
+ "editCardSpentTimePopup-title": "Cambia tempo trascorso",
+ "editLabelPopup-title": "Cambia etichetta",
+ "editNotificationPopup-title": "Modifica notifiche",
+ "editProfilePopup-title": "Modifica profilo",
+ "email": "Email",
+ "email-enrollAccount-subject": "Creato un account per te su __siteName__",
+ "email-enrollAccount-text": "Ciao __user__,\n\nPer iniziare ad usare il servizio, clicca sul link seguente:\n\n__url__\n\nGrazie.",
+ "email-fail": "Invio email fallito",
+ "email-fail-text": "Errore nel tentativo di invio email",
+ "email-invalid": "Email non valida",
+ "email-invite": "Invita via email",
+ "email-invite-subject": "__inviter__ ti ha inviato un invito",
+ "email-invite-text": "Caro __user__,\n\n__inviter__ ti ha invitato ad unirti alla bacheca \"__board__\" per le collaborazioni.\n\nPer favore clicca sul link seguente:\n\n__url__\n\nGrazie.",
+ "email-resetPassword-subject": "Ripristina la tua password su on __siteName__",
+ "email-resetPassword-text": "Ciao __user__,\n\nPer ripristinare la tua password, clicca sul link seguente:\n\n__url__\n\nGrazie.",
+ "email-sent": "Email inviata",
+ "email-verifyEmail-subject": "Verifica il tuo indirizzo email su on __siteName__",
+ "email-verifyEmail-text": "Ciao __user__,\n\nPer verificare il tuo account email, clicca sul link seguente:\n\n__url__\n\nGrazie.",
+ "enable-wip-limit": "Abilita limite di work in progress",
+ "error-board-doesNotExist": "Questa bacheca non esiste",
+ "error-board-notAdmin": "Devi essere admin di questa bacheca per poterlo fare",
+ "error-board-notAMember": "Devi essere un membro di questa bacheca per poterlo fare",
+ "error-json-malformed": "Il tuo testo non è un JSON valido",
+ "error-json-schema": "Il tuo file JSON non contiene le giuste informazioni nel formato corretto",
+ "error-list-doesNotExist": "Questa lista non esiste",
+ "error-user-doesNotExist": "Questo utente non esiste",
+ "error-user-notAllowSelf": "Non puoi invitare te stesso",
+ "error-user-notCreated": "L'utente non è stato creato",
+ "error-username-taken": "Questo username è già utilizzato",
+ "error-email-taken": "L'email è già stata presa",
+ "export-board": "Esporta bacheca",
+ "filter": "Filtra",
+ "filter-cards": "Filtra schede",
+ "filter-clear": "Pulisci filtri",
+ "filter-no-label": "Nessuna etichetta",
+ "filter-no-member": "Nessun membro",
+ "filter-no-custom-fields": "Nessun campo personalizzato",
+ "filter-on": "Il filtro è attivo",
+ "filter-on-desc": "Stai filtrando le schede su questa bacheca. Clicca qui per modificare il filtro,",
+ "filter-to-selection": "Seleziona",
+ "advanced-filter-label": "Filtro avanzato",
+ "advanced-filter-description": "Il filtro avanzato permette di scrivere una stringa contenente i seguenti operatori: == != <= >= && || ( ) Uno spazio è usato come separatore tra gli operatori. Si può filtrare per tutti i campi personalizzati, scrivendo i loro nomi e valori. Per esempio: Campo1 == Valore1. Nota: Se i campi o i valori contengono spazi, è necessario incapsularli all'interno di paici singoli. Per esempio: 'Campo 1' == 'Valore 1'. Per i singoli caratteri di controllo (' V) che devono essere ignorati, si può usare \\. Per esempio: C1 == Campo1 == L'\\ho. Si possono anche combinare condizioni multiple. Per esempio: C1 == V1 || C1 ==V2. Di norma tutti gli operatori vengono lettti da sinistra a destra. Si può cambiare l'ordine posizionando delle parentesi. Per esempio: C1 == V1 && ( C2 == V2 || C2 == V3) . Inoltre è possibile cercare nei campi di testo usando le espressioni regolari (n.d.t. regex): F1 ==/Tes.*/i",
+ "fullname": "Nome completo",
+ "header-logo-title": "Torna alla tua bacheca.",
+ "hide-system-messages": "Nascondi i messaggi di sistema",
+ "headerBarCreateBoardPopup-title": "Crea bacheca",
+ "home": "Home",
+ "import": "Importa",
+ "link": "Collegamento",
+ "import-board": "Importa bacheca",
+ "import-board-c": "Importa bacheca",
+ "import-board-title-trello": "Importa una bacheca da Trello",
+ "import-board-title-wekan": "Importa bacheca dall'esportazione precedente",
+ "import-sandstorm-backup-warning": "Non cancellare i dati che importi dalla bacheca esportata in origine o da Trello prima che il controllo finisca e si riapra ancora, altrimenti otterrai un messaggio di errore Bacheca non trovata, che significa che i dati sono perduti.",
+ "import-sandstorm-warning": "La bacheca importata cancellerà tutti i dati esistenti su questa bacheca e li rimpiazzerà con quelli della bacheca importata.",
+ "from-trello": "Da Trello",
+ "from-wekan": "Dall'esportazione precedente",
+ "import-board-instruction-trello": "Nella tua bacheca Trello vai a 'Menu', poi 'Altro', 'Stampa ed esporta', 'Esporta JSON', e copia il testo che compare.",
+ "import-board-instruction-wekan": "Nella tua bacheca vai su \"Menu\", poi \"Esporta la bacheca\", e copia il testo nel file scaricato",
+ "import-board-instruction-about-errors": "Se hai degli errori quando importi una bacheca, qualche volta l'importazione funziona comunque, e la bacheca si trova nella pagina \"Tutte le bacheche\"",
+ "import-json-placeholder": "Incolla un JSON valido qui",
+ "import-map-members": "Mappatura dei membri",
+ "import-members-map": "La bacheca che hai importato contiene alcuni membri. Per favore scegli i membri che vuoi importare tra i tuoi utenti",
+ "import-show-user-mapping": "Rivedi la mappatura dei membri",
+ "import-user-select": "Scegli l'utente che vuoi venga utilizzato come questo membro",
+ "importMapMembersAddPopup-title": "Scegli membro",
+ "info": "Versione",
+ "initials": "Iniziali",
+ "invalid-date": "Data non valida",
+ "invalid-time": "Tempo non valido",
+ "invalid-user": "User non valido",
+ "joined": "si è unito a",
+ "just-invited": "Sei stato appena invitato a questa bacheca",
+ "keyboard-shortcuts": "Scorciatoie da tastiera",
+ "label-create": "Crea etichetta",
+ "label-default": "%s etichetta (default)",
+ "label-delete-pop": "Non potrai tornare indietro. Procedendo, rimuoverai questa etichetta da tutte le schede e distruggerai la sua cronologia.",
+ "labels": "Etichette",
+ "language": "Lingua",
+ "last-admin-desc": "Non puoi cambiare i ruoli perché deve esserci almeno un admin.",
+ "leave-board": "Abbandona bacheca",
+ "leave-board-pop": "Sei sicuro di voler abbandonare __boardTitle__? Sarai rimosso da tutte le schede in questa bacheca.",
+ "leaveBoardPopup-title": "Abbandona Bacheca?",
+ "link-card": "Link a questa scheda",
+ "list-archive-cards": "Sposta tutte le schede in questo elenco nell'Archivio",
+ "list-archive-cards-pop": "Questo rimuoverà tutte le schede nell'elenco dalla bacheca. Per vedere le schede nell'archivio e portarle dov'erano nella bacheca, clicca su \"Menu\" > \"Archivio\".",
+ "list-move-cards": "Sposta tutte le schede in questa lista",
+ "list-select-cards": "Selezione tutte le schede in questa lista",
+ "set-color-list": "Imposta un colore",
+ "listActionPopup-title": "Azioni disponibili",
+ "swimlaneActionPopup-title": "Azioni diagramma Swimlane",
+ "swimlaneAddPopup-title": "Aggiungi un diagramma Swimlane di seguito",
+ "listImportCardPopup-title": "Importa una scheda di Trello",
+ "listMorePopup-title": "Altro",
+ "link-list": "Link a questa lista",
+ "list-delete-pop": "Tutte le azioni saranno rimosse dal flusso attività e non sarai in grado di recuperare la lista. Non potrai tornare indietro.",
+ "list-delete-suggest-archive": "Puoi spostare un elenco nell'archivio per rimuoverlo dalla bacheca e mantentere la sua attività.",
+ "lists": "Liste",
+ "swimlanes": "Diagramma Swimlane",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Impostazioni membri",
+ "members": "Membri",
+ "menu": "Menu",
+ "move-selection": "Sposta selezione",
+ "moveCardPopup-title": "Sposta scheda",
+ "moveCardToBottom-title": "Sposta in fondo",
+ "moveCardToTop-title": "Sposta in alto",
+ "moveSelectionPopup-title": "Sposta selezione",
+ "multi-selection": "Multi-Selezione",
+ "multi-selection-on": "Multi-Selezione attiva",
+ "muted": "Silenziato",
+ "muted-info": "Non sarai mai notificato delle modifiche in questa bacheca",
+ "my-boards": "Le mie bacheche",
+ "name": "Nome",
+ "no-archived-cards": "Non ci sono schede nell'archivio.",
+ "no-archived-lists": "Non ci sono elenchi nell'archivio.",
+ "no-archived-swimlanes": "Non ci sono diagrammi Swimlane nell'archivio.",
+ "no-results": "Nessun risultato",
+ "normal": "Normale",
+ "normal-desc": "Può visionare e modificare le schede. Non può cambiare le impostazioni.",
+ "not-accepted-yet": "Invitato non ancora accettato",
+ "notify-participate": "Ricevi aggiornamenti per qualsiasi scheda a cui partecipi come creatore o membro",
+ "notify-watch": "Ricevi aggiornamenti per tutte le bacheche, liste o schede che stai seguendo",
+ "optional": "opzionale",
+ "or": "o",
+ "page-maybe-private": "Questa pagina potrebbe essere privata. Potresti essere in grado di vederla <a href='%s'>facendo il log-in</a>.",
+ "page-not-found": "Pagina non trovata.",
+ "password": "Password",
+ "paste-or-dragdrop": "per incollare, oppure trascina & rilascia il file immagine (solo immagini)",
+ "participating": "Partecipando",
+ "preview": "Anteprima",
+ "previewAttachedImagePopup-title": "Anteprima",
+ "previewClipboardImagePopup-title": "Anteprima",
+ "private": "Privata",
+ "private-desc": "Questa bacheca è privata. Solo le persone aggiunte alla bacheca possono vederla e modificarla.",
+ "profile": "Profilo",
+ "public": "Pubblica",
+ "public-desc": "Questa bacheca è pubblica. È visibile a chiunque abbia il link e sarà mostrata dai motori di ricerca come Google. Solo le persone aggiunte alla bacheca possono modificarla.",
+ "quick-access-description": "Stella una bacheca per aggiungere una scorciatoia in questa barra.",
+ "remove-cover": "Rimuovi cover",
+ "remove-from-board": "Rimuovi dalla bacheca",
+ "remove-label": "Rimuovi Etichetta",
+ "listDeletePopup-title": "Eliminare Lista?",
+ "remove-member": "Rimuovi utente",
+ "remove-member-from-card": "Rimuovi dalla scheda",
+ "remove-member-pop": "Rimuovere __name__ (__username__) da __boardTitle__? L'utente sarà rimosso da tutte le schede in questa bacheca. Riceveranno una notifica.",
+ "removeMemberPopup-title": "Rimuovere membro?",
+ "rename": "Rinomina",
+ "rename-board": "Rinomina bacheca",
+ "restore": "Ripristina",
+ "save": "Salva",
+ "search": "Cerca",
+ "rules": "Regole",
+ "search-cards": "Ricerca per titolo e descrizione scheda su questa bacheca",
+ "search-example": "Testo da ricercare?",
+ "select-color": "Seleziona Colore",
+ "set-wip-limit-value": "Seleziona un limite per il massimo numero di attività in questa lista",
+ "setWipLimitPopup-title": "Imposta limite di work in progress",
+ "shortcut-assign-self": "Aggiungi te stesso alla scheda corrente",
+ "shortcut-autocomplete-emoji": "Autocompletamento emoji",
+ "shortcut-autocomplete-members": "Autocompletamento membri",
+ "shortcut-clear-filters": "Pulisci tutti i filtri",
+ "shortcut-close-dialog": "Chiudi finestra di dialogo",
+ "shortcut-filter-my-cards": "Filtra le mie schede",
+ "shortcut-show-shortcuts": "Apri questa lista di scorciatoie",
+ "shortcut-toggle-filterbar": "Apri/chiudi la barra laterale dei filtri",
+ "shortcut-toggle-sidebar": "Apri/chiudi la barra laterale della bacheca",
+ "show-cards-minimum-count": "Mostra il contatore delle schede se la lista ne contiene più di",
+ "sidebar-open": "Apri Sidebar",
+ "sidebar-close": "Chiudi Sidebar",
+ "signupPopup-title": "Crea un account",
+ "star-board-title": "Clicca per stellare questa bacheca. Sarà mostrata all'inizio della tua lista bacheche.",
+ "starred-boards": "Bacheche stellate",
+ "starred-boards-description": "Le bacheche stellate vengono mostrato all'inizio della tua lista bacheche.",
+ "subscribe": "Sottoscrivi",
+ "team": "Team",
+ "this-board": "questa bacheca",
+ "this-card": "questa scheda",
+ "spent-time-hours": "Tempo trascorso (ore)",
+ "overtime-hours": "Overtime (ore)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Ci sono scheda scadute",
+ "has-spenttime-cards": "Ci sono scheda con tempo impiegato",
+ "time": "Ora",
+ "title": "Titolo",
+ "tracking": "Monitoraggio",
+ "tracking-info": "Sarai notificato per tutte le modifiche alle schede delle quali sei creatore o membro.",
+ "type": "Tipo",
+ "unassign-member": "Rimuovi membro",
+ "unsaved-description": "Hai una descrizione non salvata",
+ "unwatch": "Non seguire",
+ "upload": "Upload",
+ "upload-avatar": "Carica un avatar",
+ "uploaded-avatar": "Avatar caricato",
+ "username": "Username",
+ "view-it": "Vedi",
+ "warn-list-archived": "Attenzione:questa scheda si trova in un elenco dell'archivio",
+ "watch": "Segui",
+ "watching": "Stai seguendo",
+ "watching-info": "Sarai notificato per tutte le modifiche in questa bacheca",
+ "welcome-board": "Bacheca di benvenuto",
+ "welcome-swimlane": "Pietra miliare 1",
+ "welcome-list1": "Basi",
+ "welcome-list2": "Avanzate",
+ "card-templates-swimlane": "Template scheda",
+ "list-templates-swimlane": "Elenca i template",
+ "board-templates-swimlane": "Bacheca dei template",
+ "what-to-do": "Cosa vuoi fare?",
+ "wipLimitErrorPopup-title": "Limite work in progress non valido.",
+ "wipLimitErrorPopup-dialog-pt1": "Il numero di compiti in questa lista è maggiore del limite di work in progress che hai definito in precedenza.",
+ "wipLimitErrorPopup-dialog-pt2": "Per favore, sposta alcuni dei compiti fuori da questa lista, oppure imposta un limite di work in progress più alto.",
+ "admin-panel": "Pannello dell'Amministratore",
+ "settings": "Impostazioni",
+ "people": "Persone",
+ "registration": "Registrazione",
+ "disable-self-registration": "Disabilita Auto-registrazione",
+ "invite": "Invita",
+ "invite-people": "Invita persone",
+ "to-boards": "Alla(e) bacheca",
+ "email-addresses": "Indirizzi email",
+ "smtp-host-description": "L'indirizzo del server SMTP che gestisce le tue email.",
+ "smtp-port-description": "La porta che il tuo server SMTP utilizza per le email in uscita.",
+ "smtp-tls-description": "Abilita supporto TLS per server SMTP",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "Porta SMTP",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "Supporto TLS",
+ "send-from": "Da",
+ "send-smtp-test": "Invia un'email di test a te stesso",
+ "invitation-code": "Codice d'invito",
+ "email-invite-register-subject": "__inviter__ ti ha inviato un invito",
+ "email-invite-register-text": "Gentile __user__,\n\n__inviter__ ti ha invitato a partecipare a questa bacheca kanban per collaborare.\n\nPer favore segui il collegamento qui sotto:\n__url__\n\nIl tuo codice di invito è: __icode__\n\nGrazie.",
+ "email-smtp-test-subject": "E-Mail di prova SMTP",
+ "email-smtp-test-text": "Hai inviato un'email con successo",
+ "error-invitation-code-not-exist": "Il codice d'invito non esiste",
+ "error-notAuthorized": "Non sei autorizzato ad accedere a questa pagina.",
+ "outgoing-webhooks": "Server esterni",
+ "outgoingWebhooksPopup-title": "Server esterni",
+ "boardCardTitlePopup-title": "Filtro per Titolo Scheda",
+ "new-outgoing-webhook": "Nuovo webhook in uscita",
+ "no-name": "(Sconosciuto)",
+ "Node_version": "Versione di Node",
+ "OS_Arch": "Architettura del sistema operativo",
+ "OS_Cpus": "Conteggio della CPU del sistema operativo",
+ "OS_Freemem": "Memoria libera del sistema operativo",
+ "OS_Loadavg": "Carico medio del sistema operativo",
+ "OS_Platform": "Piattaforma del sistema operativo",
+ "OS_Release": "Versione di rilascio del sistema operativo",
+ "OS_Totalmem": "Memoria totale del sistema operativo",
+ "OS_Type": "Tipo di sistema operativo",
+ "OS_Uptime": "Tempo di attività del sistema operativo.",
+ "days": "giorni",
+ "hours": "ore",
+ "minutes": "minuti",
+ "seconds": "secondi",
+ "show-field-on-card": "Visualizza questo campo sulla scheda",
+ "automatically-field-on-card": "Crea automaticamente i campi per tutte le schede",
+ "showLabel-field-on-card": "Mostra l'etichetta di campo su minischeda",
+ "yes": "Sì",
+ "no": "No",
+ "accounts": "Profili",
+ "accounts-allowEmailChange": "Permetti modifica dell'email",
+ "accounts-allowUserNameChange": "Consenti la modifica del nome utente",
+ "createdAt": "creato alle",
+ "verified": "Verificato",
+ "active": "Attivo",
+ "card-received": "Ricevuta",
+ "card-received-on": "Ricevuta il",
+ "card-end": "Fine",
+ "card-end-on": "Termina il",
+ "editCardReceivedDatePopup-title": "Cambia data ricezione",
+ "editCardEndDatePopup-title": "Cambia data finale",
+ "setCardColorPopup-title": "Imposta il colore",
+ "setCardActionsColorPopup-title": "Scegli un colore",
+ "setSwimlaneColorPopup-title": "Scegli un colore",
+ "setListColorPopup-title": "Scegli un colore",
+ "assigned-by": "Assegnato da",
+ "requested-by": "Richiesto da",
+ "board-delete-notice": "L'eliminazione è permanente. Tutte le azioni, liste e schede associate a questa bacheca andranno perse.",
+ "delete-board-confirm-popup": "Tutte le liste, schede, etichette e azioni saranno rimosse e non sarai più in grado di recuperare il contenuto della bacheca. L'azione non è annullabile.",
+ "boardDeletePopup-title": "Eliminare la bacheca?",
+ "delete-board": "Elimina bacheca",
+ "default-subtasks-board": "Sottocompiti per la bacheca __board__",
+ "default": "Predefinito",
+ "queue": "Coda",
+ "subtask-settings": "Impostazioni sotto-compiti",
+ "boardSubtaskSettingsPopup-title": "Impostazioni sotto-compiti della bacheca",
+ "show-subtasks-field": "Le schede posso avere dei sotto-compiti",
+ "deposit-subtasks-board": "Deposita i sotto compiti in questa bacheca",
+ "deposit-subtasks-list": "Lista di destinaizoni per questi sotto-compiti",
+ "show-parent-in-minicard": "Mostra genirotri nelle mini schede:",
+ "prefix-with-full-path": "Prefisso con percorso completo",
+ "prefix-with-parent": "Prefisso con genitore",
+ "subtext-with-full-path": "Sottotesto con percorso completo",
+ "subtext-with-parent": "Sotto-testo con genitore",
+ "change-card-parent": "Cambia la scheda genitore",
+ "parent-card": "Scheda genitore",
+ "source-board": "Bacheca d'origine",
+ "no-parent": "Non mostrare i genitori",
+ "activity-added-label": "L' etichetta '%s' è stata aggiunta a %s",
+ "activity-removed-label": "L'etichetta '%s' è stata rimossa da %s",
+ "activity-delete-attach": "Rimosso un allegato da %s",
+ "activity-added-label-card": "aggiunta etichetta '%s'",
+ "activity-removed-label-card": "L' etichetta '%s' è stata rimossa.",
+ "activity-delete-attach-card": "Cancella un allegato",
+ "activity-set-customfield": "imposta campo personalizzato '%s' a '%s' in %s",
+ "activity-unset-customfield": "campo personalizzato non impostato '%s' in %s",
+ "r-rule": "Ruolo",
+ "r-add-trigger": "Aggiungi trigger",
+ "r-add-action": "Aggiungi azione",
+ "r-board-rules": "Regole della bacheca",
+ "r-add-rule": "Aggiungi regola",
+ "r-view-rule": "Visualizza regola",
+ "r-delete-rule": "Cancella regola",
+ "r-new-rule-name": "Titolo nuova regola",
+ "r-no-rules": "Nessuna regola",
+ "r-when-a-card": "Quando una scheda",
+ "r-is": "è",
+ "r-is-moved": "viene spostata",
+ "r-added-to": "Aggiunto/a a",
+ "r-removed-from": "Rimosso da",
+ "r-the-board": "La bacheca",
+ "r-list": "lista",
+ "set-filter": "Imposta un filtro",
+ "r-moved-to": "Spostato/a a",
+ "r-moved-from": "Spostato/a da",
+ "r-archived": "Spostato/a nell'archivio",
+ "r-unarchived": "Ripristinato/a dall'archivio",
+ "r-a-card": "una scheda",
+ "r-when-a-label-is": "Quando un'etichetta viene",
+ "r-when-the-label": "Quando l'etichetta viene",
+ "r-list-name": "Nome dell'elenco",
+ "r-when-a-member": "Quando un membro viene",
+ "r-when-the-member": "Quando un membro viene",
+ "r-name": "nome",
+ "r-when-a-attach": "Quando un allegato",
+ "r-when-a-checklist": "Quando una checklist è",
+ "r-when-the-checklist": "Quando la checklist",
+ "r-completed": "Completato/a",
+ "r-made-incomplete": "Rendi incompleto",
+ "r-when-a-item": "Quando un elemento della checklist è",
+ "r-when-the-item": "Quando un elemento della checklist",
+ "r-checked": "Selezionato",
+ "r-unchecked": "Deselezionato",
+ "r-move-card-to": "Sposta scheda a",
+ "r-top-of": "Al di sopra di",
+ "r-bottom-of": "Al di sotto di",
+ "r-its-list": "il suo elenco",
+ "r-archive": "Sposta nell'Archivio",
+ "r-unarchive": "Ripristina dall'archivio",
+ "r-card": "scheda",
+ "r-add": "Aggiungere",
+ "r-remove": "Rimuovi",
+ "r-label": "etichetta",
+ "r-member": "membro",
+ "r-remove-all": "Rimuovi tutti i membri dalla scheda",
+ "r-set-color": "Imposta il colore a",
+ "r-checklist": "checklist",
+ "r-check-all": "Spunta tutti",
+ "r-uncheck-all": "Togli la spunta a tutti",
+ "r-items-check": "Elementi della checklist",
+ "r-check": "Spunta",
+ "r-uncheck": "Togli la spunta",
+ "r-item": "elemento",
+ "r-of-checklist": "della lista di cose da fare",
+ "r-send-email": "Invia un e-mail",
+ "r-to": "a",
+ "r-subject": "soggetto",
+ "r-rule-details": "Dettagli della regola",
+ "r-d-move-to-top-gen": "Sposta la scheda al di sopra del suo elenco",
+ "r-d-move-to-top-spec": "Sposta la scheda la di sopra dell'elenco",
+ "r-d-move-to-bottom-gen": "Sposta la scheda in fondo alla sua lista",
+ "r-d-move-to-bottom-spec": "Muovi la scheda in fondo alla lista",
+ "r-d-send-email": "Spedisci email",
+ "r-d-send-email-to": "a",
+ "r-d-send-email-subject": "soggetto",
+ "r-d-send-email-message": "Messaggio",
+ "r-d-archive": "Sposta la scheda nell'archivio",
+ "r-d-unarchive": "Ripristina la scheda dall'archivio",
+ "r-d-add-label": "Aggiungi etichetta",
+ "r-d-remove-label": "Rimuovi Etichetta",
+ "r-create-card": "Crea una nuova scheda",
+ "r-in-list": "in elenco",
+ "r-in-swimlane": "nel diagramma swimlane",
+ "r-d-add-member": "Aggiungi membro",
+ "r-d-remove-member": "Rimuovi membro",
+ "r-d-remove-all-member": "Rimouvi tutti i membri",
+ "r-d-check-all": "Seleziona tutti gli item di una lista",
+ "r-d-uncheck-all": "Deseleziona tutti gli items di una lista",
+ "r-d-check-one": "Seleziona",
+ "r-d-uncheck-one": "Deselezionalo",
+ "r-d-check-of-list": "della lista di cose da fare",
+ "r-d-add-checklist": "Aggiungi lista di cose da fare",
+ "r-d-remove-checklist": "Rimuovi check list",
+ "r-by": "da",
+ "r-add-checklist": "Aggiungi lista di cose da fare",
+ "r-with-items": "con elementi",
+ "r-items-list": "elemento1,elemento2,elemento3",
+ "r-add-swimlane": "Aggiungi un diagramma swimlane",
+ "r-swimlane-name": "Nome diagramma swimlane",
+ "r-board-note": "Nota: Lascia un campo vuoto per abbinare ogni possibile valore",
+ "r-checklist-note": "Nota: Gli elementi della checklist devono essere scritti come valori separati dalla virgola",
+ "r-when-a-card-is-moved": "Quando una scheda viene spostata su un'altra lista",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "Oauth2",
+ "cas": "CAS",
+ "authentication-method": "Metodo di Autenticazione",
+ "authentication-type": "Tipo Autenticazione",
+ "custom-product-name": "Nome prodotto personalizzato",
+ "layout": "Layout",
+ "hide-logo": "Nascondi il logo",
+ "add-custom-html-after-body-start": "Aggiungi codice HTML personalizzato dopo <body> inzio",
+ "add-custom-html-before-body-end": "Aggiunti il codice HTML prima di </body> fine",
+ "error-undefined": "Qualcosa è andato storto",
+ "error-ldap-login": "C'è stato un errore mentre provavi ad effettuare il login",
+ "display-authentication-method": "Mostra il metodo di autenticazione",
+ "default-authentication-method": "Metodo di autenticazione predefinito",
+ "duplicate-board": "Duplica bacheca",
+ "people-number": "Il numero di persone è:",
+ "swimlaneDeletePopup-title": "Cancella diagramma swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Cancella tutto",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json
index c55ae383..5be4a9fe 100644
--- a/i18n/ja.i18n.json
+++ b/i18n/ja.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "受け入れ",
- "act-activity-notify": "アクティビティ通知",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "操作",
- "activities": "アクティビティ",
- "activity": "アクティビティ",
- "activity-added": "%s を %s に追加しました",
- "activity-archived": "%sをアーカイブしました",
- "activity-attached": "%s を %s に添付しました",
- "activity-created": "%s を作成しました",
- "activity-customfield-created": "%s を作成しました",
- "activity-excluded": "%s を %s から除外しました",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "%s にジョインしました",
- "activity-moved": "%s を %s から %s に移動しました",
- "activity-on": "%s",
- "activity-removed": "%s を %s から削除しました",
- "activity-sent": "%s を %s に送りました",
- "activity-unjoined": "%s への参加を止めました",
- "activity-subtask-added": "%sにサブタスクを追加しました",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "%s にチェックリストを追加しました",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "追加",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "添付ファイルを追加",
- "add-board": "ボードを追加",
- "add-card": "カードを追加",
- "add-swimlane": "スイムレーンを追加",
- "add-subtask": "Add Subtask",
- "add-checklist": "チェックリストを追加",
- "add-checklist-item": "チェックリストに項目を追加",
- "add-cover": "カバーの追加",
- "add-label": "ラベルを追加",
- "add-list": "リストを追加",
- "add-members": "メンバーの追加",
- "added": "追加しました",
- "addMemberPopup-title": "メンバー",
- "admin": "管理",
- "admin-desc": "カードの閲覧と編集、メンバーの削除、ボードの設定変更が可能",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "全てのボード",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "適用",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "アーカイブ",
- "archived-boards": "Boards in Archive",
- "restore-board": "ボードをリストア",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "アーカイブ",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "メンバーの割当",
- "attached": "添付されました",
- "attachment": "添付ファイル",
- "attachment-delete-pop": "添付ファイルの削除をすると取り消しできません。",
- "attachmentDeletePopup-title": "添付ファイルを削除しますか?",
- "attachments": "添付ファイル",
- "auto-watch": "作成されたボードを自動的にウォッチする",
- "avatar-too-big": "アバターが大きすぎます(最大70KB)",
- "back": "戻る",
- "board-change-color": "色の変更",
- "board-nb-stars": "%s stars",
- "board-not-found": "ボードが見つかりません",
- "board-private-info": "ボードは <strong>非公開</strong> になります。",
- "board-public-info": "ボードは公開されます。",
- "boardChangeColorPopup-title": "ボードの背景を変更",
- "boardChangeTitlePopup-title": "ボード名の変更",
- "boardChangeVisibilityPopup-title": "公開範囲の変更",
- "boardChangeWatchPopup-title": "ウォッチの変更",
- "boardMenuPopup-title": "Board Settings",
- "boards": "ボード",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "スイムレーン",
- "board-view-lists": "リスト",
- "bucket-example": "例:バケットリスト",
- "cancel": "キャンセル",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "%s 件のコメントがあります。",
- "card-delete-notice": "削除は取り消しできません。このカードに関係するすべてのアクションがなくなります。",
- "card-delete-pop": "すべての内容がアクティビティから削除されます。この削除は元に戻すことができません。",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "期限",
- "card-due-on": "期限日",
- "card-spent": "Spent Time",
- "card-edit-attachments": "添付ファイルの編集",
- "card-edit-custom-fields": "カスタムフィールドの編集",
- "card-edit-labels": "ラベルの編集",
- "card-edit-members": "メンバーの編集",
- "card-labels-title": "カードのラベルを変更する",
- "card-members-title": "カードからボードメンバーを追加・削除する",
- "card-start": "開始",
- "card-start-on": "開始日",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "カスタムフィールドの編集",
- "cardDeletePopup-title": "カードを削除しますか?",
- "cardDetailsActionsPopup-title": "カード操作",
- "cardLabelsPopup-title": "ラベル",
- "cardMembersPopup-title": "メンバー",
- "cardMorePopup-title": "さらに見る",
- "cardTemplatePopup-title": "Create template",
- "cards": "カード",
- "cards-count": "カード",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "カード",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "変更",
- "change-avatar": "アバターの変更",
- "change-password": "パスワードの変更",
- "change-permissions": "権限の変更",
- "change-settings": "設定の変更",
- "changeAvatarPopup-title": "アバターの変更",
- "changeLanguagePopup-title": "言語の変更",
- "changePasswordPopup-title": "パスワードの変更",
- "changePermissionsPopup-title": "パーミッションの変更",
- "changeSettingsPopup-title": "設定の変更",
- "subtasks": "サブタスク",
- "checklists": "チェックリスト",
- "click-to-star": "ボードにスターをつける",
- "click-to-unstar": "ボードからスターを外す",
- "clipboard": "クリップボードもしくはドラッグ&ドロップ",
- "close": "閉じる",
- "close-board": "ボードを閉じる",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "黒",
- "color-blue": "青",
- "color-crimson": "濃赤",
- "color-darkgreen": "濃緑",
- "color-gold": "金",
- "color-gray": "灰",
- "color-green": "緑",
- "color-indigo": "藍",
- "color-lime": "ライム",
- "color-magenta": "マゼンタ",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "オレンジ",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "ピンク",
- "color-plum": "plum",
- "color-purple": "紫",
- "color-red": "赤",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "銀",
- "color-sky": "空",
- "color-slateblue": "slateblue",
- "color-white": "白",
- "color-yellow": "黄",
- "unset-color": "設定しない",
- "comment": "コメント",
- "comment-placeholder": "コメントを書く",
- "comment-only": "コメントのみ",
- "comment-only-desc": "カードにのみコメント可能",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "コンピューター",
- "confirm-subtask-delete-dialog": "本当にサブタスクを削除してもよろしいでしょうか?",
- "confirm-checklist-delete-dialog": "本当にチェックリストを削除してもよろしいでしょうか?",
- "copy-card-link-to-clipboard": "カードへのリンクをクリップボードにコピー",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "検索",
- "copyCardPopup-title": "カードをコピー",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"1つ目のカードタイトル\", \"description\":\"1つ目のカードの説明\"}, {\"title\":\"2つ目のカードタイトル\",\"description\":\"2つ目のカードの説明\"},{\"title\":\"最後のカードタイトル\",\"description\":\"最後のカードの説明\"} ]",
- "create": "作成",
- "createBoardPopup-title": "ボードの作成",
- "chooseBoardSourcePopup-title": "ボードをインポート",
- "createLabelPopup-title": "ラベルの作成",
- "createCustomField": "フィールドを作成",
- "createCustomFieldPopup-title": "フィールドを作成",
- "current": "現在",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "チェックボックス",
- "custom-field-date": "日付",
- "custom-field-dropdown": "ドロップダウンリスト",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "テキスト",
- "custom-fields": "カスタムフィールド",
- "date": "日付",
- "decline": "拒否",
- "default-avatar": "デフォルトのアバター",
- "delete": "削除",
- "deleteCustomFieldPopup-title": "カスタムフィールドを削除しますか?",
- "deleteLabelPopup-title": "ラベルを削除しますか?",
- "description": "詳細",
- "disambiguateMultiLabelPopup-title": "不正なラベル操作",
- "disambiguateMultiMemberPopup-title": "不正なメンバー操作",
- "discard": "捨てる",
- "done": "完了",
- "download": "ダウンロード",
- "edit": "編集",
- "edit-avatar": "アバターの変更",
- "edit-profile": "プロフィールの編集",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "開始日の変更",
- "editCardDueDatePopup-title": "期限の変更",
- "editCustomFieldPopup-title": "フィールドを編集",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "ラベルの変更",
- "editNotificationPopup-title": "通知の変更",
- "editProfilePopup-title": "プロフィールの編集",
- "email": "メールアドレス",
- "email-enrollAccount-subject": "__siteName__であなたのアカウントが作成されました",
- "email-enrollAccount-text": "こんにちは、__user__さん。\n\nサービスを開始するには、以下をクリックしてください。\n\n__url__\n\nよろしくお願いします。",
- "email-fail": "メールの送信に失敗しました",
- "email-fail-text": "メールの送信中にエラーが発生しました",
- "email-invalid": "無効なメールアドレス",
- "email-invite": "メールで招待",
- "email-invite-subject": "__inviter__があなたを招待しています",
- "email-invite-text": "__user__さんへ。\n\n__inviter__さんがあなたをボード\"__board__\"へ招待しています。\n\n以下のリンクをクリックしてください。\n\n__url__\n\nよろしくお願いします。",
- "email-resetPassword-subject": "あなたの __siteName__ のパスワードをリセットする",
- "email-resetPassword-text": "こんにちは、__user__さん。\n\nパスワードをリセットするには、以下のリンクをクリックしてください。\n\n__url__\n\nよろしくお願いします。",
- "email-sent": "メールを送信しました",
- "email-verifyEmail-subject": "あなたの __siteName__ のメールアドレスを確認する",
- "email-verifyEmail-text": "こんにちは、__user__さん。\n\nメールアドレスを認証するために、以下のリンクをクリックしてください。\n\n__url__\n\nよろしくお願いします。",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "ボードがありません",
- "error-board-notAdmin": "操作にはボードの管理者権限が必要です",
- "error-board-notAMember": "操作にはボードメンバーである必要があります",
- "error-json-malformed": "このテキストは、有効なJSON形式ではありません",
- "error-json-schema": "JSONデータが不正な値を含んでいます",
- "error-list-doesNotExist": "このリストは存在しません",
- "error-user-doesNotExist": "ユーザーが存在しません",
- "error-user-notAllowSelf": "自分を招待することはできません。",
- "error-user-notCreated": "ユーザーが作成されていません",
- "error-username-taken": "このユーザ名は既に使用されています",
- "error-email-taken": "メールは既に受け取られています",
- "export-board": "ボードのエクスポート",
- "filter": "フィルター",
- "filter-cards": "カードをフィルターする",
- "filter-clear": "フィルターの解除",
- "filter-no-label": "ラベルなし",
- "filter-no-member": "メンバーなし",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "フィルター有効",
- "filter-on-desc": "このボードのカードをフィルターしています。フィルターを編集するにはこちらをクリックしてください。",
- "filter-to-selection": "フィルターした項目を全選択",
- "advanced-filter-label": "高度なフィルター",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "フルネーム",
- "header-logo-title": "自分のボードページに戻る。",
- "hide-system-messages": "システムメッセージを隠す",
- "headerBarCreateBoardPopup-title": "ボードの作成",
- "home": "ホーム",
- "import": "インポート",
- "link": "リンク",
- "import-board": "ボードをインポート",
- "import-board-c": "ボードをインポート",
- "import-board-title-trello": "Trelloからボードをインポート",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "ボードのインポートは、既存ボードのすべてのデータを置き換えます。",
- "from-trello": "Trelloから",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "Trelloボードの、 'Menu' → 'More' → 'Print and Export' → 'Export JSON'を選択し、テキストをコピーしてください。",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "JSONデータをここに貼り付けする",
- "import-map-members": "メンバーを紐付け",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "メンバー紐付けの確認",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "メンバーを選択",
- "info": "バージョン",
- "initials": "イニシャル",
- "invalid-date": "無効な日付",
- "invalid-time": "無効な時間",
- "invalid-user": "無効なユーザ",
- "joined": "参加しました",
- "just-invited": "このボードのメンバーに招待されています",
- "keyboard-shortcuts": "キーボード・ショートカット",
- "label-create": "ラベルの作成",
- "label-default": "%s ラベル(デフォルト)",
- "label-delete-pop": "この操作は取り消しできません。このラベルはすべてのカードから外され履歴からも見えなくなります。",
- "labels": "ラベル",
- "language": "言語",
- "last-admin-desc": "最低でも1人以上の管理者が必要なためロールを変更できません。",
- "leave-board": "ボードから退出する",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "ボードから退出しますか?",
- "link-card": "このカードへのリンク",
- "list-archive-cards": "リスト内の全カードをアーカイブする",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "リストの全カードを移動する",
- "list-select-cards": "リストの全カードを選択",
- "set-color-list": "色を選択",
- "listActionPopup-title": "操作一覧",
- "swimlaneActionPopup-title": "スイムレーン操作",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Trelloのカードをインポート",
- "listMorePopup-title": "さらに見る",
- "link-list": "このリストへのリンク",
- "list-delete-pop": "すべての内容がアクティビティから削除されます。この削除は元に戻すことができません。",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "リスト",
- "swimlanes": "スイムレーン",
- "log-out": "ログアウト",
- "log-in": "ログイン",
- "loginPopup-title": "ログイン",
- "memberMenuPopup-title": "メンバー設定",
- "members": "メンバー",
- "menu": "メニュー",
- "move-selection": "選択したものを移動",
- "moveCardPopup-title": "カードの移動",
- "moveCardToBottom-title": "最下部に移動",
- "moveCardToTop-title": "先頭に移動",
- "moveSelectionPopup-title": "選択箇所に移動",
- "multi-selection": "複数選択",
- "multi-selection-on": "複数選択有効",
- "muted": "ミュート",
- "muted-info": "このボードの変更は通知されません",
- "my-boards": "自分のボード",
- "name": "名前",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "該当するものはありません",
- "normal": "通常",
- "normal-desc": "カードの閲覧と編集が可能。設定変更不可。",
- "not-accepted-yet": "招待はアクセプトされていません",
- "notify-participate": "作成した、またはメンバーとなったカードの更新情報を受け取る",
- "notify-watch": "ウォッチしているすべてのボード、リスト、カードの更新情報を受け取る",
- "optional": "任意",
- "or": "or",
- "page-maybe-private": "このページはプライベートです。<a href='%s'>ログイン</a>して見てください。",
- "page-not-found": "ページが見つかりません。",
- "password": "パスワード",
- "paste-or-dragdrop": "貼り付けか、ドラッグアンドロップで画像を添付 (画像のみ)",
- "participating": "参加",
- "preview": "プレビュー",
- "previewAttachedImagePopup-title": "プレビュー",
- "previewClipboardImagePopup-title": "プレビュー",
- "private": "プライベート",
- "private-desc": "このボードはプライベートです。ボードメンバーのみが閲覧・編集可能です。",
- "profile": "プロフィール",
- "public": "公開",
- "public-desc": "このボードはパブリックです。リンクを知っていれば誰でもアクセス可能でGoogleのような検索エンジンの結果に表示されます。このボードに追加されている人だけがカード追加が可能です。",
- "quick-access-description": "ボードにスターをつけると、ここににショートカットができます。",
- "remove-cover": "カバーの削除",
- "remove-from-board": "ボードから外す",
- "remove-label": "ラベルの削除",
- "listDeletePopup-title": "リストを削除しますか?",
- "remove-member": "メンバーを外す",
- "remove-member-from-card": "カードから外す",
- "remove-member-pop": "__boardTitle__ から __name__ (__username__) を外しますか?メンバーはこのボードのすべてのカードから外れ、通知を受けます。",
- "removeMemberPopup-title": "メンバーを外しますか?",
- "rename": "名前変更",
- "rename-board": "ボード名の変更",
- "restore": "復元",
- "save": "保存",
- "search": "検索",
- "rules": "Rules",
- "search-cards": "カードのタイトルと詳細から検索",
- "search-example": "検索文字",
- "select-color": "色を選択",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "自分をこのカードに割り当てる",
- "shortcut-autocomplete-emoji": "絵文字の補完",
- "shortcut-autocomplete-members": "メンバーの補完",
- "shortcut-clear-filters": "すべてのフィルターを解除する",
- "shortcut-close-dialog": "ダイアログを閉じる",
- "shortcut-filter-my-cards": "カードをフィルター",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "フィルターサイドバーの切り替え",
- "shortcut-toggle-sidebar": "ボードサイドバーの切り替え",
- "show-cards-minimum-count": "以下より多い場合、リストにカード数を表示",
- "sidebar-open": "サイドバーを開く",
- "sidebar-close": "サイドバーを閉じる",
- "signupPopup-title": "アカウント作成",
- "star-board-title": "ボードにスターをつけると自分のボード一覧のトップに表示されます。",
- "starred-boards": "スターのついたボード",
- "starred-boards-description": "スターのついたボードはボードリストの先頭に表示されます。",
- "subscribe": "購読",
- "team": "チーム",
- "this-board": "このボード",
- "this-card": "このカード",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "時間",
- "title": "タイトル",
- "tracking": "トラッキング",
- "tracking-info": "これらのカードへの変更が通知されるようになります。",
- "type": "Type",
- "unassign-member": "未登録のメンバー",
- "unsaved-description": "未保存の変更があります。",
- "unwatch": "アンウォッチ",
- "upload": "アップロード",
- "upload-avatar": "アバターのアップロード",
- "uploaded-avatar": "アップロードされたアバター",
- "username": "ユーザー名",
- "view-it": "見る",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "ウォッチ",
- "watching": "ウォッチしています",
- "watching-info": "このボードの変更が通知されます",
- "welcome-board": "ウェルカムボード",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "基本",
- "welcome-list2": "高度",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "何をしたいですか?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "管理パネル",
- "settings": "設定",
- "people": "メンバー",
- "registration": "登録",
- "disable-self-registration": "自己登録を無効化",
- "invite": "招待",
- "invite-people": "メンバーを招待",
- "to-boards": "ボードへ移動",
- "email-addresses": "Emailアドレス",
- "smtp-host-description": "Emailを処理するSMTPサーバーのアドレス",
- "smtp-port-description": "SMTPサーバーがEmail送信に使用するポート",
- "smtp-tls-description": "SMTPサーバのTLSサポートを有効化",
- "smtp-host": "SMTPホスト",
- "smtp-port": "SMTPポート",
- "smtp-username": "ユーザー名",
- "smtp-password": "パスワード",
- "smtp-tls": "TLSサポート",
- "send-from": "送信元",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "招待コード",
- "email-invite-register-subject": "__inviter__さんがあなたを招待しています",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "招待コードが存在しません",
- "error-notAuthorized": "このページを参照する権限がありません。",
- "outgoing-webhooks": "発信Webフック",
- "outgoingWebhooksPopup-title": "発信Webフック",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "発信Webフックの作成",
- "no-name": "(Unknown)",
- "Node_version": "Nodeバージョン",
- "OS_Arch": "OSアーキテクチャ",
- "OS_Cpus": "OS CPU数",
- "OS_Freemem": "OSフリーメモリ",
- "OS_Loadavg": "OSロードアベレージ",
- "OS_Platform": "OSプラットフォーム",
- "OS_Release": "OSリリース",
- "OS_Totalmem": "OSトータルメモリ",
- "OS_Type": "OS種類",
- "OS_Uptime": "OSアップタイム",
- "days": "days",
- "hours": "時",
- "minutes": "分",
- "seconds": "秒",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "はい",
- "no": "いいえ",
- "accounts": "アカウント",
- "accounts-allowEmailChange": "メールアドレスの変更を許可",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "受付",
- "card-received-on": "受付日",
- "card-end": "終了",
- "card-end-on": "終了日",
- "editCardReceivedDatePopup-title": "受付日の変更",
- "editCardEndDatePopup-title": "終了日の変更",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "すべてのリスト、カード、ラベル、アクティビティは削除され、ボードの内容を元に戻すことができません。",
- "boardDeletePopup-title": "ボードを削除しますか?",
- "delete-board": "ボードを削除",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "追加",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "リスト:",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "チェックリストを追加",
- "r-d-remove-checklist": "チェックリストを削除",
- "r-by": "by",
- "r-add-checklist": "チェックリストを追加",
- "r-with-items": "with items",
- "r-items-list": "アイテム1、アイテム2、アイテム3",
- "r-add-swimlane": "スイムレーンを追加",
- "r-swimlane-name": "スイムレーン名",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "カードが別のリストに移動したとき",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "認証方式",
- "authentication-type": "認証タイプ",
- "custom-product-name": "Custom Product Name",
- "layout": "レイアウト",
- "hide-logo": "ロゴを隠す",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "ボードの複製",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "スイムレーンを削除しますか?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "全てをリストアする",
- "delete-all": "全てを削除する",
- "loading": "ローディング中です、しばらくお待ちください。",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "受け入れ",
+ "act-activity-notify": "アクティビティ通知",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "操作",
+ "activities": "アクティビティ",
+ "activity": "アクティビティ",
+ "activity-added": "%s を %s に追加しました",
+ "activity-archived": "%sをアーカイブしました",
+ "activity-attached": "%s を %s に添付しました",
+ "activity-created": "%s を作成しました",
+ "activity-customfield-created": "%s を作成しました",
+ "activity-excluded": "%s を %s から除外しました",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "%s にジョインしました",
+ "activity-moved": "%s を %s から %s に移動しました",
+ "activity-on": "%s",
+ "activity-removed": "%s を %s から削除しました",
+ "activity-sent": "%s を %s に送りました",
+ "activity-unjoined": "%s への参加を止めました",
+ "activity-subtask-added": "%sにサブタスクを追加しました",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "%s にチェックリストを追加しました",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "追加",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "添付ファイルを追加",
+ "add-board": "ボードを追加",
+ "add-card": "カードを追加",
+ "add-swimlane": "スイムレーンを追加",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "チェックリストを追加",
+ "add-checklist-item": "チェックリストに項目を追加",
+ "add-cover": "カバーの追加",
+ "add-label": "ラベルを追加",
+ "add-list": "リストを追加",
+ "add-members": "メンバーの追加",
+ "added": "追加しました",
+ "addMemberPopup-title": "メンバー",
+ "admin": "管理",
+ "admin-desc": "カードの閲覧と編集、メンバーの削除、ボードの設定変更が可能",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "全てのボード",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "適用",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "アーカイブ",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "ボードをリストア",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "アーカイブ",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "メンバーの割当",
+ "attached": "添付されました",
+ "attachment": "添付ファイル",
+ "attachment-delete-pop": "添付ファイルの削除をすると取り消しできません。",
+ "attachmentDeletePopup-title": "添付ファイルを削除しますか?",
+ "attachments": "添付ファイル",
+ "auto-watch": "作成されたボードを自動的にウォッチする",
+ "avatar-too-big": "アバターが大きすぎます(最大70KB)",
+ "back": "戻る",
+ "board-change-color": "色の変更",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "ボードが見つかりません",
+ "board-private-info": "ボードは <strong>非公開</strong> になります。",
+ "board-public-info": "ボードは公開されます。",
+ "boardChangeColorPopup-title": "ボードの背景を変更",
+ "boardChangeTitlePopup-title": "ボード名の変更",
+ "boardChangeVisibilityPopup-title": "公開範囲の変更",
+ "boardChangeWatchPopup-title": "ウォッチの変更",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "ボード",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "スイムレーン",
+ "board-view-lists": "リスト",
+ "bucket-example": "例:バケットリスト",
+ "cancel": "キャンセル",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "%s 件のコメントがあります。",
+ "card-delete-notice": "削除は取り消しできません。このカードに関係するすべてのアクションがなくなります。",
+ "card-delete-pop": "すべての内容がアクティビティから削除されます。この削除は元に戻すことができません。",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "期限",
+ "card-due-on": "期限日",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "添付ファイルの編集",
+ "card-edit-custom-fields": "カスタムフィールドの編集",
+ "card-edit-labels": "ラベルの編集",
+ "card-edit-members": "メンバーの編集",
+ "card-labels-title": "カードのラベルを変更する",
+ "card-members-title": "カードからボードメンバーを追加・削除する",
+ "card-start": "開始",
+ "card-start-on": "開始日",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "カスタムフィールドの編集",
+ "cardDeletePopup-title": "カードを削除しますか?",
+ "cardDetailsActionsPopup-title": "カード操作",
+ "cardLabelsPopup-title": "ラベル",
+ "cardMembersPopup-title": "メンバー",
+ "cardMorePopup-title": "さらに見る",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "カード",
+ "cards-count": "カード",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "カード",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "変更",
+ "change-avatar": "アバターの変更",
+ "change-password": "パスワードの変更",
+ "change-permissions": "権限の変更",
+ "change-settings": "設定の変更",
+ "changeAvatarPopup-title": "アバターの変更",
+ "changeLanguagePopup-title": "言語の変更",
+ "changePasswordPopup-title": "パスワードの変更",
+ "changePermissionsPopup-title": "パーミッションの変更",
+ "changeSettingsPopup-title": "設定の変更",
+ "subtasks": "サブタスク",
+ "checklists": "チェックリスト",
+ "click-to-star": "ボードにスターをつける",
+ "click-to-unstar": "ボードからスターを外す",
+ "clipboard": "クリップボードもしくはドラッグ&ドロップ",
+ "close": "閉じる",
+ "close-board": "ボードを閉じる",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "黒",
+ "color-blue": "青",
+ "color-crimson": "濃赤",
+ "color-darkgreen": "濃緑",
+ "color-gold": "金",
+ "color-gray": "灰",
+ "color-green": "緑",
+ "color-indigo": "藍",
+ "color-lime": "ライム",
+ "color-magenta": "マゼンタ",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "オレンジ",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "ピンク",
+ "color-plum": "plum",
+ "color-purple": "紫",
+ "color-red": "赤",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "銀",
+ "color-sky": "空",
+ "color-slateblue": "slateblue",
+ "color-white": "白",
+ "color-yellow": "黄",
+ "unset-color": "設定しない",
+ "comment": "コメント",
+ "comment-placeholder": "コメントを書く",
+ "comment-only": "コメントのみ",
+ "comment-only-desc": "カードにのみコメント可能",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "コンピューター",
+ "confirm-subtask-delete-dialog": "本当にサブタスクを削除してもよろしいでしょうか?",
+ "confirm-checklist-delete-dialog": "本当にチェックリストを削除してもよろしいでしょうか?",
+ "copy-card-link-to-clipboard": "カードへのリンクをクリップボードにコピー",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "検索",
+ "copyCardPopup-title": "カードをコピー",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"1つ目のカードタイトル\", \"description\":\"1つ目のカードの説明\"}, {\"title\":\"2つ目のカードタイトル\",\"description\":\"2つ目のカードの説明\"},{\"title\":\"最後のカードタイトル\",\"description\":\"最後のカードの説明\"} ]",
+ "create": "作成",
+ "createBoardPopup-title": "ボードの作成",
+ "chooseBoardSourcePopup-title": "ボードをインポート",
+ "createLabelPopup-title": "ラベルの作成",
+ "createCustomField": "フィールドを作成",
+ "createCustomFieldPopup-title": "フィールドを作成",
+ "current": "現在",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "チェックボックス",
+ "custom-field-date": "日付",
+ "custom-field-dropdown": "ドロップダウンリスト",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "テキスト",
+ "custom-fields": "カスタムフィールド",
+ "date": "日付",
+ "decline": "拒否",
+ "default-avatar": "デフォルトのアバター",
+ "delete": "削除",
+ "deleteCustomFieldPopup-title": "カスタムフィールドを削除しますか?",
+ "deleteLabelPopup-title": "ラベルを削除しますか?",
+ "description": "詳細",
+ "disambiguateMultiLabelPopup-title": "不正なラベル操作",
+ "disambiguateMultiMemberPopup-title": "不正なメンバー操作",
+ "discard": "捨てる",
+ "done": "完了",
+ "download": "ダウンロード",
+ "edit": "編集",
+ "edit-avatar": "アバターの変更",
+ "edit-profile": "プロフィールの編集",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "開始日の変更",
+ "editCardDueDatePopup-title": "期限の変更",
+ "editCustomFieldPopup-title": "フィールドを編集",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "ラベルの変更",
+ "editNotificationPopup-title": "通知の変更",
+ "editProfilePopup-title": "プロフィールの編集",
+ "email": "メールアドレス",
+ "email-enrollAccount-subject": "__siteName__であなたのアカウントが作成されました",
+ "email-enrollAccount-text": "こんにちは、__user__さん。\n\nサービスを開始するには、以下をクリックしてください。\n\n__url__\n\nよろしくお願いします。",
+ "email-fail": "メールの送信に失敗しました",
+ "email-fail-text": "メールの送信中にエラーが発生しました",
+ "email-invalid": "無効なメールアドレス",
+ "email-invite": "メールで招待",
+ "email-invite-subject": "__inviter__があなたを招待しています",
+ "email-invite-text": "__user__さんへ。\n\n__inviter__さんがあなたをボード\"__board__\"へ招待しています。\n\n以下のリンクをクリックしてください。\n\n__url__\n\nよろしくお願いします。",
+ "email-resetPassword-subject": "あなたの __siteName__ のパスワードをリセットする",
+ "email-resetPassword-text": "こんにちは、__user__さん。\n\nパスワードをリセットするには、以下のリンクをクリックしてください。\n\n__url__\n\nよろしくお願いします。",
+ "email-sent": "メールを送信しました",
+ "email-verifyEmail-subject": "あなたの __siteName__ のメールアドレスを確認する",
+ "email-verifyEmail-text": "こんにちは、__user__さん。\n\nメールアドレスを認証するために、以下のリンクをクリックしてください。\n\n__url__\n\nよろしくお願いします。",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "ボードがありません",
+ "error-board-notAdmin": "操作にはボードの管理者権限が必要です",
+ "error-board-notAMember": "操作にはボードメンバーである必要があります",
+ "error-json-malformed": "このテキストは、有効なJSON形式ではありません",
+ "error-json-schema": "JSONデータが不正な値を含んでいます",
+ "error-list-doesNotExist": "このリストは存在しません",
+ "error-user-doesNotExist": "ユーザーが存在しません",
+ "error-user-notAllowSelf": "自分を招待することはできません。",
+ "error-user-notCreated": "ユーザーが作成されていません",
+ "error-username-taken": "このユーザ名は既に使用されています",
+ "error-email-taken": "メールは既に受け取られています",
+ "export-board": "ボードのエクスポート",
+ "filter": "フィルター",
+ "filter-cards": "カードをフィルターする",
+ "filter-clear": "フィルターの解除",
+ "filter-no-label": "ラベルなし",
+ "filter-no-member": "メンバーなし",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "フィルター有効",
+ "filter-on-desc": "このボードのカードをフィルターしています。フィルターを編集するにはこちらをクリックしてください。",
+ "filter-to-selection": "フィルターした項目を全選択",
+ "advanced-filter-label": "高度なフィルター",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "フルネーム",
+ "header-logo-title": "自分のボードページに戻る。",
+ "hide-system-messages": "システムメッセージを隠す",
+ "headerBarCreateBoardPopup-title": "ボードの作成",
+ "home": "ホーム",
+ "import": "インポート",
+ "link": "リンク",
+ "import-board": "ボードをインポート",
+ "import-board-c": "ボードをインポート",
+ "import-board-title-trello": "Trelloからボードをインポート",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "ボードのインポートは、既存ボードのすべてのデータを置き換えます。",
+ "from-trello": "Trelloから",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "Trelloボードの、 'Menu' → 'More' → 'Print and Export' → 'Export JSON'を選択し、テキストをコピーしてください。",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "JSONデータをここに貼り付けする",
+ "import-map-members": "メンバーを紐付け",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "メンバー紐付けの確認",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "メンバーを選択",
+ "info": "バージョン",
+ "initials": "イニシャル",
+ "invalid-date": "無効な日付",
+ "invalid-time": "無効な時間",
+ "invalid-user": "無効なユーザ",
+ "joined": "参加しました",
+ "just-invited": "このボードのメンバーに招待されています",
+ "keyboard-shortcuts": "キーボード・ショートカット",
+ "label-create": "ラベルの作成",
+ "label-default": "%s ラベル(デフォルト)",
+ "label-delete-pop": "この操作は取り消しできません。このラベルはすべてのカードから外され履歴からも見えなくなります。",
+ "labels": "ラベル",
+ "language": "言語",
+ "last-admin-desc": "最低でも1人以上の管理者が必要なためロールを変更できません。",
+ "leave-board": "ボードから退出する",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "ボードから退出しますか?",
+ "link-card": "このカードへのリンク",
+ "list-archive-cards": "リスト内の全カードをアーカイブする",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "リストの全カードを移動する",
+ "list-select-cards": "リストの全カードを選択",
+ "set-color-list": "色を選択",
+ "listActionPopup-title": "操作一覧",
+ "swimlaneActionPopup-title": "スイムレーン操作",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Trelloのカードをインポート",
+ "listMorePopup-title": "さらに見る",
+ "link-list": "このリストへのリンク",
+ "list-delete-pop": "すべての内容がアクティビティから削除されます。この削除は元に戻すことができません。",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "リスト",
+ "swimlanes": "スイムレーン",
+ "log-out": "ログアウト",
+ "log-in": "ログイン",
+ "loginPopup-title": "ログイン",
+ "memberMenuPopup-title": "メンバー設定",
+ "members": "メンバー",
+ "menu": "メニュー",
+ "move-selection": "選択したものを移動",
+ "moveCardPopup-title": "カードの移動",
+ "moveCardToBottom-title": "最下部に移動",
+ "moveCardToTop-title": "先頭に移動",
+ "moveSelectionPopup-title": "選択箇所に移動",
+ "multi-selection": "複数選択",
+ "multi-selection-on": "複数選択有効",
+ "muted": "ミュート",
+ "muted-info": "このボードの変更は通知されません",
+ "my-boards": "自分のボード",
+ "name": "名前",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "該当するものはありません",
+ "normal": "通常",
+ "normal-desc": "カードの閲覧と編集が可能。設定変更不可。",
+ "not-accepted-yet": "招待はアクセプトされていません",
+ "notify-participate": "作成した、またはメンバーとなったカードの更新情報を受け取る",
+ "notify-watch": "ウォッチしているすべてのボード、リスト、カードの更新情報を受け取る",
+ "optional": "任意",
+ "or": "or",
+ "page-maybe-private": "このページはプライベートです。<a href='%s'>ログイン</a>して見てください。",
+ "page-not-found": "ページが見つかりません。",
+ "password": "パスワード",
+ "paste-or-dragdrop": "貼り付けか、ドラッグアンドロップで画像を添付 (画像のみ)",
+ "participating": "参加",
+ "preview": "プレビュー",
+ "previewAttachedImagePopup-title": "プレビュー",
+ "previewClipboardImagePopup-title": "プレビュー",
+ "private": "プライベート",
+ "private-desc": "このボードはプライベートです。ボードメンバーのみが閲覧・編集可能です。",
+ "profile": "プロフィール",
+ "public": "公開",
+ "public-desc": "このボードはパブリックです。リンクを知っていれば誰でもアクセス可能でGoogleのような検索エンジンの結果に表示されます。このボードに追加されている人だけがカード追加が可能です。",
+ "quick-access-description": "ボードにスターをつけると、ここににショートカットができます。",
+ "remove-cover": "カバーの削除",
+ "remove-from-board": "ボードから外す",
+ "remove-label": "ラベルの削除",
+ "listDeletePopup-title": "リストを削除しますか?",
+ "remove-member": "メンバーを外す",
+ "remove-member-from-card": "カードから外す",
+ "remove-member-pop": "__boardTitle__ から __name__ (__username__) を外しますか?メンバーはこのボードのすべてのカードから外れ、通知を受けます。",
+ "removeMemberPopup-title": "メンバーを外しますか?",
+ "rename": "名前変更",
+ "rename-board": "ボード名の変更",
+ "restore": "復元",
+ "save": "保存",
+ "search": "検索",
+ "rules": "Rules",
+ "search-cards": "カードのタイトルと詳細から検索",
+ "search-example": "検索文字",
+ "select-color": "色を選択",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "自分をこのカードに割り当てる",
+ "shortcut-autocomplete-emoji": "絵文字の補完",
+ "shortcut-autocomplete-members": "メンバーの補完",
+ "shortcut-clear-filters": "すべてのフィルターを解除する",
+ "shortcut-close-dialog": "ダイアログを閉じる",
+ "shortcut-filter-my-cards": "カードをフィルター",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "フィルターサイドバーの切り替え",
+ "shortcut-toggle-sidebar": "ボードサイドバーの切り替え",
+ "show-cards-minimum-count": "以下より多い場合、リストにカード数を表示",
+ "sidebar-open": "サイドバーを開く",
+ "sidebar-close": "サイドバーを閉じる",
+ "signupPopup-title": "アカウント作成",
+ "star-board-title": "ボードにスターをつけると自分のボード一覧のトップに表示されます。",
+ "starred-boards": "スターのついたボード",
+ "starred-boards-description": "スターのついたボードはボードリストの先頭に表示されます。",
+ "subscribe": "購読",
+ "team": "チーム",
+ "this-board": "このボード",
+ "this-card": "このカード",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "時間",
+ "title": "タイトル",
+ "tracking": "トラッキング",
+ "tracking-info": "これらのカードへの変更が通知されるようになります。",
+ "type": "Type",
+ "unassign-member": "未登録のメンバー",
+ "unsaved-description": "未保存の変更があります。",
+ "unwatch": "アンウォッチ",
+ "upload": "アップロード",
+ "upload-avatar": "アバターのアップロード",
+ "uploaded-avatar": "アップロードされたアバター",
+ "username": "ユーザー名",
+ "view-it": "見る",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "ウォッチ",
+ "watching": "ウォッチしています",
+ "watching-info": "このボードの変更が通知されます",
+ "welcome-board": "ウェルカムボード",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "基本",
+ "welcome-list2": "高度",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "何をしたいですか?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "管理パネル",
+ "settings": "設定",
+ "people": "メンバー",
+ "registration": "登録",
+ "disable-self-registration": "自己登録を無効化",
+ "invite": "招待",
+ "invite-people": "メンバーを招待",
+ "to-boards": "ボードへ移動",
+ "email-addresses": "Emailアドレス",
+ "smtp-host-description": "Emailを処理するSMTPサーバーのアドレス",
+ "smtp-port-description": "SMTPサーバーがEmail送信に使用するポート",
+ "smtp-tls-description": "SMTPサーバのTLSサポートを有効化",
+ "smtp-host": "SMTPホスト",
+ "smtp-port": "SMTPポート",
+ "smtp-username": "ユーザー名",
+ "smtp-password": "パスワード",
+ "smtp-tls": "TLSサポート",
+ "send-from": "送信元",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "招待コード",
+ "email-invite-register-subject": "__inviter__さんがあなたを招待しています",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "招待コードが存在しません",
+ "error-notAuthorized": "このページを参照する権限がありません。",
+ "outgoing-webhooks": "発信Webフック",
+ "outgoingWebhooksPopup-title": "発信Webフック",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "発信Webフックの作成",
+ "no-name": "(Unknown)",
+ "Node_version": "Nodeバージョン",
+ "OS_Arch": "OSアーキテクチャ",
+ "OS_Cpus": "OS CPU数",
+ "OS_Freemem": "OSフリーメモリ",
+ "OS_Loadavg": "OSロードアベレージ",
+ "OS_Platform": "OSプラットフォーム",
+ "OS_Release": "OSリリース",
+ "OS_Totalmem": "OSトータルメモリ",
+ "OS_Type": "OS種類",
+ "OS_Uptime": "OSアップタイム",
+ "days": "days",
+ "hours": "時",
+ "minutes": "分",
+ "seconds": "秒",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "はい",
+ "no": "いいえ",
+ "accounts": "アカウント",
+ "accounts-allowEmailChange": "メールアドレスの変更を許可",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "受付",
+ "card-received-on": "受付日",
+ "card-end": "終了",
+ "card-end-on": "終了日",
+ "editCardReceivedDatePopup-title": "受付日の変更",
+ "editCardEndDatePopup-title": "終了日の変更",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "すべてのリスト、カード、ラベル、アクティビティは削除され、ボードの内容を元に戻すことができません。",
+ "boardDeletePopup-title": "ボードを削除しますか?",
+ "delete-board": "ボードを削除",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "追加",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "リスト:",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "チェックリストを追加",
+ "r-d-remove-checklist": "チェックリストを削除",
+ "r-by": "by",
+ "r-add-checklist": "チェックリストを追加",
+ "r-with-items": "with items",
+ "r-items-list": "アイテム1、アイテム2、アイテム3",
+ "r-add-swimlane": "スイムレーンを追加",
+ "r-swimlane-name": "スイムレーン名",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "カードが別のリストに移動したとき",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "認証方式",
+ "authentication-type": "認証タイプ",
+ "custom-product-name": "Custom Product Name",
+ "layout": "レイアウト",
+ "hide-logo": "ロゴを隠す",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "ボードの複製",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "スイムレーンを削除しますか?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "全てをリストアする",
+ "delete-all": "全てを削除する",
+ "loading": "ローディング中です、しばらくお待ちください。",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/ka.i18n.json b/i18n/ka.i18n.json
index 03fc99b7..a91a5503 100644
--- a/i18n/ka.i18n.json
+++ b/i18n/ka.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "დათანხმება",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__დაფა__] __ბარათი__",
- "actions": "მოქმედებები",
- "activities": "აქტივეობები",
- "activity": "აქტივობები",
- "activity-added": "დამატებულია %s ზე %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "მიბმულია %s %s-დან",
- "activity-created": "შექმნილია %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "იმპორტირებულია%s %s-დან",
- "activity-joined": "შეუერთდა %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": " %s-ზე",
- "activity-removed": "წაიშალა %s %s-დან",
- "activity-sent": "გაიგზავნა %s %s-ში",
- "activity-unjoined": "არ შემოუერთდა %s",
- "activity-subtask-added": "დაამატა ქვესაქმიანობა %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "დაემატა ჩამონათვალი %s-ს",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "დამატებულია ჩამონათვალის ელემენტები '%s' %s-ში",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "დამატება",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "მიბმული ფაილის დამატება",
- "add-board": "დაფის დამატება",
- "add-card": "ბარათის დამატება",
- "add-swimlane": "ბილიკის დამატება",
- "add-subtask": "ქვესაქმიანობის დამატება",
- "add-checklist": "კატალოგის დამატება",
- "add-checklist-item": "დაამატეთ საგანი ჩამონათვალს",
- "add-cover": "გარეკანის დამატება",
- "add-label": "ნიშნის დამატება",
- "add-list": "ჩამონათვალის დამატება",
- "add-members": "წევრების დამატება",
- "added": "-მა დაამატა",
- "addMemberPopup-title": "წევრები",
- "admin": "ადმინი",
- "admin-desc": "შეუძლია ნახოს და შეასწოროს ბარათები, წაშალოს წევრები და შეცვალოს დაფის პარამეტრები. ",
- "admin-announcement": "განცხადება",
- "admin-announcement-active": "აქტიური სისტემა-ფართო განცხადება",
- "admin-announcement-title": "შეტყობინება ადმინისტრატორისთვის",
- "all-boards": "ყველა დაფა",
- "and-n-other-card": "და __count__ სხვა ბარათი",
- "and-n-other-card_plural": "და __count__ სხვა ბარათები",
- "apply": "გამოყენება",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "ბარათის აღდგენა",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "უფლებამოსილი წევრი",
- "attached": "მიბმული",
- "attachment": "მიბმული ფიალი",
- "attachment-delete-pop": "მიბმული ფაილის წაშლა მუდმივია. შეუძლებელია მისი უკან დაბრუნება. ",
- "attachmentDeletePopup-title": "გსურთ მიბმული ფაილის წაშლა? ",
- "attachments": "მიბმული ფაილები",
- "auto-watch": "დაფის ავტომატური ნახვა მას შემდეგ რაც ის შეიქმნება",
- "avatar-too-big": "დიდი მოცულობის სურათი (მაქსიმუმ 70KB)",
- "back": "უკან",
- "board-change-color": "ფერის შეცვლა",
- "board-nb-stars": "%s ვარსკვლავი",
- "board-not-found": "დაფა არ მოიძებნა",
- "board-private-info": "ეს დაფა იქნება <strong>პირადი</strong>.",
- "board-public-info": "ეს დაფა იქნება <strong>საჯარო</strong>.",
- "boardChangeColorPopup-title": "დაფის ფონის ცვლილება",
- "boardChangeTitlePopup-title": "დაფის სახელის ცვლილება",
- "boardChangeVisibilityPopup-title": "ხილვადობის შეცვლა",
- "boardChangeWatchPopup-title": "საათის შეცვლა",
- "boardMenuPopup-title": "Board Settings",
- "boards": "დაფები",
- "board-view": "დაფის ნახვა",
- "board-view-cal": "კალენდარი",
- "board-view-swimlanes": "ბილიკები",
- "board-view-lists": "ჩამონათვალი",
- "bucket-example": "მაგალითად “Bucket List” ",
- "cancel": "გაუქმება",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "ამ ბარათს ჰქონდა%s კომენტარი.",
- "card-delete-notice": "წაშლის შემთხვევაში ამ ბარათთან ასცირებული ყველა მოქმედება დაიკარგება.",
- "card-delete-pop": "ყველა მოქმედება წაიშლება აქტივობების ველიდან და თქვენ აღარ შეგეძლებათ ბარათის ხელახლა გახსნა. დაბრუნება შეუძლებელია.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "საბოლოო ვადა ",
- "card-due-on": "საბოლოო ვადა",
- "card-spent": "დახარჯული დრო",
- "card-edit-attachments": "მიბმული ფაილის შესწორება",
- "card-edit-custom-fields": "მომხმარებლის ველის შესწორება",
- "card-edit-labels": "ნიშნის შესწორება",
- "card-edit-members": "მომხმარებლების შესწორება",
- "card-labels-title": "ნიშნის შეცვლა ბარათისთვის.",
- "card-members-title": "დაამატეთ ან წაშალეთ დაფის წევრი ბარათიდან. ",
- "card-start": "დაწყება",
- "card-start-on": "დაიწყება",
- "cardAttachmentsPopup-title": "მიბმა შემდეგი წყაროდან: ",
- "cardCustomField-datePopup-title": "დროის ცვლილება",
- "cardCustomFieldsPopup-title": "მომხმარებლის ველის შესწორება",
- "cardDeletePopup-title": "წავშალოთ ბარათი? ",
- "cardDetailsActionsPopup-title": "ბარათის მოქმედებები",
- "cardLabelsPopup-title": "ნიშნები",
- "cardMembersPopup-title": "წევრები",
- "cardMorePopup-title": "მეტი",
- "cardTemplatePopup-title": "Create template",
- "cards": "ბარათები",
- "cards-count": "ბარათები",
- "casSignIn": "შესვლა CAS-ით",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "ცვლილება",
- "change-avatar": "სურათის შეცვლა",
- "change-password": "პაროლის შეცვლა",
- "change-permissions": "პარამეტრების შეცვლა",
- "change-settings": "პარამეტრების შეცვლა",
- "changeAvatarPopup-title": "სურათის შეცვლა",
- "changeLanguagePopup-title": "ენის შეცვლა",
- "changePasswordPopup-title": "პაროლის შეცვლა",
- "changePermissionsPopup-title": "უფლებების შეცვლა",
- "changeSettingsPopup-title": "პარამეტრების შეცვლა",
- "subtasks": "ქვეამოცანა",
- "checklists": "კატალოგი",
- "click-to-star": "დააჭირეთ დაფის ვარსკვლავით მოსანიშნად",
- "click-to-unstar": "დააკლიკეთ დაფიდან ვარსკვლავის მოსახსნელად. ",
- "clipboard": "Clipboard ან drag & drop",
- "close": "დახურვა",
- "close-board": "დაფის დახურვა",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "შავი",
- "color-blue": "ლურჯი",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "მწვანე",
- "color-indigo": "indigo",
- "color-lime": "ღია ყვითელი",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "ნარინჯისფერი",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "ვარდისფერი",
- "color-plum": "plum",
- "color-purple": "იასამნისფერი",
- "color-red": "წითელი ",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "ცისფერი",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "ყვითელი",
- "unset-color": "Unset",
- "comment": "კომენტარი",
- "comment-placeholder": "დაწერეთ კომენტარი",
- "comment-only": "მხოლოდ კომენტარები",
- "comment-only-desc": "თქვენ შეგიძლიათ კომენტარის გაკეთება მხოლოდ ბარათებზე.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "კომპიუტერი",
- "confirm-subtask-delete-dialog": "დარწმუნებული ხართ, რომ გსურთ ქვესაქმიანობის წაშლა? ",
- "confirm-checklist-delete-dialog": "დარწმუნებული ხართ, რომ გსურთ კატალოგის წაშლა ? ",
- "copy-card-link-to-clipboard": "დააკოპირეთ ბარათის ბმული clipboard-ზე",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "ძებნა",
- "copyCardPopup-title": "ბარათის ასლი",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"სათაური\": \"პირველი ბარათის სათაური\", \"აღწერა\":\"პირველი ბარათის აღწერა\"}, {\"სათაური\":\"მეორე ბარათის სათაური\",\"აღწერა\":\"მეორე ბარათის აღწერა\"},{\"სათაური\":\"ბოლო ბარათის სათაური\",\"აღწერა\":\"ბოლო ბარათის აღწერა\"} ]",
- "create": "შექმნა",
- "createBoardPopup-title": "დაფის შექმნა",
- "chooseBoardSourcePopup-title": "დაფის იმპორტი",
- "createLabelPopup-title": "ნიშნის შექმნა",
- "createCustomField": "ველის შექმნა",
- "createCustomFieldPopup-title": "ველის შექმნა",
- "current": "მიმდინარე",
- "custom-field-delete-pop": "ქმედება გამოიწვევს მომხმარებლის ველის წაშლას ყველა ბარათიდან და გაანადგურებს მის ისტორიას, რის შემდეგაც შეუძლებელი იქნება მისი უკან დაბრუნება. ",
- "custom-field-checkbox": "მოსანიშნი გრაფა",
- "custom-field-date": "თარიღი",
- "custom-field-dropdown": "ჩამოსაშლელი სია",
- "custom-field-dropdown-none": "(ცარიელი)",
- "custom-field-dropdown-options": "პარამეტრების სია",
- "custom-field-dropdown-options-placeholder": "დამატებითი პარამეტრების სანახავად დააჭირეთ enter-ს. ",
- "custom-field-dropdown-unknown": "(უცნობი)",
- "custom-field-number": "რიცხვი",
- "custom-field-text": "ტექსტი",
- "custom-fields": "მომხმარებლის ველი",
- "date": "თარიღი",
- "decline": "უარყოფა",
- "default-avatar": "სტანდარტული ავატარი",
- "delete": "წაშლა",
- "deleteCustomFieldPopup-title": "წავშალოთ მომხმარებლის ველი? ",
- "deleteLabelPopup-title": "ნამდვილად გსურთ ნიშნის წაშლა? ",
- "description": "აღწერა",
- "disambiguateMultiLabelPopup-title": "გაუგებარი ნიშნის მოქმედება",
- "disambiguateMultiMemberPopup-title": "გაუგებარი წევრის მოქმედება",
- "discard": "უარყოფა",
- "done": "დასრულებული",
- "download": "ჩამოტვირთვა",
- "edit": "შესწორება",
- "edit-avatar": "სურათის შეცვლა",
- "edit-profile": "პროფილის შესწორება",
- "edit-wip-limit": " WIP ლიმიტის შესწორება",
- "soft-wip-limit": "მსუბუქი WIP შეზღუდვა ",
- "editCardStartDatePopup-title": "დაწყების დროის შეცვლა",
- "editCardDueDatePopup-title": "შეცვალეთ დედლაინი",
- "editCustomFieldPopup-title": "ველების შესწორება",
- "editCardSpentTimePopup-title": "დახარჯული დროის შეცვლა",
- "editLabelPopup-title": "ნიშნის შეცვლა",
- "editNotificationPopup-title": "შეტყობინებების შესწორება",
- "editProfilePopup-title": "პროფილის შესწორება",
- "email": "ელ.ფოსტა",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "მოგესალმებით __user__,\n\nამ სერვისის გამოსაყენებლად დააკლიკეთ ქვედა ბმულს.\n\n__url__\n\nმადლობა.",
- "email-fail": "ელ.ფოსტის გაგზავნა ვერ მოხერხდა",
- "email-fail-text": "ელ.ფოსტის გაგზავნისას დაფიქსირდა შეცდომა",
- "email-invalid": "არასწორი ელ.ფოსტა",
- "email-invite": "მოწვევა ელ.ფოსტის მეშვეობით",
- "email-invite-subject": "__inviter__ გამოგიგზავნათ მოწვევა",
- "email-invite-text": "ძვირფასო __user__,\n\n__inviter__ გიწვევთ დაფაზე \"__board__\" თანამშრომლობისთვის.\n\nგთხოვთ მიყვეთ ქვემოთ მოცემულ ბმულს:\n\n__url__\n\nმადლობა.",
- "email-resetPassword-subject": "შეცვალეთ თქვენი პაროლი __siteName-ზე__",
- "email-resetPassword-text": "გამარჯობა__user__,\n\nპაროლის შესაცვლელად დააკლიკეთ ქვედა ბმულს .\n\n__url__\n\nმადლობა.",
- "email-sent": "ელ.ფოსტა გაგზავნილია",
- "email-verifyEmail-subject": "შეამოწმეთ ელ.ფოსტის მისამართი __siteName-ზე__",
- "email-verifyEmail-text": "გამარჯობა __user__,\n\nანგარიშის ელ.ფოსტის შესამოწმებლად დააკლიკეთ ქვედა ბმულს.\n\n__url__\n\nმადლობა.",
- "enable-wip-limit": "გავააქტიუროთ WIP ლიმიტი",
- "error-board-doesNotExist": "მსგავსი დაფა არ არსებობს",
- "error-board-notAdmin": "ამის გასაკეთებლად საჭიროა იყოთ დაფის ადმინისტრატორი",
- "error-board-notAMember": "ამის გასაკეთებლად საჭიროა იყოთ დაფის წევრი",
- "error-json-malformed": "შენი ტექსტი არ არის ვალიდური JSON",
- "error-json-schema": "თქვენი JSON მონაცემები არ შეიცავს ზუსტ ინფორმაციას სწორ ფორმატში ",
- "error-list-doesNotExist": "ეს ცხრილი არ არსებობს",
- "error-user-doesNotExist": "მსგავსი მომხმარებელი არ არსებობს",
- "error-user-notAllowSelf": "თქვენ არ შეგიძლიათ საკუთარი თავის მოწვევა",
- "error-user-notCreated": "მომხმარებელი არ შეიქმნა",
- "error-username-taken": "არსებობს მსგავსი მომხმარებელი",
- "error-email-taken": "უკვე არსებობს მსგავსი ელ.ფოსტა",
- "export-board": "დაფის ექსპორტი",
- "filter": "ფილტრი",
- "filter-cards": "ბარათების გაფილტვრა",
- "filter-clear": "ფილტრის გასუფთავება",
- "filter-no-label": "ნიშანი არ გვაქვს",
- "filter-no-member": "არ არის წევრები ",
- "filter-no-custom-fields": "არა მომხმარებლის ველი",
- "filter-on": "ფილტრი ჩართულია",
- "filter-on-desc": "თქვენ ფილტრავთ ბარათებს ამ დაფაზე. დააკლიკეთ აქ ფილტრაციის შესწორებისთვის. ",
- "filter-to-selection": "მონიშნულის გაფილტვრა",
- "advanced-filter-label": "გაფართოებული ფილტრაცია",
- "advanced-filter-description": "გაფართოებული ფილტრაცია, უფლებას გაძლევთ დაწეროთ მწკრივი რომლებიც შეიცავენ შემდეგ ოპერაციებს : == != <= >= && || ( ) space გამოიყენება როგორც გამმიჯნავი ოპერაციებს შორის. თქვენ შეგიძლიათ გაფილტროთ მომხმარებლის ველი მათი სახელებისა და ღირებულებების მიხედვით. მაგალითად: Field1 == Value1. გაითვალისწინეთ რომ თუ ველი ან ღირებულება შეიცავს space-ს თქვენ დაგჭირდებათ მათი მოთავსება ერთ ციტატაში მაგ: 'Field 1' == 'Value 1'. ერთი კონტროლის სიმბოლოებისთვის (' \\/) გამოტოვება, შეგიძლიათ გამოიყენოთ \\. მაგ: Field1 == I\\'m. აგრეთვე თქვენ შეგიძლიათ შეურიოთ რამოდენიმე კომბინაცია. მაგალითად: F1 == V1 || F1 == V2. როგორც წესი ყველა ოპერაცია ინტერპრეტირებულია მარცხნიდან მარჯვნივ. თქვენ შეგიძლიათ შეცვალოთ რიგითობა ფრჩხილების შეცვლით მაგალითად: F1 == V1 && ( F2 == V2 || F2 == V3 ). აგრეთვე შეგიძლიათ მოძებნოთ ტექსტის ველები რეგექსით F1 == /Tes.*/i",
- "fullname": "სახელი და გვარი",
- "header-logo-title": "დაბრუნდით უკან დაფების გვერდზე.",
- "hide-system-messages": "დამალეთ სისტემური შეტყობინებები",
- "headerBarCreateBoardPopup-title": "დაფის შექმნა",
- "home": "სახლი",
- "import": "იმპორტირება",
- "link": "Link",
- "import-board": " დაფის იმპორტი",
- "import-board-c": "დაფის იმპორტი",
- "import-board-title-trello": "დაფის იმპორტი Trello-დან",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "იმპორტირებული დაფა წაშლის ყველა არსებულ მონაცემს დაფაზე და შეანაცვლებს მას იმპორტირებული დაფა. ",
- "from-trello": "Trello-დან",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "თქვენს Trello დაფაზე, შედით \"მენიუ\"-ში, შემდეგ დააკლიკეთ \"მეტი\", \"ამოპრინტერება და ექსპორტი\", \"JSON-ის ექსპორტი\" და დააკოპირეთ შედეგი. ",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "მოათავსეთ თქვენი ვალიდური JSON მონაცემები აქ. ",
- "import-map-members": "რუკის წევრები",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "მომხმარებლის რუკების განხილვა",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "ვერსია",
- "initials": "ინიციალები",
- "invalid-date": "არასწორი თარიღი",
- "invalid-time": "არასწორი დრო",
- "invalid-user": "არასწორი მომხმარებელი",
- "joined": "შემოუერთდა",
- "just-invited": "თქვენ მოწვეული ხართ ამ დაფაზე",
- "keyboard-shortcuts": "კლავიატურის კომბინაციები",
- "label-create": "ნიშნის შექმნა",
- "label-default": "%s ნიშანი (default)",
- "label-delete-pop": "იმ შემთხვევაში თუ წაშლით ნიშანს, ყველა ბარათიდან ისტორია ავტომატურად წაიშლება და შეუძლებელი იქნება მისი უკან დაბრუნება.",
- "labels": "ნიშნები",
- "language": "ენა",
- "last-admin-desc": "თქვენ ვერ შეცვლით როლებს რადგან უნდა არსებობდეს ერთი ადმინი მაინც.",
- "leave-board": "დატოვეთ დაფა",
- "leave-board-pop": "დარწმუნებული ხართ, რომ გინდათ დატოვოთ __boardTitle__? თქვენ წაიშლებით ამ დაფის ყველა ბარათიდან. ",
- "leaveBoardPopup-title": "გსურთ დაფის დატოვება? ",
- "link-card": "დააკავშირეთ ამ ბარათთან",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "გადაიტანე ყველა ბარათი ამ სიაში",
- "list-select-cards": "მონიშნე ყველა ბარათი ამ სიაში",
- "set-color-list": "Set Color",
- "listActionPopup-title": "მოქმედებების სია",
- "swimlaneActionPopup-title": "ბილიკის მოქმედებები",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Trello ბარათის იმპორტი",
- "listMorePopup-title": "მეტი",
- "link-list": "დააკავშირეთ ამ ჩამონათვალთან",
- "list-delete-pop": "ყველა მოქმედება წაიშლება აქტივობების ველიდან და თქვენ ვეღარ შეძლებთ მის აღდგენას ჩამონათვალში",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "ჩამონათვალი",
- "swimlanes": "ბილიკები",
- "log-out": "გამოსვლა",
- "log-in": "შესვლა",
- "loginPopup-title": "შესვლა",
- "memberMenuPopup-title": "მომხმარებლის პარამეტრები",
- "members": "წევრები",
- "menu": "მენიუ",
- "move-selection": "მონიშნულის მოძრაობა",
- "moveCardPopup-title": "ბარათის გადატანა",
- "moveCardToBottom-title": "ქვევით ჩამოწევა",
- "moveCardToTop-title": "ზევით აწევა",
- "moveSelectionPopup-title": "მონიშნულის მოძრაობა",
- "multi-selection": "რამდენიმეს მონიშვნა",
- "multi-selection-on": "რამდენიმეს მონიშვნა ჩართულია",
- "muted": "ხმა გათიშულია",
- "muted-info": "თქვენ აღარ მიიღებთ შეტყობინებას ამ დაფაზე მიმდინარე ცვლილებების შესახებ. ",
- "my-boards": "ჩემი დაფები",
- "name": "სახელი",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "შედეგის გარეშე",
- "normal": "ნორმალური",
- "normal-desc": "შეუძლია ნახოს და შეასწოროს ბარათები. ამ პარამეტრების შეცვლა შეუძლებელია. ",
- "not-accepted-yet": "მოწვევა ჯერ არ დადასტურებულა",
- "notify-participate": "მიიღეთ განახლებები ნებისმიერ ბარათზე, რომელშიც მონაწილეობთ, როგორც შემქმნელი ან წევრი. ",
- "notify-watch": "მიიღეთ განახლებები ყველა დაფაზე, ჩამონათვალზე ან ბარათებზე, რომელსაც თქვენ აკვირდებით",
- "optional": "არჩევითი",
- "or": "ან",
- "page-maybe-private": "ეს გვერდი შესაძლოა იყოს კერძო. თქვენ შეგეძლებათ მისი ნახვა <a href='%s'>logging in</a> მეშვეობით.",
- "page-not-found": "გვერდი არ მოიძებნა.",
- "password": "პაროლი",
- "paste-or-dragdrop": "ჩასმისთვის, ან drag & drop-ისთვის ჩააგდეთ სურათი აქ (მხოლოდ სურათი)",
- "participating": "მონაწილეობა",
- "preview": "წინასწარ ნახვა",
- "previewAttachedImagePopup-title": "წინასწარ ნახვა",
- "previewClipboardImagePopup-title": "წინასწარ ნახვა",
- "private": "კერძო",
- "private-desc": "ეს არის კერძო დაფა. დაფაზე წვდომის, ნახვის და რედაქტირების უფლება აქვთ მხოლოდ მასზე დამატებულ წევრებს. ",
- "profile": "პროფილი",
- "public": "საჯარო",
- "public-desc": "ეს დაფა არის საჯარო. ის ხილვადია ყველასთვის და შესაძლოა გამოჩნდეს საძიებო სისტემებში. შესწორების უფლება აქვს მხოლოდ მასზე დამატებულ პირებს. ",
- "quick-access-description": "მონიშნეთ დაფა ვარსკვლავით იმისთვის, რომ დაამატოთ სწრაფი ბმული ამ ნაწილში.",
- "remove-cover": "გარეკანის წაშლა",
- "remove-from-board": "დაფიდან წაშლა",
- "remove-label": "ნიშნის წაშლა",
- "listDeletePopup-title": "ნამდვილად გსურთ სიის წაშლა? ",
- "remove-member": "წევრის წაშლა",
- "remove-member-from-card": "ბარათიდან წაშლა",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "ნამდვილად გსურთ წევრის წაშლა? ",
- "rename": "სახელის შეცვლა",
- "rename-board": "დაფის სახელის ცვლილება",
- "restore": "აღდგენა",
- "save": "დამახსოვრება",
- "search": "ძებნა",
- "rules": "Rules",
- "search-cards": "მოძებნეთ ბარათის სახელით და აღწერით ამ დაფაზე",
- "search-example": "საძიებო ტექსტი",
- "select-color": "ფერის მონიშვნა",
- "set-wip-limit-value": "დააყენეთ შეზღუდვა დავალებების მაქსიმალურ რაოდენობაზე ",
- "setWipLimitPopup-title": "დააყენეთ WIP ლიმიტი",
- "shortcut-assign-self": "მონიშნეთ საკუთარი თავი აღნიშნულ ბარათზე",
- "shortcut-autocomplete-emoji": "emoji-ის ავტომატური შევსება",
- "shortcut-autocomplete-members": "მომხმარებლების ავტომატური შევსება",
- "shortcut-clear-filters": "ყველა ფილტრის გასუფთავება",
- "shortcut-close-dialog": "დიალოგის დახურვა",
- "shortcut-filter-my-cards": "ჩემი ბარათების გაფილტვრა",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "ფილტრაციის გვერდითა ღილაკი",
- "shortcut-toggle-sidebar": "გვერდით მენიუს ჩართვა/გამორთვა",
- "show-cards-minimum-count": "აჩვენეთ ბარათების დათვლილი რაოდენობა თუ ჩამონათვალი შეიცავს უფრო მეტს ვიდრე ",
- "sidebar-open": "გახსენით მცირე სტატია",
- "sidebar-close": "დახურეთ მცირე სტატია",
- "signupPopup-title": "ანგარიშის შექმნა",
- "star-board-title": "დააკლიკეთ დაფის ვარსკვლავით მონიშვნისთვის. ეს ქმედება დაგეხმარებათ გამოაჩინოთ დაფა ჩამონათვალში ზედა პოზიციებზე. ",
- "starred-boards": "ვარსკვლავიანი დაფები",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "გამოწერა",
- "team": "ჯგუფი",
- "this-board": "ეს დაფა",
- "this-card": "ეს ბარათი",
- "spent-time-hours": "დახარჯული დრო (საათები)",
- "overtime-hours": "ზედმეტი დრო (საათები) ",
- "overtime": "ზედმეტი დრო",
- "has-overtime-cards": "აქვს ვადაგადაცდილებული ბარათები",
- "has-spenttime-cards": "აქვს გახარჯული დროის ბარათები",
- "time": "დრო",
- "title": "სათაური",
- "tracking": "მონიტორინგი",
- "tracking-info": "თქვენ მოგივათ შეტყობინება ამ ბარათებში განხორციელებული ნებისმიერი ცვლილებების შესახებ, როგორც შემქმნელს ან წევრს. ",
- "type": "ტიპი",
- "unassign-member": "არაუფლებამოსილი წევრი",
- "unsaved-description": "თქვან გაქვთ დაუმახსოვრებელი აღწერა. ",
- "unwatch": "ნახვის გამორთვა",
- "upload": "ატვირთვა",
- "upload-avatar": "სურათის ატვირთვა",
- "uploaded-avatar": "სურათი ატვირთულია",
- "username": "მომხმარებლის სახელი",
- "view-it": "ნახვა",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "ნახვა",
- "watching": "ნახვის პროცესი",
- "watching-info": "თქვენ მოგივათ შეტყობინება ამ დაფაზე არსებული ნებისმიერი ცვლილების შესახებ. ",
- "welcome-board": "მისასალმებელი დაფა",
- "welcome-swimlane": "ეტაპი 1 ",
- "welcome-list1": "ბაზისური ",
- "welcome-list2": "დაწინაურებული",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "რისი გაკეთება გსურთ? ",
- "wipLimitErrorPopup-title": "არასწორი WIP ლიმიტი",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "ადმინის პანელი",
- "settings": "პარამეტრები",
- "people": "ხალხი",
- "registration": "რეგისტრაცია",
- "disable-self-registration": "თვით რეგისტრაციის გამორთვა",
- "invite": "მოწვევა",
- "invite-people": "ხალხის მოწვევა",
- "to-boards": "დაფა(ებ)ზე",
- "email-addresses": "ელ.ფოსტის მისამართები",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "ჩართეთ TLS მხარდაჭერა SMTP სერვერისთვის",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "მომხმარებლის სახელი",
- "smtp-password": "პაროლი",
- "smtp-tls": "TLS მხარდაჭერა",
- "send-from": "დან",
- "send-smtp-test": "გაუგზავნეთ სატესტო ელ.ფოსტა საკუთარ თავს",
- "invitation-code": "მოწვევის კოდი",
- "email-invite-register-subject": "__inviter__ გამოგიგზავნათ მოწვევა",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "თქვენ წარმატებით გააგზავნეთ ელ.ფოსტა.",
- "error-invitation-code-not-exist": "მსგავსი მოსაწვევი კოდი არ არსებობს",
- "error-notAuthorized": "თქვენ არ გაქვთ ამ გვერდის ნახვის უფლება",
- "outgoing-webhooks": "გამავალი Webhook",
- "outgoingWebhooksPopup-title": "გამავალი Webhook",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(უცნობი)",
- "Node_version": "Node ვერსია",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS თავისუფალი მეხსიერება",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS პლატფორმა",
- "OS_Release": "OS რელიზი",
- "OS_Totalmem": "OS მთლიანი მეხსიერება",
- "OS_Type": "OS ტიპი",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "საათები",
- "minutes": "წუთები",
- "seconds": "წამები",
- "show-field-on-card": "აჩვენეთ ეს ველი ბარათზე",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "დიახ",
- "no": "არა",
- "accounts": "ანგარიშები",
- "accounts-allowEmailChange": "ელ.ფოსტის ცვლილების უფლების დაშვება",
- "accounts-allowUserNameChange": "მომხმარებლის სახელის ცვლილების უფლების დაშვება ",
- "createdAt": "შექმნილია",
- "verified": "შემოწმებული",
- "active": "აქტიური",
- "card-received": "მიღებული",
- "card-received-on": "მიღებულია",
- "card-end": "დასასრული",
- "card-end-on": "დასრულდება : ",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "შეცვალეთ საბოლოო თარიღი",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "უფლებამოსილების გამცემი ",
- "requested-by": "მომთხოვნი",
- "board-delete-notice": "წაშლის შემთხვევაში თქვენ დაკარგავთ ამ დაფასთან ასოცირებულ ყველა მონაცემს მათ შორის : ჩამონათვალს, ბარათებს და მოქმედებებს. ",
- "delete-board-confirm-popup": "ყველა ჩამონათვალი, ბარათი, ნიშანი და აქტივობა წაიშლება და თქვენ ვეღარ შეძლებთ მის აღდგენას. ",
- "boardDeletePopup-title": "წავშალოთ დაფა? ",
- "delete-board": "დაფის წაშლა",
- "default-subtasks-board": "ქვესაქმიანობა __board__ დაფისთვის",
- "default": "Default",
- "queue": "რიგი",
- "subtask-settings": "ქვესაქმიანობების პარამეტრები",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "ბარათებს შესაძლოა ჰქონდეს ქვესაქმიანობები",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "ძირითადი დაფა",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "დამატება",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "დათანხმება",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__დაფა__] __ბარათი__",
+ "actions": "მოქმედებები",
+ "activities": "აქტივეობები",
+ "activity": "აქტივობები",
+ "activity-added": "დამატებულია %s ზე %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "მიბმულია %s %s-დან",
+ "activity-created": "შექმნილია %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "იმპორტირებულია%s %s-დან",
+ "activity-joined": "შეუერთდა %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": " %s-ზე",
+ "activity-removed": "წაიშალა %s %s-დან",
+ "activity-sent": "გაიგზავნა %s %s-ში",
+ "activity-unjoined": "არ შემოუერთდა %s",
+ "activity-subtask-added": "დაამატა ქვესაქმიანობა %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "დაემატა ჩამონათვალი %s-ს",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "დამატებულია ჩამონათვალის ელემენტები '%s' %s-ში",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "დამატება",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "მიბმული ფაილის დამატება",
+ "add-board": "დაფის დამატება",
+ "add-card": "ბარათის დამატება",
+ "add-swimlane": "ბილიკის დამატება",
+ "add-subtask": "ქვესაქმიანობის დამატება",
+ "add-checklist": "კატალოგის დამატება",
+ "add-checklist-item": "დაამატეთ საგანი ჩამონათვალს",
+ "add-cover": "გარეკანის დამატება",
+ "add-label": "ნიშნის დამატება",
+ "add-list": "ჩამონათვალის დამატება",
+ "add-members": "წევრების დამატება",
+ "added": "-მა დაამატა",
+ "addMemberPopup-title": "წევრები",
+ "admin": "ადმინი",
+ "admin-desc": "შეუძლია ნახოს და შეასწოროს ბარათები, წაშალოს წევრები და შეცვალოს დაფის პარამეტრები. ",
+ "admin-announcement": "განცხადება",
+ "admin-announcement-active": "აქტიური სისტემა-ფართო განცხადება",
+ "admin-announcement-title": "შეტყობინება ადმინისტრატორისთვის",
+ "all-boards": "ყველა დაფა",
+ "and-n-other-card": "და __count__ სხვა ბარათი",
+ "and-n-other-card_plural": "და __count__ სხვა ბარათები",
+ "apply": "გამოყენება",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "ბარათის აღდგენა",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "უფლებამოსილი წევრი",
+ "attached": "მიბმული",
+ "attachment": "მიბმული ფიალი",
+ "attachment-delete-pop": "მიბმული ფაილის წაშლა მუდმივია. შეუძლებელია მისი უკან დაბრუნება. ",
+ "attachmentDeletePopup-title": "გსურთ მიბმული ფაილის წაშლა? ",
+ "attachments": "მიბმული ფაილები",
+ "auto-watch": "დაფის ავტომატური ნახვა მას შემდეგ რაც ის შეიქმნება",
+ "avatar-too-big": "დიდი მოცულობის სურათი (მაქსიმუმ 70KB)",
+ "back": "უკან",
+ "board-change-color": "ფერის შეცვლა",
+ "board-nb-stars": "%s ვარსკვლავი",
+ "board-not-found": "დაფა არ მოიძებნა",
+ "board-private-info": "ეს დაფა იქნება <strong>პირადი</strong>.",
+ "board-public-info": "ეს დაფა იქნება <strong>საჯარო</strong>.",
+ "boardChangeColorPopup-title": "დაფის ფონის ცვლილება",
+ "boardChangeTitlePopup-title": "დაფის სახელის ცვლილება",
+ "boardChangeVisibilityPopup-title": "ხილვადობის შეცვლა",
+ "boardChangeWatchPopup-title": "საათის შეცვლა",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "დაფები",
+ "board-view": "დაფის ნახვა",
+ "board-view-cal": "კალენდარი",
+ "board-view-swimlanes": "ბილიკები",
+ "board-view-lists": "ჩამონათვალი",
+ "bucket-example": "მაგალითად “Bucket List” ",
+ "cancel": "გაუქმება",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "ამ ბარათს ჰქონდა%s კომენტარი.",
+ "card-delete-notice": "წაშლის შემთხვევაში ამ ბარათთან ასცირებული ყველა მოქმედება დაიკარგება.",
+ "card-delete-pop": "ყველა მოქმედება წაიშლება აქტივობების ველიდან და თქვენ აღარ შეგეძლებათ ბარათის ხელახლა გახსნა. დაბრუნება შეუძლებელია.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "საბოლოო ვადა ",
+ "card-due-on": "საბოლოო ვადა",
+ "card-spent": "დახარჯული დრო",
+ "card-edit-attachments": "მიბმული ფაილის შესწორება",
+ "card-edit-custom-fields": "მომხმარებლის ველის შესწორება",
+ "card-edit-labels": "ნიშნის შესწორება",
+ "card-edit-members": "მომხმარებლების შესწორება",
+ "card-labels-title": "ნიშნის შეცვლა ბარათისთვის.",
+ "card-members-title": "დაამატეთ ან წაშალეთ დაფის წევრი ბარათიდან. ",
+ "card-start": "დაწყება",
+ "card-start-on": "დაიწყება",
+ "cardAttachmentsPopup-title": "მიბმა შემდეგი წყაროდან: ",
+ "cardCustomField-datePopup-title": "დროის ცვლილება",
+ "cardCustomFieldsPopup-title": "მომხმარებლის ველის შესწორება",
+ "cardDeletePopup-title": "წავშალოთ ბარათი? ",
+ "cardDetailsActionsPopup-title": "ბარათის მოქმედებები",
+ "cardLabelsPopup-title": "ნიშნები",
+ "cardMembersPopup-title": "წევრები",
+ "cardMorePopup-title": "მეტი",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "ბარათები",
+ "cards-count": "ბარათები",
+ "casSignIn": "შესვლა CAS-ით",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "ცვლილება",
+ "change-avatar": "სურათის შეცვლა",
+ "change-password": "პაროლის შეცვლა",
+ "change-permissions": "პარამეტრების შეცვლა",
+ "change-settings": "პარამეტრების შეცვლა",
+ "changeAvatarPopup-title": "სურათის შეცვლა",
+ "changeLanguagePopup-title": "ენის შეცვლა",
+ "changePasswordPopup-title": "პაროლის შეცვლა",
+ "changePermissionsPopup-title": "უფლებების შეცვლა",
+ "changeSettingsPopup-title": "პარამეტრების შეცვლა",
+ "subtasks": "ქვეამოცანა",
+ "checklists": "კატალოგი",
+ "click-to-star": "დააჭირეთ დაფის ვარსკვლავით მოსანიშნად",
+ "click-to-unstar": "დააკლიკეთ დაფიდან ვარსკვლავის მოსახსნელად. ",
+ "clipboard": "Clipboard ან drag & drop",
+ "close": "დახურვა",
+ "close-board": "დაფის დახურვა",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "შავი",
+ "color-blue": "ლურჯი",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "მწვანე",
+ "color-indigo": "indigo",
+ "color-lime": "ღია ყვითელი",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "ნარინჯისფერი",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "ვარდისფერი",
+ "color-plum": "plum",
+ "color-purple": "იასამნისფერი",
+ "color-red": "წითელი ",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "ცისფერი",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "ყვითელი",
+ "unset-color": "Unset",
+ "comment": "კომენტარი",
+ "comment-placeholder": "დაწერეთ კომენტარი",
+ "comment-only": "მხოლოდ კომენტარები",
+ "comment-only-desc": "თქვენ შეგიძლიათ კომენტარის გაკეთება მხოლოდ ბარათებზე.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "კომპიუტერი",
+ "confirm-subtask-delete-dialog": "დარწმუნებული ხართ, რომ გსურთ ქვესაქმიანობის წაშლა? ",
+ "confirm-checklist-delete-dialog": "დარწმუნებული ხართ, რომ გსურთ კატალოგის წაშლა ? ",
+ "copy-card-link-to-clipboard": "დააკოპირეთ ბარათის ბმული clipboard-ზე",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "ძებნა",
+ "copyCardPopup-title": "ბარათის ასლი",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"სათაური\": \"პირველი ბარათის სათაური\", \"აღწერა\":\"პირველი ბარათის აღწერა\"}, {\"სათაური\":\"მეორე ბარათის სათაური\",\"აღწერა\":\"მეორე ბარათის აღწერა\"},{\"სათაური\":\"ბოლო ბარათის სათაური\",\"აღწერა\":\"ბოლო ბარათის აღწერა\"} ]",
+ "create": "შექმნა",
+ "createBoardPopup-title": "დაფის შექმნა",
+ "chooseBoardSourcePopup-title": "დაფის იმპორტი",
+ "createLabelPopup-title": "ნიშნის შექმნა",
+ "createCustomField": "ველის შექმნა",
+ "createCustomFieldPopup-title": "ველის შექმნა",
+ "current": "მიმდინარე",
+ "custom-field-delete-pop": "ქმედება გამოიწვევს მომხმარებლის ველის წაშლას ყველა ბარათიდან და გაანადგურებს მის ისტორიას, რის შემდეგაც შეუძლებელი იქნება მისი უკან დაბრუნება. ",
+ "custom-field-checkbox": "მოსანიშნი გრაფა",
+ "custom-field-date": "თარიღი",
+ "custom-field-dropdown": "ჩამოსაშლელი სია",
+ "custom-field-dropdown-none": "(ცარიელი)",
+ "custom-field-dropdown-options": "პარამეტრების სია",
+ "custom-field-dropdown-options-placeholder": "დამატებითი პარამეტრების სანახავად დააჭირეთ enter-ს. ",
+ "custom-field-dropdown-unknown": "(უცნობი)",
+ "custom-field-number": "რიცხვი",
+ "custom-field-text": "ტექსტი",
+ "custom-fields": "მომხმარებლის ველი",
+ "date": "თარიღი",
+ "decline": "უარყოფა",
+ "default-avatar": "სტანდარტული ავატარი",
+ "delete": "წაშლა",
+ "deleteCustomFieldPopup-title": "წავშალოთ მომხმარებლის ველი? ",
+ "deleteLabelPopup-title": "ნამდვილად გსურთ ნიშნის წაშლა? ",
+ "description": "აღწერა",
+ "disambiguateMultiLabelPopup-title": "გაუგებარი ნიშნის მოქმედება",
+ "disambiguateMultiMemberPopup-title": "გაუგებარი წევრის მოქმედება",
+ "discard": "უარყოფა",
+ "done": "დასრულებული",
+ "download": "ჩამოტვირთვა",
+ "edit": "შესწორება",
+ "edit-avatar": "სურათის შეცვლა",
+ "edit-profile": "პროფილის შესწორება",
+ "edit-wip-limit": " WIP ლიმიტის შესწორება",
+ "soft-wip-limit": "მსუბუქი WIP შეზღუდვა ",
+ "editCardStartDatePopup-title": "დაწყების დროის შეცვლა",
+ "editCardDueDatePopup-title": "შეცვალეთ დედლაინი",
+ "editCustomFieldPopup-title": "ველების შესწორება",
+ "editCardSpentTimePopup-title": "დახარჯული დროის შეცვლა",
+ "editLabelPopup-title": "ნიშნის შეცვლა",
+ "editNotificationPopup-title": "შეტყობინებების შესწორება",
+ "editProfilePopup-title": "პროფილის შესწორება",
+ "email": "ელ.ფოსტა",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "მოგესალმებით __user__,\n\nამ სერვისის გამოსაყენებლად დააკლიკეთ ქვედა ბმულს.\n\n__url__\n\nმადლობა.",
+ "email-fail": "ელ.ფოსტის გაგზავნა ვერ მოხერხდა",
+ "email-fail-text": "ელ.ფოსტის გაგზავნისას დაფიქსირდა შეცდომა",
+ "email-invalid": "არასწორი ელ.ფოსტა",
+ "email-invite": "მოწვევა ელ.ფოსტის მეშვეობით",
+ "email-invite-subject": "__inviter__ გამოგიგზავნათ მოწვევა",
+ "email-invite-text": "ძვირფასო __user__,\n\n__inviter__ გიწვევთ დაფაზე \"__board__\" თანამშრომლობისთვის.\n\nგთხოვთ მიყვეთ ქვემოთ მოცემულ ბმულს:\n\n__url__\n\nმადლობა.",
+ "email-resetPassword-subject": "შეცვალეთ თქვენი პაროლი __siteName-ზე__",
+ "email-resetPassword-text": "გამარჯობა__user__,\n\nპაროლის შესაცვლელად დააკლიკეთ ქვედა ბმულს .\n\n__url__\n\nმადლობა.",
+ "email-sent": "ელ.ფოსტა გაგზავნილია",
+ "email-verifyEmail-subject": "შეამოწმეთ ელ.ფოსტის მისამართი __siteName-ზე__",
+ "email-verifyEmail-text": "გამარჯობა __user__,\n\nანგარიშის ელ.ფოსტის შესამოწმებლად დააკლიკეთ ქვედა ბმულს.\n\n__url__\n\nმადლობა.",
+ "enable-wip-limit": "გავააქტიუროთ WIP ლიმიტი",
+ "error-board-doesNotExist": "მსგავსი დაფა არ არსებობს",
+ "error-board-notAdmin": "ამის გასაკეთებლად საჭიროა იყოთ დაფის ადმინისტრატორი",
+ "error-board-notAMember": "ამის გასაკეთებლად საჭიროა იყოთ დაფის წევრი",
+ "error-json-malformed": "შენი ტექსტი არ არის ვალიდური JSON",
+ "error-json-schema": "თქვენი JSON მონაცემები არ შეიცავს ზუსტ ინფორმაციას სწორ ფორმატში ",
+ "error-list-doesNotExist": "ეს ცხრილი არ არსებობს",
+ "error-user-doesNotExist": "მსგავსი მომხმარებელი არ არსებობს",
+ "error-user-notAllowSelf": "თქვენ არ შეგიძლიათ საკუთარი თავის მოწვევა",
+ "error-user-notCreated": "მომხმარებელი არ შეიქმნა",
+ "error-username-taken": "არსებობს მსგავსი მომხმარებელი",
+ "error-email-taken": "უკვე არსებობს მსგავსი ელ.ფოსტა",
+ "export-board": "დაფის ექსპორტი",
+ "filter": "ფილტრი",
+ "filter-cards": "ბარათების გაფილტვრა",
+ "filter-clear": "ფილტრის გასუფთავება",
+ "filter-no-label": "ნიშანი არ გვაქვს",
+ "filter-no-member": "არ არის წევრები ",
+ "filter-no-custom-fields": "არა მომხმარებლის ველი",
+ "filter-on": "ფილტრი ჩართულია",
+ "filter-on-desc": "თქვენ ფილტრავთ ბარათებს ამ დაფაზე. დააკლიკეთ აქ ფილტრაციის შესწორებისთვის. ",
+ "filter-to-selection": "მონიშნულის გაფილტვრა",
+ "advanced-filter-label": "გაფართოებული ფილტრაცია",
+ "advanced-filter-description": "გაფართოებული ფილტრაცია, უფლებას გაძლევთ დაწეროთ მწკრივი რომლებიც შეიცავენ შემდეგ ოპერაციებს : == != <= >= && || ( ) space გამოიყენება როგორც გამმიჯნავი ოპერაციებს შორის. თქვენ შეგიძლიათ გაფილტროთ მომხმარებლის ველი მათი სახელებისა და ღირებულებების მიხედვით. მაგალითად: Field1 == Value1. გაითვალისწინეთ რომ თუ ველი ან ღირებულება შეიცავს space-ს თქვენ დაგჭირდებათ მათი მოთავსება ერთ ციტატაში მაგ: 'Field 1' == 'Value 1'. ერთი კონტროლის სიმბოლოებისთვის (' \\/) გამოტოვება, შეგიძლიათ გამოიყენოთ \\. მაგ: Field1 == I\\'m. აგრეთვე თქვენ შეგიძლიათ შეურიოთ რამოდენიმე კომბინაცია. მაგალითად: F1 == V1 || F1 == V2. როგორც წესი ყველა ოპერაცია ინტერპრეტირებულია მარცხნიდან მარჯვნივ. თქვენ შეგიძლიათ შეცვალოთ რიგითობა ფრჩხილების შეცვლით მაგალითად: F1 == V1 && ( F2 == V2 || F2 == V3 ). აგრეთვე შეგიძლიათ მოძებნოთ ტექსტის ველები რეგექსით F1 == /Tes.*/i",
+ "fullname": "სახელი და გვარი",
+ "header-logo-title": "დაბრუნდით უკან დაფების გვერდზე.",
+ "hide-system-messages": "დამალეთ სისტემური შეტყობინებები",
+ "headerBarCreateBoardPopup-title": "დაფის შექმნა",
+ "home": "სახლი",
+ "import": "იმპორტირება",
+ "link": "Link",
+ "import-board": " დაფის იმპორტი",
+ "import-board-c": "დაფის იმპორტი",
+ "import-board-title-trello": "დაფის იმპორტი Trello-დან",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "იმპორტირებული დაფა წაშლის ყველა არსებულ მონაცემს დაფაზე და შეანაცვლებს მას იმპორტირებული დაფა. ",
+ "from-trello": "Trello-დან",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "თქვენს Trello დაფაზე, შედით \"მენიუ\"-ში, შემდეგ დააკლიკეთ \"მეტი\", \"ამოპრინტერება და ექსპორტი\", \"JSON-ის ექსპორტი\" და დააკოპირეთ შედეგი. ",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "მოათავსეთ თქვენი ვალიდური JSON მონაცემები აქ. ",
+ "import-map-members": "რუკის წევრები",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "მომხმარებლის რუკების განხილვა",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "ვერსია",
+ "initials": "ინიციალები",
+ "invalid-date": "არასწორი თარიღი",
+ "invalid-time": "არასწორი დრო",
+ "invalid-user": "არასწორი მომხმარებელი",
+ "joined": "შემოუერთდა",
+ "just-invited": "თქვენ მოწვეული ხართ ამ დაფაზე",
+ "keyboard-shortcuts": "კლავიატურის კომბინაციები",
+ "label-create": "ნიშნის შექმნა",
+ "label-default": "%s ნიშანი (default)",
+ "label-delete-pop": "იმ შემთხვევაში თუ წაშლით ნიშანს, ყველა ბარათიდან ისტორია ავტომატურად წაიშლება და შეუძლებელი იქნება მისი უკან დაბრუნება.",
+ "labels": "ნიშნები",
+ "language": "ენა",
+ "last-admin-desc": "თქვენ ვერ შეცვლით როლებს რადგან უნდა არსებობდეს ერთი ადმინი მაინც.",
+ "leave-board": "დატოვეთ დაფა",
+ "leave-board-pop": "დარწმუნებული ხართ, რომ გინდათ დატოვოთ __boardTitle__? თქვენ წაიშლებით ამ დაფის ყველა ბარათიდან. ",
+ "leaveBoardPopup-title": "გსურთ დაფის დატოვება? ",
+ "link-card": "დააკავშირეთ ამ ბარათთან",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "გადაიტანე ყველა ბარათი ამ სიაში",
+ "list-select-cards": "მონიშნე ყველა ბარათი ამ სიაში",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "მოქმედებების სია",
+ "swimlaneActionPopup-title": "ბილიკის მოქმედებები",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Trello ბარათის იმპორტი",
+ "listMorePopup-title": "მეტი",
+ "link-list": "დააკავშირეთ ამ ჩამონათვალთან",
+ "list-delete-pop": "ყველა მოქმედება წაიშლება აქტივობების ველიდან და თქვენ ვეღარ შეძლებთ მის აღდგენას ჩამონათვალში",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "ჩამონათვალი",
+ "swimlanes": "ბილიკები",
+ "log-out": "გამოსვლა",
+ "log-in": "შესვლა",
+ "loginPopup-title": "შესვლა",
+ "memberMenuPopup-title": "მომხმარებლის პარამეტრები",
+ "members": "წევრები",
+ "menu": "მენიუ",
+ "move-selection": "მონიშნულის მოძრაობა",
+ "moveCardPopup-title": "ბარათის გადატანა",
+ "moveCardToBottom-title": "ქვევით ჩამოწევა",
+ "moveCardToTop-title": "ზევით აწევა",
+ "moveSelectionPopup-title": "მონიშნულის მოძრაობა",
+ "multi-selection": "რამდენიმეს მონიშვნა",
+ "multi-selection-on": "რამდენიმეს მონიშვნა ჩართულია",
+ "muted": "ხმა გათიშულია",
+ "muted-info": "თქვენ აღარ მიიღებთ შეტყობინებას ამ დაფაზე მიმდინარე ცვლილებების შესახებ. ",
+ "my-boards": "ჩემი დაფები",
+ "name": "სახელი",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "შედეგის გარეშე",
+ "normal": "ნორმალური",
+ "normal-desc": "შეუძლია ნახოს და შეასწოროს ბარათები. ამ პარამეტრების შეცვლა შეუძლებელია. ",
+ "not-accepted-yet": "მოწვევა ჯერ არ დადასტურებულა",
+ "notify-participate": "მიიღეთ განახლებები ნებისმიერ ბარათზე, რომელშიც მონაწილეობთ, როგორც შემქმნელი ან წევრი. ",
+ "notify-watch": "მიიღეთ განახლებები ყველა დაფაზე, ჩამონათვალზე ან ბარათებზე, რომელსაც თქვენ აკვირდებით",
+ "optional": "არჩევითი",
+ "or": "ან",
+ "page-maybe-private": "ეს გვერდი შესაძლოა იყოს კერძო. თქვენ შეგეძლებათ მისი ნახვა <a href='%s'>logging in</a> მეშვეობით.",
+ "page-not-found": "გვერდი არ მოიძებნა.",
+ "password": "პაროლი",
+ "paste-or-dragdrop": "ჩასმისთვის, ან drag & drop-ისთვის ჩააგდეთ სურათი აქ (მხოლოდ სურათი)",
+ "participating": "მონაწილეობა",
+ "preview": "წინასწარ ნახვა",
+ "previewAttachedImagePopup-title": "წინასწარ ნახვა",
+ "previewClipboardImagePopup-title": "წინასწარ ნახვა",
+ "private": "კერძო",
+ "private-desc": "ეს არის კერძო დაფა. დაფაზე წვდომის, ნახვის და რედაქტირების უფლება აქვთ მხოლოდ მასზე დამატებულ წევრებს. ",
+ "profile": "პროფილი",
+ "public": "საჯარო",
+ "public-desc": "ეს დაფა არის საჯარო. ის ხილვადია ყველასთვის და შესაძლოა გამოჩნდეს საძიებო სისტემებში. შესწორების უფლება აქვს მხოლოდ მასზე დამატებულ პირებს. ",
+ "quick-access-description": "მონიშნეთ დაფა ვარსკვლავით იმისთვის, რომ დაამატოთ სწრაფი ბმული ამ ნაწილში.",
+ "remove-cover": "გარეკანის წაშლა",
+ "remove-from-board": "დაფიდან წაშლა",
+ "remove-label": "ნიშნის წაშლა",
+ "listDeletePopup-title": "ნამდვილად გსურთ სიის წაშლა? ",
+ "remove-member": "წევრის წაშლა",
+ "remove-member-from-card": "ბარათიდან წაშლა",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "ნამდვილად გსურთ წევრის წაშლა? ",
+ "rename": "სახელის შეცვლა",
+ "rename-board": "დაფის სახელის ცვლილება",
+ "restore": "აღდგენა",
+ "save": "დამახსოვრება",
+ "search": "ძებნა",
+ "rules": "Rules",
+ "search-cards": "მოძებნეთ ბარათის სახელით და აღწერით ამ დაფაზე",
+ "search-example": "საძიებო ტექსტი",
+ "select-color": "ფერის მონიშვნა",
+ "set-wip-limit-value": "დააყენეთ შეზღუდვა დავალებების მაქსიმალურ რაოდენობაზე ",
+ "setWipLimitPopup-title": "დააყენეთ WIP ლიმიტი",
+ "shortcut-assign-self": "მონიშნეთ საკუთარი თავი აღნიშნულ ბარათზე",
+ "shortcut-autocomplete-emoji": "emoji-ის ავტომატური შევსება",
+ "shortcut-autocomplete-members": "მომხმარებლების ავტომატური შევსება",
+ "shortcut-clear-filters": "ყველა ფილტრის გასუფთავება",
+ "shortcut-close-dialog": "დიალოგის დახურვა",
+ "shortcut-filter-my-cards": "ჩემი ბარათების გაფილტვრა",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "ფილტრაციის გვერდითა ღილაკი",
+ "shortcut-toggle-sidebar": "გვერდით მენიუს ჩართვა/გამორთვა",
+ "show-cards-minimum-count": "აჩვენეთ ბარათების დათვლილი რაოდენობა თუ ჩამონათვალი შეიცავს უფრო მეტს ვიდრე ",
+ "sidebar-open": "გახსენით მცირე სტატია",
+ "sidebar-close": "დახურეთ მცირე სტატია",
+ "signupPopup-title": "ანგარიშის შექმნა",
+ "star-board-title": "დააკლიკეთ დაფის ვარსკვლავით მონიშვნისთვის. ეს ქმედება დაგეხმარებათ გამოაჩინოთ დაფა ჩამონათვალში ზედა პოზიციებზე. ",
+ "starred-boards": "ვარსკვლავიანი დაფები",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "გამოწერა",
+ "team": "ჯგუფი",
+ "this-board": "ეს დაფა",
+ "this-card": "ეს ბარათი",
+ "spent-time-hours": "დახარჯული დრო (საათები)",
+ "overtime-hours": "ზედმეტი დრო (საათები) ",
+ "overtime": "ზედმეტი დრო",
+ "has-overtime-cards": "აქვს ვადაგადაცდილებული ბარათები",
+ "has-spenttime-cards": "აქვს გახარჯული დროის ბარათები",
+ "time": "დრო",
+ "title": "სათაური",
+ "tracking": "მონიტორინგი",
+ "tracking-info": "თქვენ მოგივათ შეტყობინება ამ ბარათებში განხორციელებული ნებისმიერი ცვლილებების შესახებ, როგორც შემქმნელს ან წევრს. ",
+ "type": "ტიპი",
+ "unassign-member": "არაუფლებამოსილი წევრი",
+ "unsaved-description": "თქვან გაქვთ დაუმახსოვრებელი აღწერა. ",
+ "unwatch": "ნახვის გამორთვა",
+ "upload": "ატვირთვა",
+ "upload-avatar": "სურათის ატვირთვა",
+ "uploaded-avatar": "სურათი ატვირთულია",
+ "username": "მომხმარებლის სახელი",
+ "view-it": "ნახვა",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "ნახვა",
+ "watching": "ნახვის პროცესი",
+ "watching-info": "თქვენ მოგივათ შეტყობინება ამ დაფაზე არსებული ნებისმიერი ცვლილების შესახებ. ",
+ "welcome-board": "მისასალმებელი დაფა",
+ "welcome-swimlane": "ეტაპი 1 ",
+ "welcome-list1": "ბაზისური ",
+ "welcome-list2": "დაწინაურებული",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "რისი გაკეთება გსურთ? ",
+ "wipLimitErrorPopup-title": "არასწორი WIP ლიმიტი",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "ადმინის პანელი",
+ "settings": "პარამეტრები",
+ "people": "ხალხი",
+ "registration": "რეგისტრაცია",
+ "disable-self-registration": "თვით რეგისტრაციის გამორთვა",
+ "invite": "მოწვევა",
+ "invite-people": "ხალხის მოწვევა",
+ "to-boards": "დაფა(ებ)ზე",
+ "email-addresses": "ელ.ფოსტის მისამართები",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "ჩართეთ TLS მხარდაჭერა SMTP სერვერისთვის",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "მომხმარებლის სახელი",
+ "smtp-password": "პაროლი",
+ "smtp-tls": "TLS მხარდაჭერა",
+ "send-from": "დან",
+ "send-smtp-test": "გაუგზავნეთ სატესტო ელ.ფოსტა საკუთარ თავს",
+ "invitation-code": "მოწვევის კოდი",
+ "email-invite-register-subject": "__inviter__ გამოგიგზავნათ მოწვევა",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "თქვენ წარმატებით გააგზავნეთ ელ.ფოსტა.",
+ "error-invitation-code-not-exist": "მსგავსი მოსაწვევი კოდი არ არსებობს",
+ "error-notAuthorized": "თქვენ არ გაქვთ ამ გვერდის ნახვის უფლება",
+ "outgoing-webhooks": "გამავალი Webhook",
+ "outgoingWebhooksPopup-title": "გამავალი Webhook",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(უცნობი)",
+ "Node_version": "Node ვერსია",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS თავისუფალი მეხსიერება",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS პლატფორმა",
+ "OS_Release": "OS რელიზი",
+ "OS_Totalmem": "OS მთლიანი მეხსიერება",
+ "OS_Type": "OS ტიპი",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "საათები",
+ "minutes": "წუთები",
+ "seconds": "წამები",
+ "show-field-on-card": "აჩვენეთ ეს ველი ბარათზე",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "დიახ",
+ "no": "არა",
+ "accounts": "ანგარიშები",
+ "accounts-allowEmailChange": "ელ.ფოსტის ცვლილების უფლების დაშვება",
+ "accounts-allowUserNameChange": "მომხმარებლის სახელის ცვლილების უფლების დაშვება ",
+ "createdAt": "შექმნილია",
+ "verified": "შემოწმებული",
+ "active": "აქტიური",
+ "card-received": "მიღებული",
+ "card-received-on": "მიღებულია",
+ "card-end": "დასასრული",
+ "card-end-on": "დასრულდება : ",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "შეცვალეთ საბოლოო თარიღი",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "უფლებამოსილების გამცემი ",
+ "requested-by": "მომთხოვნი",
+ "board-delete-notice": "წაშლის შემთხვევაში თქვენ დაკარგავთ ამ დაფასთან ასოცირებულ ყველა მონაცემს მათ შორის : ჩამონათვალს, ბარათებს და მოქმედებებს. ",
+ "delete-board-confirm-popup": "ყველა ჩამონათვალი, ბარათი, ნიშანი და აქტივობა წაიშლება და თქვენ ვეღარ შეძლებთ მის აღდგენას. ",
+ "boardDeletePopup-title": "წავშალოთ დაფა? ",
+ "delete-board": "დაფის წაშლა",
+ "default-subtasks-board": "ქვესაქმიანობა __board__ დაფისთვის",
+ "default": "Default",
+ "queue": "რიგი",
+ "subtask-settings": "ქვესაქმიანობების პარამეტრები",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "ბარათებს შესაძლოა ჰქონდეს ქვესაქმიანობები",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "ძირითადი დაფა",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "დამატება",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/km.i18n.json b/i18n/km.i18n.json
index 4ccfab4c..fd26eb78 100644
--- a/i18n/km.i18n.json
+++ b/i18n/km.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "យល់ព្រម",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "បិទផ្ទាំង",
- "shortcut-filter-my-cards": "តម្រងកាតរបស់ខ្ញុំ",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "បង្កើតគណនីមួយ",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "កាតនេះ",
- "spent-time-hours": "ចំណាយពេល (ម៉ោង)",
- "overtime-hours": "លើសពេល (ម៉ោង)",
- "overtime": "លើសពេល",
- "has-overtime-cards": "មានកាតលើសពេល",
- "has-spenttime-cards": "មានកាតដែលបានចំណាយពេល",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "យល់ព្រម",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "បិទផ្ទាំង",
+ "shortcut-filter-my-cards": "តម្រងកាតរបស់ខ្ញុំ",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "បង្កើតគណនីមួយ",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "កាតនេះ",
+ "spent-time-hours": "ចំណាយពេល (ម៉ោង)",
+ "overtime-hours": "លើសពេល (ម៉ោង)",
+ "overtime": "លើសពេល",
+ "has-overtime-cards": "មានកាតលើសពេល",
+ "has-spenttime-cards": "មានកាតដែលបានចំណាយពេល",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json
index ea4c023e..ca21dfd5 100644
--- a/i18n/ko.i18n.json
+++ b/i18n/ko.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "확인",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "동작",
- "activities": "활동 내역",
- "activity": "활동 상태",
- "activity-added": "%s를 %s에 추가함",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "%s를 %s에 첨부함",
- "activity-created": "%s 생성됨",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "%s를 %s에서 제외함",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "%s에 참여",
- "activity-moved": "%s를 %s에서 %s로 옮김",
- "activity-on": "%s에",
- "activity-removed": "%s를 %s에서 삭제함",
- "activity-sent": "%s를 %s로 보냄",
- "activity-unjoined": "%s에서 멤버 해제",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "%s에 체크리스트를 추가함",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "추가",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "첨부파일 추가",
- "add-board": "보드 추가",
- "add-card": "카드 추가",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "체크리스트 추가",
- "add-checklist-item": "체크리스트에 항목 추가",
- "add-cover": "커버 추가",
- "add-label": "라벨 추가",
- "add-list": "리스트 추가",
- "add-members": "멤버 추가",
- "added": "추가됨",
- "addMemberPopup-title": "멤버",
- "admin": "관리자",
- "admin-desc": "카드를 보거나 수정하고, 멤버를 삭제하고, 보드에 대한 설정을 수정할 수 있습니다.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "시스템에 공지사항을 표시합니다",
- "admin-announcement-title": "관리자 공지사항 메시지",
- "all-boards": "전체 보드",
- "and-n-other-card": "__count__ 개의 다른 카드",
- "and-n-other-card_plural": "__count__ 개의 다른 카드들",
- "apply": "적용",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "보관",
- "archived-boards": "Boards in Archive",
- "restore-board": "보드 복구",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "보관",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "멤버 지정",
- "attached": "첨부됨",
- "attachment": "첨부 파일",
- "attachment-delete-pop": "영구 첨부파일을 삭제합니다. 되돌릴 수 없습니다.",
- "attachmentDeletePopup-title": "첨부 파일을 삭제합니까?",
- "attachments": "첨부 파일",
- "auto-watch": "생성한 보드를 자동으로 감시합니다.",
- "avatar-too-big": "아바타 파일이 너무 큽니다. (최대 70KB)",
- "back": "뒤로",
- "board-change-color": "보드 색 변경",
- "board-nb-stars": "%s개의 별",
- "board-not-found": "보드를 찾을 수 없습니다",
- "board-private-info": "이 보드는 <strong>비공개</strong>입니다.",
- "board-public-info": "이 보드는 <strong>공개</strong>로 설정됩니다",
- "boardChangeColorPopup-title": "보드 배경 변경",
- "boardChangeTitlePopup-title": "보드 이름 바꾸기",
- "boardChangeVisibilityPopup-title": "표시 여부 변경",
- "boardChangeWatchPopup-title": "감시상태 변경",
- "boardMenuPopup-title": "Board Settings",
- "boards": "보드",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "목록들",
- "bucket-example": "예: “프로젝트 이름“ 입력",
- "cancel": "취소",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "이 카드에 %s 코멘트가 있습니다.",
- "card-delete-notice": "영구 삭제입니다. 이 카드와 관련된 모든 작업들을 잃게됩니다.",
- "card-delete-pop": "모든 작업이 활동 내역에서 제거되며 카드를 다시 열 수 없습니다. 복구가 안되니 주의하시기 바랍니다.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "종료일",
- "card-due-on": "종료일",
- "card-spent": "Spent Time",
- "card-edit-attachments": "첨부 파일 수정",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "라벨 수정",
- "card-edit-members": "멤버 수정",
- "card-labels-title": "카드의 라벨 변경.",
- "card-members-title": "카드에서 보드의 멤버를 추가하거나 삭제합니다.",
- "card-start": "시작일",
- "card-start-on": "시작일",
- "cardAttachmentsPopup-title": "첨부 파일",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "카드를 삭제합니까?",
- "cardDetailsActionsPopup-title": "카드 액션",
- "cardLabelsPopup-title": "라벨",
- "cardMembersPopup-title": "멤버",
- "cardMorePopup-title": "더보기",
- "cardTemplatePopup-title": "Create template",
- "cards": "카드",
- "cards-count": "카드",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "변경",
- "change-avatar": "아바타 변경",
- "change-password": "암호 변경",
- "change-permissions": "권한 변경",
- "change-settings": "설정 변경",
- "changeAvatarPopup-title": "아바타 변경",
- "changeLanguagePopup-title": "언어 변경",
- "changePasswordPopup-title": "암호 변경",
- "changePermissionsPopup-title": "권한 변경",
- "changeSettingsPopup-title": "설정 변경",
- "subtasks": "Subtasks",
- "checklists": "체크리스트",
- "click-to-star": "보드에 별 추가.",
- "click-to-unstar": "보드에 별 삭제.",
- "clipboard": "클립보드 또는 드래그 앤 드롭",
- "close": "닫기",
- "close-board": "보드 닫기",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "블랙",
- "color-blue": "블루",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "그린",
- "color-indigo": "indigo",
- "color-lime": "라임",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "오렌지",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "핑크",
- "color-plum": "plum",
- "color-purple": "퍼플",
- "color-red": "레드",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "스카이",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "옐로우",
- "unset-color": "Unset",
- "comment": "댓글",
- "comment-placeholder": "댓글 입력",
- "comment-only": "댓글만 입력 가능",
- "comment-only-desc": "카드에 댓글만 달수 있습니다.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "내 컴퓨터",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "클립보드에 카드의 링크가 복사되었습니다.",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "검색",
- "copyCardPopup-title": "카드 복사",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "생성",
- "createBoardPopup-title": "보드 생성",
- "chooseBoardSourcePopup-title": "보드 가져오기",
- "createLabelPopup-title": "라벨 생성",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "경향",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "날짜",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "날짜",
- "decline": "쇠퇴",
- "default-avatar": "기본 아바타",
- "delete": "삭제",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "라벨을 삭제합니까?",
- "description": "설명",
- "disambiguateMultiLabelPopup-title": "라벨 액션의 모호성 제거",
- "disambiguateMultiMemberPopup-title": "멤버 액션의 모호성 제거",
- "discard": "포기",
- "done": "완료",
- "download": "다운로드",
- "edit": "수정",
- "edit-avatar": "아바타 변경",
- "edit-profile": "프로필 변경",
- "edit-wip-limit": "WIP 제한 변경",
- "soft-wip-limit": "원만한 WIP 제한",
- "editCardStartDatePopup-title": "시작일 변경",
- "editCardDueDatePopup-title": "종료일 변경",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "라벨 변경",
- "editNotificationPopup-title": "알림 수정",
- "editProfilePopup-title": "프로필 변경",
- "email": "이메일",
- "email-enrollAccount-subject": "__siteName__에 계정 생성이 완료되었습니다.",
- "email-enrollAccount-text": "안녕하세요. __user__님,\n\n시작하려면 아래링크를 클릭해 주세요.\n\n__url__\n\n감사합니다.",
- "email-fail": "이메일 전송 실패",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "잘못된 이메일 주소",
- "email-invite": "이메일로 초대",
- "email-invite-subject": "__inviter__님이 당신을 초대하였습니다.",
- "email-invite-text": "__user__님,\n\n__inviter__님이 협업을 위해 \"__board__\"보드에 가입하도록 초대하셨습니다.\n\n아래 링크를 클릭해주십시오.\n\n__url__\n\n감사합니다.",
- "email-resetPassword-subject": "패스워드 초기화: __siteName__",
- "email-resetPassword-text": "안녕하세요 __user__님,\n\n비밀번호를 재설정하려면 아래 링크를 클릭하십시오.\n\n__url__\n\n감사합니다.",
- "email-sent": "이메일 전송",
- "email-verifyEmail-subject": "이메일 인증: __siteName__",
- "email-verifyEmail-text": "안녕하세요. __user__님,\n\n당신의 계정과 이메일을 활성하려면 아래 링크를 클릭하십시오.\n\n__url__\n\n감사합니다.",
- "enable-wip-limit": "WIP 제한 활성화",
- "error-board-doesNotExist": "보드가 없습니다.",
- "error-board-notAdmin": "이 작업은 보드의 관리자만 실행할 수 있습니다.",
- "error-board-notAMember": "이 작업은 보드의 멤버만 실행할 수 있습니다.",
- "error-json-malformed": "텍스트가 JSON 형식에 유효하지 않습니다.",
- "error-json-schema": "JSON 데이터에 정보가 올바른 형식으로 포함되어 있지 않습니다.",
- "error-list-doesNotExist": "목록이 없습니다.",
- "error-user-doesNotExist": "멤버의 정보가 없습니다.",
- "error-user-notAllowSelf": "자기 자신을 초대할 수 없습니다.",
- "error-user-notCreated": "유저가 생성되지 않았습니다.",
- "error-username-taken": "중복된 아이디 입니다.",
- "error-email-taken": "Email has already been taken",
- "export-board": "보드 내보내기",
- "filter": "필터",
- "filter-cards": "카드 필터",
- "filter-clear": "필터 초기화",
- "filter-no-label": "라벨 없음",
- "filter-no-member": "멤버 없음",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "필터 사용",
- "filter-on-desc": "보드에서 카드를 필터링합니다. 여기를 클릭하여 필터를 수정합니다.",
- "filter-to-selection": "선택 항목으로 필터링",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "실명",
- "header-logo-title": "보드 페이지로 돌아가기.",
- "hide-system-messages": "시스템 메시지 숨기기",
- "headerBarCreateBoardPopup-title": "보드 생성",
- "home": "홈",
- "import": "가져오기",
- "link": "Link",
- "import-board": "보드 가져오기",
- "import-board-c": "보드 가져오기",
- "import-board-title-trello": "Trello에서 보드 가져오기",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "Trello 게시판에서 'Menu' -> 'More' -> 'Print and Export', 'Export JSON' 선택하여 텍스트 결과값 복사",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "유효한 JSON 데이터를 여기에 붙여 넣으십시오.",
- "import-map-members": "보드 멤버들",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "멤버 매핑 미리보기",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "이니셜",
- "invalid-date": "적절하지 않은 날짜",
- "invalid-time": "적절하지 않은 시각",
- "invalid-user": "적절하지 않은 사용자",
- "joined": "참가함",
- "just-invited": "보드에 방금 초대되었습니다.",
- "keyboard-shortcuts": "키보드 단축키",
- "label-create": "라벨 생성",
- "label-default": "%s 라벨 (기본)",
- "label-delete-pop": "되돌릴 수 없습니다. 모든 카드에서 라벨을 제거하고, 이력을 제거합니다.",
- "labels": "라벨",
- "language": "언어",
- "last-admin-desc": "적어도 하나의 관리자가 필요하기에 이 역할을 변경할 수 없습니다.",
- "leave-board": "보드 멤버에서 나가기",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "카드에대한 링크",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "목록에 있는 모든 카드를 이동",
- "list-select-cards": "목록에 있는 모든 카드를 선택",
- "set-color-list": "Set Color",
- "listActionPopup-title": "동작 목록",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Trello 카드 가져 오기",
- "listMorePopup-title": "더보기",
- "link-list": "이 리스트에 링크",
- "list-delete-pop": "모든 작업이 활동내역에서 제거되며 리스트를 복구 할 수 없습니다. 실행 취소는 불가능 합니다.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "목록들",
- "swimlanes": "Swimlanes",
- "log-out": "로그아웃",
- "log-in": "로그인",
- "loginPopup-title": "로그인",
- "memberMenuPopup-title": "멤버 설정",
- "members": "멤버",
- "menu": "메뉴",
- "move-selection": "선택 항목 이동",
- "moveCardPopup-title": "카드 이동",
- "moveCardToBottom-title": "최하단으로 이동",
- "moveCardToTop-title": "최상단으로 이동",
- "moveSelectionPopup-title": "선택 항목 이동",
- "multi-selection": "다중 선택",
- "multi-selection-on": "다중 선택 사용",
- "muted": "알림 해제",
- "muted-info": "보드의 변경된 사항들의 알림을 받지 않습니다.",
- "my-boards": "내 보드",
- "name": "이름",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "결과 값 없음",
- "normal": "표준",
- "normal-desc": "카드를 보거나 수정할 수 있습니다. 설정값은 변경할 수 없습니다.",
- "not-accepted-yet": "초대장이 수락되지 않았습니다.",
- "notify-participate": "보드 생성자 또는 멤버로 참여하는 모든 카드에 대한 변경사항 알림 받음",
- "notify-watch": "감시중인 보드, 목록 또는 카드에 대한 변경사항 알림 받음",
- "optional": "옵션",
- "or": "또는",
- "page-maybe-private": "이 페이지를 비공개일 수 있습니다. 이것을 보고 싶으면 <a href='%s'>로그인</a>을 하십시오.",
- "page-not-found": "페이지를 찾지 못 했습니다",
- "password": "암호",
- "paste-or-dragdrop": "이미지 파일을 붙여 넣거나 드래그 앤 드롭 (이미지 전용)",
- "participating": "참여",
- "preview": "미리보기",
- "previewAttachedImagePopup-title": "미리보기",
- "previewClipboardImagePopup-title": "미리보기",
- "private": "비공개",
- "private-desc": "비공개된 보드입니다. 오직 보드에 추가된 사람들만 보고 수정할 수 있습니다",
- "profile": "프로파일",
- "public": "공개",
- "public-desc": "공개된 보드입니다. 링크를 가진 모든 사람과 구글과 같은 검색 엔진에서 찾아서 볼수 있습니다. 보드에 추가된 사람들만 수정이 가능합니다.",
- "quick-access-description": "여기에 바로 가기를 추가하려면 보드에 별 표시를 체크하세요.",
- "remove-cover": "커버 제거",
- "remove-from-board": "보드에서 제거",
- "remove-label": "라벨 제거",
- "listDeletePopup-title": "리스트를 삭제합니까?",
- "remove-member": "멤버 제거",
- "remove-member-from-card": "카드에서 제거",
- "remove-member-pop": "__boardTitle__에서 __name__(__username__) 을 제거합니까? 이 보드의 모든 카드에서 제거됩니다. 해당 내용을 __name__(__username__) 은(는) 알림으로 받게됩니다.",
- "removeMemberPopup-title": "멤버를 제거합니까?",
- "rename": "새이름",
- "rename-board": "보드 이름 바꾸기",
- "restore": "복구",
- "save": "저장",
- "search": "검색",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "색 선택",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "현재 카드에 자신을 지정하세요.",
- "shortcut-autocomplete-emoji": "이모티콘 자동완성",
- "shortcut-autocomplete-members": "멤버 자동완성",
- "shortcut-clear-filters": "모든 필터 초기화",
- "shortcut-close-dialog": "대화 상자 닫기",
- "shortcut-filter-my-cards": "내 카드 필터링",
- "shortcut-show-shortcuts": "바로가기 목록을 가져오십시오.",
- "shortcut-toggle-filterbar": "토글 필터 사이드바",
- "shortcut-toggle-sidebar": "보드 사이드바 토글",
- "show-cards-minimum-count": "목록에 카드 수량 표시(입력된 수량 넘을 경우 표시)",
- "sidebar-open": "사이드바 열기",
- "sidebar-close": "사이드바 닫기",
- "signupPopup-title": "계정 생성",
- "star-board-title": "보드에 별 표시를 클릭합니다. 보드 목록에서 최상위로 둘 수 있습니다.",
- "starred-boards": "별표된 보드",
- "starred-boards-description": "별 표시된 보드들은 보드 목록의 최상단에서 보입니다.",
- "subscribe": "구독",
- "team": "팀",
- "this-board": "보드",
- "this-card": "카드",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "시간",
- "title": "제목",
- "tracking": "추적",
- "tracking-info": "보드 생성자 또는 멤버로 참여하는 모든 카드에 대한 변경사항 알림 받음",
- "type": "Type",
- "unassign-member": "멤버 할당 해제",
- "unsaved-description": "저장되지 않은 설명이 있습니다.",
- "unwatch": "감시 해제",
- "upload": "업로드",
- "upload-avatar": "아바타 업로드",
- "uploaded-avatar": "업로드한 아바타",
- "username": "아이디",
- "view-it": "보기",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "감시",
- "watching": "감시 중",
- "watching-info": "\"이 보드의 변경사항을 알림으로 받습니다.",
- "welcome-board": "보드예제",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "신규",
- "welcome-list2": "진행",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "무엇을 하고 싶으신가요?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "관리자 패널",
- "settings": "설정",
- "people": "사람",
- "registration": "회원가입",
- "disable-self-registration": "일반 유저의 회원 가입 막기",
- "invite": "초대",
- "invite-people": "사람 초대",
- "to-boards": "보드로 부터",
- "email-addresses": "이메일 주소",
- "smtp-host-description": "이메일을 처리하는 SMTP 서버의 주소입니다.",
- "smtp-port-description": "SMTP 서버가 보내는 전자 메일에 사용하는 포트입니다.",
- "smtp-tls-description": "SMTP 서버에 TLS 지원 사용",
- "smtp-host": "SMTP 호스트",
- "smtp-port": "SMTP 포트",
- "smtp-username": "사용자 이름",
- "smtp-password": "암호",
- "smtp-tls": "TLS 지원",
- "send-from": "보낸 사람",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "초대 코드",
- "email-invite-register-subject": "\"__inviter__ 님이 당신에게 초대장을 보냈습니다.",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "테스트 메일을 성공적으로 발송하였습니다.",
- "error-invitation-code-not-exist": "초대 코드가 존재하지 않습니다.",
- "error-notAuthorized": "이 페이지를 볼 수있는 권한이 없습니다.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "추가",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "목록에",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "확인",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "동작",
+ "activities": "활동 내역",
+ "activity": "활동 상태",
+ "activity-added": "%s를 %s에 추가함",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "%s를 %s에 첨부함",
+ "activity-created": "%s 생성됨",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "%s를 %s에서 제외함",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "%s에 참여",
+ "activity-moved": "%s를 %s에서 %s로 옮김",
+ "activity-on": "%s에",
+ "activity-removed": "%s를 %s에서 삭제함",
+ "activity-sent": "%s를 %s로 보냄",
+ "activity-unjoined": "%s에서 멤버 해제",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "%s에 체크리스트를 추가함",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "추가",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "첨부파일 추가",
+ "add-board": "보드 추가",
+ "add-card": "카드 추가",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "체크리스트 추가",
+ "add-checklist-item": "체크리스트에 항목 추가",
+ "add-cover": "커버 추가",
+ "add-label": "라벨 추가",
+ "add-list": "리스트 추가",
+ "add-members": "멤버 추가",
+ "added": "추가됨",
+ "addMemberPopup-title": "멤버",
+ "admin": "관리자",
+ "admin-desc": "카드를 보거나 수정하고, 멤버를 삭제하고, 보드에 대한 설정을 수정할 수 있습니다.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "시스템에 공지사항을 표시합니다",
+ "admin-announcement-title": "관리자 공지사항 메시지",
+ "all-boards": "전체 보드",
+ "and-n-other-card": "__count__ 개의 다른 카드",
+ "and-n-other-card_plural": "__count__ 개의 다른 카드들",
+ "apply": "적용",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "보관",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "보드 복구",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "보관",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "멤버 지정",
+ "attached": "첨부됨",
+ "attachment": "첨부 파일",
+ "attachment-delete-pop": "영구 첨부파일을 삭제합니다. 되돌릴 수 없습니다.",
+ "attachmentDeletePopup-title": "첨부 파일을 삭제합니까?",
+ "attachments": "첨부 파일",
+ "auto-watch": "생성한 보드를 자동으로 감시합니다.",
+ "avatar-too-big": "아바타 파일이 너무 큽니다. (최대 70KB)",
+ "back": "뒤로",
+ "board-change-color": "보드 색 변경",
+ "board-nb-stars": "%s개의 별",
+ "board-not-found": "보드를 찾을 수 없습니다",
+ "board-private-info": "이 보드는 <strong>비공개</strong>입니다.",
+ "board-public-info": "이 보드는 <strong>공개</strong>로 설정됩니다",
+ "boardChangeColorPopup-title": "보드 배경 변경",
+ "boardChangeTitlePopup-title": "보드 이름 바꾸기",
+ "boardChangeVisibilityPopup-title": "표시 여부 변경",
+ "boardChangeWatchPopup-title": "감시상태 변경",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "보드",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "목록들",
+ "bucket-example": "예: “프로젝트 이름“ 입력",
+ "cancel": "취소",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "이 카드에 %s 코멘트가 있습니다.",
+ "card-delete-notice": "영구 삭제입니다. 이 카드와 관련된 모든 작업들을 잃게됩니다.",
+ "card-delete-pop": "모든 작업이 활동 내역에서 제거되며 카드를 다시 열 수 없습니다. 복구가 안되니 주의하시기 바랍니다.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "종료일",
+ "card-due-on": "종료일",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "첨부 파일 수정",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "라벨 수정",
+ "card-edit-members": "멤버 수정",
+ "card-labels-title": "카드의 라벨 변경.",
+ "card-members-title": "카드에서 보드의 멤버를 추가하거나 삭제합니다.",
+ "card-start": "시작일",
+ "card-start-on": "시작일",
+ "cardAttachmentsPopup-title": "첨부 파일",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "카드를 삭제합니까?",
+ "cardDetailsActionsPopup-title": "카드 액션",
+ "cardLabelsPopup-title": "라벨",
+ "cardMembersPopup-title": "멤버",
+ "cardMorePopup-title": "더보기",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "카드",
+ "cards-count": "카드",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "변경",
+ "change-avatar": "아바타 변경",
+ "change-password": "암호 변경",
+ "change-permissions": "권한 변경",
+ "change-settings": "설정 변경",
+ "changeAvatarPopup-title": "아바타 변경",
+ "changeLanguagePopup-title": "언어 변경",
+ "changePasswordPopup-title": "암호 변경",
+ "changePermissionsPopup-title": "권한 변경",
+ "changeSettingsPopup-title": "설정 변경",
+ "subtasks": "Subtasks",
+ "checklists": "체크리스트",
+ "click-to-star": "보드에 별 추가.",
+ "click-to-unstar": "보드에 별 삭제.",
+ "clipboard": "클립보드 또는 드래그 앤 드롭",
+ "close": "닫기",
+ "close-board": "보드 닫기",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "블랙",
+ "color-blue": "블루",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "그린",
+ "color-indigo": "indigo",
+ "color-lime": "라임",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "오렌지",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "핑크",
+ "color-plum": "plum",
+ "color-purple": "퍼플",
+ "color-red": "레드",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "스카이",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "옐로우",
+ "unset-color": "Unset",
+ "comment": "댓글",
+ "comment-placeholder": "댓글 입력",
+ "comment-only": "댓글만 입력 가능",
+ "comment-only-desc": "카드에 댓글만 달수 있습니다.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "내 컴퓨터",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "클립보드에 카드의 링크가 복사되었습니다.",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "검색",
+ "copyCardPopup-title": "카드 복사",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "생성",
+ "createBoardPopup-title": "보드 생성",
+ "chooseBoardSourcePopup-title": "보드 가져오기",
+ "createLabelPopup-title": "라벨 생성",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "경향",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "날짜",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "날짜",
+ "decline": "쇠퇴",
+ "default-avatar": "기본 아바타",
+ "delete": "삭제",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "라벨을 삭제합니까?",
+ "description": "설명",
+ "disambiguateMultiLabelPopup-title": "라벨 액션의 모호성 제거",
+ "disambiguateMultiMemberPopup-title": "멤버 액션의 모호성 제거",
+ "discard": "포기",
+ "done": "완료",
+ "download": "다운로드",
+ "edit": "수정",
+ "edit-avatar": "아바타 변경",
+ "edit-profile": "프로필 변경",
+ "edit-wip-limit": "WIP 제한 변경",
+ "soft-wip-limit": "원만한 WIP 제한",
+ "editCardStartDatePopup-title": "시작일 변경",
+ "editCardDueDatePopup-title": "종료일 변경",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "라벨 변경",
+ "editNotificationPopup-title": "알림 수정",
+ "editProfilePopup-title": "프로필 변경",
+ "email": "이메일",
+ "email-enrollAccount-subject": "__siteName__에 계정 생성이 완료되었습니다.",
+ "email-enrollAccount-text": "안녕하세요. __user__님,\n\n시작하려면 아래링크를 클릭해 주세요.\n\n__url__\n\n감사합니다.",
+ "email-fail": "이메일 전송 실패",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "잘못된 이메일 주소",
+ "email-invite": "이메일로 초대",
+ "email-invite-subject": "__inviter__님이 당신을 초대하였습니다.",
+ "email-invite-text": "__user__님,\n\n__inviter__님이 협업을 위해 \"__board__\"보드에 가입하도록 초대하셨습니다.\n\n아래 링크를 클릭해주십시오.\n\n__url__\n\n감사합니다.",
+ "email-resetPassword-subject": "패스워드 초기화: __siteName__",
+ "email-resetPassword-text": "안녕하세요 __user__님,\n\n비밀번호를 재설정하려면 아래 링크를 클릭하십시오.\n\n__url__\n\n감사합니다.",
+ "email-sent": "이메일 전송",
+ "email-verifyEmail-subject": "이메일 인증: __siteName__",
+ "email-verifyEmail-text": "안녕하세요. __user__님,\n\n당신의 계정과 이메일을 활성하려면 아래 링크를 클릭하십시오.\n\n__url__\n\n감사합니다.",
+ "enable-wip-limit": "WIP 제한 활성화",
+ "error-board-doesNotExist": "보드가 없습니다.",
+ "error-board-notAdmin": "이 작업은 보드의 관리자만 실행할 수 있습니다.",
+ "error-board-notAMember": "이 작업은 보드의 멤버만 실행할 수 있습니다.",
+ "error-json-malformed": "텍스트가 JSON 형식에 유효하지 않습니다.",
+ "error-json-schema": "JSON 데이터에 정보가 올바른 형식으로 포함되어 있지 않습니다.",
+ "error-list-doesNotExist": "목록이 없습니다.",
+ "error-user-doesNotExist": "멤버의 정보가 없습니다.",
+ "error-user-notAllowSelf": "자기 자신을 초대할 수 없습니다.",
+ "error-user-notCreated": "유저가 생성되지 않았습니다.",
+ "error-username-taken": "중복된 아이디 입니다.",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "보드 내보내기",
+ "filter": "필터",
+ "filter-cards": "카드 필터",
+ "filter-clear": "필터 초기화",
+ "filter-no-label": "라벨 없음",
+ "filter-no-member": "멤버 없음",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "필터 사용",
+ "filter-on-desc": "보드에서 카드를 필터링합니다. 여기를 클릭하여 필터를 수정합니다.",
+ "filter-to-selection": "선택 항목으로 필터링",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "실명",
+ "header-logo-title": "보드 페이지로 돌아가기.",
+ "hide-system-messages": "시스템 메시지 숨기기",
+ "headerBarCreateBoardPopup-title": "보드 생성",
+ "home": "홈",
+ "import": "가져오기",
+ "link": "Link",
+ "import-board": "보드 가져오기",
+ "import-board-c": "보드 가져오기",
+ "import-board-title-trello": "Trello에서 보드 가져오기",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "Trello 게시판에서 'Menu' -> 'More' -> 'Print and Export', 'Export JSON' 선택하여 텍스트 결과값 복사",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "유효한 JSON 데이터를 여기에 붙여 넣으십시오.",
+ "import-map-members": "보드 멤버들",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "멤버 매핑 미리보기",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "이니셜",
+ "invalid-date": "적절하지 않은 날짜",
+ "invalid-time": "적절하지 않은 시각",
+ "invalid-user": "적절하지 않은 사용자",
+ "joined": "참가함",
+ "just-invited": "보드에 방금 초대되었습니다.",
+ "keyboard-shortcuts": "키보드 단축키",
+ "label-create": "라벨 생성",
+ "label-default": "%s 라벨 (기본)",
+ "label-delete-pop": "되돌릴 수 없습니다. 모든 카드에서 라벨을 제거하고, 이력을 제거합니다.",
+ "labels": "라벨",
+ "language": "언어",
+ "last-admin-desc": "적어도 하나의 관리자가 필요하기에 이 역할을 변경할 수 없습니다.",
+ "leave-board": "보드 멤버에서 나가기",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "카드에대한 링크",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "목록에 있는 모든 카드를 이동",
+ "list-select-cards": "목록에 있는 모든 카드를 선택",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "동작 목록",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Trello 카드 가져 오기",
+ "listMorePopup-title": "더보기",
+ "link-list": "이 리스트에 링크",
+ "list-delete-pop": "모든 작업이 활동내역에서 제거되며 리스트를 복구 할 수 없습니다. 실행 취소는 불가능 합니다.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "목록들",
+ "swimlanes": "Swimlanes",
+ "log-out": "로그아웃",
+ "log-in": "로그인",
+ "loginPopup-title": "로그인",
+ "memberMenuPopup-title": "멤버 설정",
+ "members": "멤버",
+ "menu": "메뉴",
+ "move-selection": "선택 항목 이동",
+ "moveCardPopup-title": "카드 이동",
+ "moveCardToBottom-title": "최하단으로 이동",
+ "moveCardToTop-title": "최상단으로 이동",
+ "moveSelectionPopup-title": "선택 항목 이동",
+ "multi-selection": "다중 선택",
+ "multi-selection-on": "다중 선택 사용",
+ "muted": "알림 해제",
+ "muted-info": "보드의 변경된 사항들의 알림을 받지 않습니다.",
+ "my-boards": "내 보드",
+ "name": "이름",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "결과 값 없음",
+ "normal": "표준",
+ "normal-desc": "카드를 보거나 수정할 수 있습니다. 설정값은 변경할 수 없습니다.",
+ "not-accepted-yet": "초대장이 수락되지 않았습니다.",
+ "notify-participate": "보드 생성자 또는 멤버로 참여하는 모든 카드에 대한 변경사항 알림 받음",
+ "notify-watch": "감시중인 보드, 목록 또는 카드에 대한 변경사항 알림 받음",
+ "optional": "옵션",
+ "or": "또는",
+ "page-maybe-private": "이 페이지를 비공개일 수 있습니다. 이것을 보고 싶으면 <a href='%s'>로그인</a>을 하십시오.",
+ "page-not-found": "페이지를 찾지 못 했습니다",
+ "password": "암호",
+ "paste-or-dragdrop": "이미지 파일을 붙여 넣거나 드래그 앤 드롭 (이미지 전용)",
+ "participating": "참여",
+ "preview": "미리보기",
+ "previewAttachedImagePopup-title": "미리보기",
+ "previewClipboardImagePopup-title": "미리보기",
+ "private": "비공개",
+ "private-desc": "비공개된 보드입니다. 오직 보드에 추가된 사람들만 보고 수정할 수 있습니다",
+ "profile": "프로파일",
+ "public": "공개",
+ "public-desc": "공개된 보드입니다. 링크를 가진 모든 사람과 구글과 같은 검색 엔진에서 찾아서 볼수 있습니다. 보드에 추가된 사람들만 수정이 가능합니다.",
+ "quick-access-description": "여기에 바로 가기를 추가하려면 보드에 별 표시를 체크하세요.",
+ "remove-cover": "커버 제거",
+ "remove-from-board": "보드에서 제거",
+ "remove-label": "라벨 제거",
+ "listDeletePopup-title": "리스트를 삭제합니까?",
+ "remove-member": "멤버 제거",
+ "remove-member-from-card": "카드에서 제거",
+ "remove-member-pop": "__boardTitle__에서 __name__(__username__) 을 제거합니까? 이 보드의 모든 카드에서 제거됩니다. 해당 내용을 __name__(__username__) 은(는) 알림으로 받게됩니다.",
+ "removeMemberPopup-title": "멤버를 제거합니까?",
+ "rename": "새이름",
+ "rename-board": "보드 이름 바꾸기",
+ "restore": "복구",
+ "save": "저장",
+ "search": "검색",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "색 선택",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "현재 카드에 자신을 지정하세요.",
+ "shortcut-autocomplete-emoji": "이모티콘 자동완성",
+ "shortcut-autocomplete-members": "멤버 자동완성",
+ "shortcut-clear-filters": "모든 필터 초기화",
+ "shortcut-close-dialog": "대화 상자 닫기",
+ "shortcut-filter-my-cards": "내 카드 필터링",
+ "shortcut-show-shortcuts": "바로가기 목록을 가져오십시오.",
+ "shortcut-toggle-filterbar": "토글 필터 사이드바",
+ "shortcut-toggle-sidebar": "보드 사이드바 토글",
+ "show-cards-minimum-count": "목록에 카드 수량 표시(입력된 수량 넘을 경우 표시)",
+ "sidebar-open": "사이드바 열기",
+ "sidebar-close": "사이드바 닫기",
+ "signupPopup-title": "계정 생성",
+ "star-board-title": "보드에 별 표시를 클릭합니다. 보드 목록에서 최상위로 둘 수 있습니다.",
+ "starred-boards": "별표된 보드",
+ "starred-boards-description": "별 표시된 보드들은 보드 목록의 최상단에서 보입니다.",
+ "subscribe": "구독",
+ "team": "팀",
+ "this-board": "보드",
+ "this-card": "카드",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "시간",
+ "title": "제목",
+ "tracking": "추적",
+ "tracking-info": "보드 생성자 또는 멤버로 참여하는 모든 카드에 대한 변경사항 알림 받음",
+ "type": "Type",
+ "unassign-member": "멤버 할당 해제",
+ "unsaved-description": "저장되지 않은 설명이 있습니다.",
+ "unwatch": "감시 해제",
+ "upload": "업로드",
+ "upload-avatar": "아바타 업로드",
+ "uploaded-avatar": "업로드한 아바타",
+ "username": "아이디",
+ "view-it": "보기",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "감시",
+ "watching": "감시 중",
+ "watching-info": "\"이 보드의 변경사항을 알림으로 받습니다.",
+ "welcome-board": "보드예제",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "신규",
+ "welcome-list2": "진행",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "무엇을 하고 싶으신가요?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "관리자 패널",
+ "settings": "설정",
+ "people": "사람",
+ "registration": "회원가입",
+ "disable-self-registration": "일반 유저의 회원 가입 막기",
+ "invite": "초대",
+ "invite-people": "사람 초대",
+ "to-boards": "보드로 부터",
+ "email-addresses": "이메일 주소",
+ "smtp-host-description": "이메일을 처리하는 SMTP 서버의 주소입니다.",
+ "smtp-port-description": "SMTP 서버가 보내는 전자 메일에 사용하는 포트입니다.",
+ "smtp-tls-description": "SMTP 서버에 TLS 지원 사용",
+ "smtp-host": "SMTP 호스트",
+ "smtp-port": "SMTP 포트",
+ "smtp-username": "사용자 이름",
+ "smtp-password": "암호",
+ "smtp-tls": "TLS 지원",
+ "send-from": "보낸 사람",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "초대 코드",
+ "email-invite-register-subject": "\"__inviter__ 님이 당신에게 초대장을 보냈습니다.",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "테스트 메일을 성공적으로 발송하였습니다.",
+ "error-invitation-code-not-exist": "초대 코드가 존재하지 않습니다.",
+ "error-notAuthorized": "이 페이지를 볼 수있는 권한이 없습니다.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "추가",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "목록에",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/lv.i18n.json b/i18n/lv.i18n.json
index fe243885..8a4d0665 100644
--- a/i18n/lv.i18n.json
+++ b/i18n/lv.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Piekrist",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Darbības",
- "activities": "Aktivitātes",
- "activity": "Aktivitāte",
- "activity-added": "pievienoja %s pie %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "pievienoja %s pie %s",
- "activity-created": "izveidoja%s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "izslēdza%s no%s",
- "activity-imported": "importēja %s iekšā%s no%s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Piekrist",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Darbības",
+ "activities": "Aktivitātes",
+ "activity": "Aktivitāte",
+ "activity-added": "pievienoja %s pie %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "pievienoja %s pie %s",
+ "activity-created": "izveidoja%s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "izslēdza%s no%s",
+ "activity-imported": "importēja %s iekšā%s no%s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/mk.i18n.json b/i18n/mk.i18n.json
index 1518f06e..6bd89ee1 100644
--- a/i18n/mk.i18n.json
+++ b/i18n/mk.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Прифати",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Акции",
- "activities": "Активности",
- "activity": "Активност",
- "activity-added": "добави %s към %s",
- "activity-archived": "%s е преместена во Архива",
- "activity-attached": "прикачи %s към %s",
- "activity-created": "създаде %s",
- "activity-customfield-created": "създаде собствено поле %s",
- "activity-excluded": "изключи %s от %s",
- "activity-imported": "импортира %s в/във %s от %s",
- "activity-imported-board": "импортира %s от %s",
- "activity-joined": "се присъедини към %s",
- "activity-moved": "премести %s от %s в/във %s",
- "activity-on": "на %s",
- "activity-removed": "премахна %s от %s",
- "activity-sent": "изпрати %s до %s",
- "activity-unjoined": "вече не е част от %s",
- "activity-subtask-added": "добави задача към %s",
- "activity-checked-item": "отбеляза%s в списък със задачи %s на %s",
- "activity-unchecked-item": "размаркира %s от списък със задачи %s на %s",
- "activity-checklist-added": "добави списък със задачи към %s",
- "activity-checklist-removed": "премахна списък със задачи от %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "\"отзавърши\" чеклистта %s в %s",
- "activity-checklist-item-added": "добави точка към '%s' в/във %s",
- "activity-checklist-item-removed": "премахна точка от '%s' в %s",
- "add": "Добави",
- "activity-checked-item-card": "отбеляза %s в чеклист %s",
- "activity-unchecked-item-card": "размаркира %s в чеклист %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "\"отзавърши\" чеклистта %s",
- "add-attachment": "Додај прилог",
- "add-board": "Додади Табла",
- "add-card": "Додади Картичка",
- "add-swimlane": "Додади Коридор",
- "add-subtask": "Додади подзадача",
- "add-checklist": "Додади список на задачи",
- "add-checklist-item": "Додади точка во списокот со задачи",
- "add-cover": "Додади корица",
- "add-label": "Додади етикета",
- "add-list": "Додади листа",
- "add-members": "Додави членови",
- "added": "Додадено",
- "addMemberPopup-title": "Членови",
- "admin": "Администратор",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Съобщение",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Сите табли",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Приложи",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Премести во Архива",
- "archive-all": "Премести всички во Архива",
- "archive-board": "Премести Таблото во Архива",
- "archive-card": "Премести Картата во Архива",
- "archive-list": "Премести Списъка во Архива",
- "archive-swimlane": "Премести Коридора во Архива",
- "archive-selection": "Премести избраното во Архива",
- "archiveBoardPopup-title": "Да преместя ли Таблото во Архива?",
- "archived-items": "Архива",
- "archived-boards": "Табла во Архива",
- "restore-board": "Възстанови Таблото",
- "no-archived-boards": "Няма Табла во Архива.",
- "archives": "Архива",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Възложи на член от екипа",
- "attached": "прикачен",
- "attachment": "Прикаченн датотека",
- "attachment-delete-pop": "Изтриването на прикачен датотека е завинаги. Няма как да бъде възстановен.",
- "attachmentDeletePopup-title": "Желаете ли да изтриете прикачения датотека?",
- "attachments": "Прикачени датотеки",
- "auto-watch": "Автоматично наблюдаване на таблата, когато са създадени",
- "avatar-too-big": "Аватарът е прекалено голям (максимум 70KB)",
- "back": "Назад",
- "board-change-color": "Промени боја",
- "board-nb-stars": "%s звезди",
- "board-not-found": "Таблото не е најдено",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Промени името на Таблото",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Промени наблюдаването",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Табли",
- "board-view": "Board View",
- "board-view-cal": "Календар",
- "board-view-swimlanes": "Коридори",
- "board-view-lists": "Листи",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Откажи",
- "card-archived": "Тази карта е преместена во Архива.",
- "board-archived": "Това табло е преместено во Архива.",
- "card-comments-title": "Тази карта има %s коментар.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "Можете да преместите картата во Архива, за да я премахнете от Таблото и така да запазите активността в него.",
- "card-due": "Готова за",
- "card-due-on": "Готова за",
- "card-spent": "Изработено време",
- "card-edit-attachments": "Промени прикачените датотеки",
- "card-edit-custom-fields": "Промени собствените полета",
- "card-edit-labels": "Промени етикетите",
- "card-edit-members": "Промени членовете",
- "card-labels-title": "Промени етикетите за картата.",
- "card-members-title": "Добави или премахни членове на Таблото от тази карта.",
- "card-start": "Започнува",
- "card-start-on": "Започнува на",
- "cardAttachmentsPopup-title": "Прикачи от",
- "cardCustomField-datePopup-title": "Промени датата",
- "cardCustomFieldsPopup-title": "Промени собствените полета",
- "cardDeletePopup-title": "Желаете да изтриете картата?",
- "cardDetailsActionsPopup-title": "Опции",
- "cardLabelsPopup-title": "Етикети",
- "cardMembersPopup-title": "Членови",
- "cardMorePopup-title": "Повеќе",
- "cardTemplatePopup-title": "Create template",
- "cards": "Картички",
- "cards-count": "Картички",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Карта",
- "cardType-linkedCard": "Поврзана карта",
- "cardType-linkedBoard": "Свързано табло",
- "change": "Промени",
- "change-avatar": "Промени аватара",
- "change-password": "Промени лозинка",
- "change-permissions": "Промени права",
- "change-settings": "Промени параметри",
- "changeAvatarPopup-title": "Промени аватар",
- "changeLanguagePopup-title": "Промени јазик",
- "changePasswordPopup-title": "Промени лозинка",
- "changePermissionsPopup-title": "Промени права",
- "changeSettingsPopup-title": "Промени параметри",
- "subtasks": "Подзадачи",
- "checklists": "Списъци със задачи",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Натиснете, за да премахнете това табло от любими.",
- "clipboard": "Клипборда или с драг & дроп",
- "close": "Затвори",
- "close-board": "Затвори Табла",
- "close-board-pop": "Ще можете да възстановите Таблото като натиснете на бутона \"Архива\" в началото на хедъра.",
- "color-black": "црно",
- "color-blue": "сино",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "златно",
- "color-gray": "сиво",
- "color-green": "зелено",
- "color-indigo": "indigo",
- "color-lime": "лайм",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "оранжево",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "розово",
- "color-plum": "plum",
- "color-purple": "пурпурно",
- "color-red": "червено",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "светло синьо",
- "color-slateblue": "slateblue",
- "color-white": "бяло",
- "color-yellow": "жълто",
- "unset-color": "Unset",
- "comment": "Коментирај",
- "comment-placeholder": "Напиши коментар",
- "comment-only": "Само коментари",
- "comment-only-desc": "Може да коментира само в карти.",
- "no-comments": "Нема коментари",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Компјутер",
- "confirm-subtask-delete-dialog": "Сигурен ли сте, дека сакате да изтриете подзадачата?",
- "confirm-checklist-delete-dialog": "Сигурни ли сте, дека сакате да изтриете този чеклист?",
- "copy-card-link-to-clipboard": "Копирай връзката на картата в клипборда",
- "linkCardPopup-title": "Поврзи картичка",
- "searchElementPopup-title": "Барај",
- "copyCardPopup-title": "Копирај картичка",
- "copyChecklistToManyCardsPopup-title": "Копирай чеклисти в други карти",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Креирај",
- "createBoardPopup-title": "Креирај Табло",
- "chooseBoardSourcePopup-title": "Импортирай Табло",
- "createLabelPopup-title": "Креирај Табло",
- "createCustomField": "Креирај Поле",
- "createCustomFieldPopup-title": "Креирај Поле",
- "current": "сегашен",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Чекбокс",
- "custom-field-date": "Дата",
- "custom-field-dropdown": "Падащо меню",
- "custom-field-dropdown-none": "(няма)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Број",
- "custom-field-text": "Текст",
- "custom-fields": "Собствени полета",
- "date": "Дата",
- "decline": "Откажи",
- "default-avatar": "Основен аватар",
- "delete": "Избриши",
- "deleteCustomFieldPopup-title": "Изтриване на Собственото поле?",
- "deleteLabelPopup-title": "Желаете да изтриете етикета?",
- "description": "Описание",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Отказ",
- "done": "Готово",
- "download": "Сваляне",
- "edit": "Промени",
- "edit-avatar": "Промени аватара",
- "edit-profile": "Промяна на профила",
- "edit-wip-limit": "Промени WIP лимита",
- "soft-wip-limit": "\"Мек\" WIP лимит",
- "editCardStartDatePopup-title": "Промени началната дата",
- "editCardDueDatePopup-title": "Промени датата за готовност",
- "editCustomFieldPopup-title": "Промени Полето",
- "editCardSpentTimePopup-title": "Промени изработеното време",
- "editLabelPopup-title": "Промяна на Етикета",
- "editNotificationPopup-title": "Промени известията",
- "editProfilePopup-title": "Промяна на профила",
- "email": "Имейл",
- "email-enrollAccount-subject": "Ваш профил беше създаден на __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Неуспешно изпращане на имейла",
- "email-fail-text": "Възникна грешка при изпращането на имейла",
- "email-invalid": "Невалиден е-маил",
- "email-invite": "Покани чрез е-маил",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Имейлът е изпратен",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Включи WIP лимита",
- "error-board-doesNotExist": "Това табло не съществува",
- "error-board-notAdmin": "За да направите това трябва да сте администратор на това табло",
- "error-board-notAMember": "За да направите това трябва да сте член на това табло",
- "error-json-malformed": "Текстът Ви не е валиден JSON",
- "error-json-schema": "JSON информацията Ви не съдържа информация във валиден формат",
- "error-list-doesNotExist": "Този списък не съществува",
- "error-user-doesNotExist": "Този потребител не съществува",
- "error-user-notAllowSelf": "Не можете да поканите себе си",
- "error-user-notCreated": "Този потребител не е създаден",
- "error-username-taken": "Това потребителско име е вече заето",
- "error-email-taken": "Имейлът е вече зает",
- "export-board": "Експортиране на Табло",
- "filter": "Филтер",
- "filter-cards": "Филтрирай картите",
- "filter-clear": "Премахване на филтрите",
- "filter-no-label": "без етикет",
- "filter-no-member": "без член",
- "filter-no-custom-fields": "Няма Собствени полета",
- "filter-on": "Има приложени филтри",
- "filter-on-desc": "В момента филтрирате картите в това табло. Моля, натиснете тук, за да промените филтъра.",
- "filter-to-selection": "Филтрирай избраните",
- "advanced-filter-label": "Напреден филтер",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Име",
- "header-logo-title": "Назад към страницата с Вашите табла.",
- "hide-system-messages": "Скриване на системните съобщения",
- "headerBarCreateBoardPopup-title": "Креирај Табло",
- "home": "Почетна",
- "import": "Импорт",
- "link": "Врска",
- "import-board": "Импортирай Табло",
- "import-board-c": "Импортирай Табло",
- "import-board-title-trello": "Импорт на табло от Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Импортирането ще изтрие всичката налична информация в таблото и ще я замени с нова.",
- "from-trello": "От Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Копирайте валидната Ви JSON информация тук",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Версия",
- "initials": "Инициали",
- "invalid-date": "Невалидна дата",
- "invalid-time": "Невалиден час",
- "invalid-user": "Невалиден потребител",
- "joined": "присъедини",
- "just-invited": "Бяхте поканени в това табло",
- "keyboard-shortcuts": "Преки пътища с клавиатурата",
- "label-create": "Креирај етикет",
- "label-default": "%s етикет (по подразбиране)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Етикети",
- "language": "Език",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Връзка към тази карта",
- "list-archive-cards": "Премести всички карти от този списък во Архива",
- "list-archive-cards-pop": "Това ще премахне всички карти от този Списък от Таблото. За да видите картите во Архива и да ги върнете натиснете на \"Меню\" > \"Архива\".",
- "list-move-cards": "Премести всички карти в този списък",
- "list-select-cards": "Избери всички карти в този списък",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Импорт на карта от Trello",
- "listMorePopup-title": "Още",
- "link-list": "Връзка към този списък",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "Можете да преместите списъка во Архива, за да го премахнете от Таблото и така да запазите активността в него.",
- "lists": "Списъци",
- "swimlanes": "Коридори",
- "log-out": "Изход",
- "log-in": "Вход",
- "loginPopup-title": "Вход",
- "memberMenuPopup-title": "Настройки на профила",
- "members": "Членове",
- "menu": "Меню",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Премести картата",
- "moveCardToBottom-title": "Премести в края",
- "moveCardToTop-title": "Премести в началото",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Множествен избор",
- "multi-selection-on": "Множественият избор е приложен",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "Моите табла",
- "name": "Име",
- "no-archived-cards": "Няма карти во Архива.",
- "no-archived-lists": "Няма списъци во Архива.",
- "no-archived-swimlanes": "Няма коридори во Архива.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Получавате информация за всички карти, в които сте отбелязани или сте създали",
- "notify-watch": "Получавате информация за всички табла, списъци и карти, които наблюдавате",
- "optional": "optional",
- "or": "или",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Парола",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Профил",
- "public": "Јавна",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Желаете да изтриете списъка?",
- "remove-member": "Премахни член",
- "remove-member-from-card": "Премахни от картата",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Промени името на Таблото",
- "restore": "Възстанови",
- "save": "Запази",
- "search": "Търсене",
- "rules": "Правила",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Избери цвят",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Въведи WIP лимит",
- "shortcut-assign-self": "Добави себе си към тази карта",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Изчистване на всички филтри",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Филтрирай моите карти",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Отвори/затвори сайдбара с филтри",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Покажи бройката на картите, ако списъка съдържа повече от",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Любими табла",
- "starred-boards-description": "Любимите табла се показват в началото на списъка Ви.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "това табло",
- "this-card": "картата",
- "spent-time-hours": "Изработено време (часа)",
- "overtime-hours": "Оувъртайм (часа)",
- "overtime": "Оувъртайм",
- "has-overtime-cards": "Има карти с оувъртайм",
- "has-spenttime-cards": "Има карти с изработено време",
- "time": "Време",
- "title": "Title",
- "tracking": "Следене",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Спри наблюдаването",
- "upload": "Upload",
- "upload-avatar": "Качване на аватар",
- "uploaded-avatar": "Качихте аватар",
- "username": "Потребителско име",
- "view-it": "View it",
- "warn-list-archived": "внимание: тази карта е в списък во Архива",
- "watch": "Наблюдавай",
- "watching": "Наблюдава",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Невалиден WIP лимит",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Моля, преместете някои от задачите от този списък или въведете по-висок WIP лимит.",
- "admin-panel": "Администраторски панел",
- "settings": "Настройки",
- "people": "Хора",
- "registration": "Регистрация",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Покани",
- "invite-people": "Покани хора",
- "to-boards": "в табло/а",
- "email-addresses": "Имейл адреси",
- "smtp-host-description": "Адресът на SMTP сървъра, който обслужва Вашите имейли.",
- "smtp-port-description": "Портът, който Вашият SMTP сървър използва за изходящи имейли.",
- "smtp-tls-description": "Разреши TLS поддръжка за SMTP сървъра",
- "smtp-host": "SMTP хост",
- "smtp-port": "SMTP порт",
- "smtp-username": "Потребителско име",
- "smtp-password": "Парола",
- "smtp-tls": "TLS поддръжка",
- "send-from": "От",
- "send-smtp-test": "Изпрати тестов е-маил на себе си",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "Успешно изпратихте е-маил",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Версия на Node",
- "OS_Arch": "Архитектура на ОС",
- "OS_Cpus": "Брой CPU ядра",
- "OS_Freemem": "Свободна памет",
- "OS_Loadavg": "ОС средно натоварване",
- "OS_Platform": "ОС платформа",
- "OS_Release": "ОС Версия",
- "OS_Totalmem": "ОС Общо памет",
- "OS_Type": "Тип ОС",
- "OS_Uptime": "OS Ъптайм",
- "days": "дни",
- "hours": "часа",
- "minutes": "минути",
- "seconds": "секунди",
- "show-field-on-card": "Покажи това поле в картата",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Да",
- "no": "Не",
- "accounts": "Профили",
- "accounts-allowEmailChange": "Разреши промяна на имейла",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Създаден на",
- "verified": "Потвърден",
- "active": "Активен",
- "card-received": "Получена",
- "card-received-on": "Получена на",
- "card-end": "Завършена",
- "card-end-on": "Завършена на",
- "editCardReceivedDatePopup-title": "Промени датата на получаване",
- "editCardEndDatePopup-title": "Промени датата на завършване",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Разпределена от",
- "requested-by": "Поискан от",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Изтриване на Таблото?",
- "delete-board": "Изтрий таблото",
- "default-subtasks-board": "Подзадачи за табло __board__",
- "default": "по подразбиране",
- "queue": "Опашка",
- "subtask-settings": "Настройки на Подзадачите",
- "boardSubtaskSettingsPopup-title": "Настройки за Подзадачите за това Табло",
- "show-subtasks-field": "Картата може да има подзадачи",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Промени източника на картата",
- "parent-card": "Карта-източник",
- "source-board": "Source board",
- "no-parent": "Не показвай източника",
- "activity-added-label": "добави етикет '%s' към %s",
- "activity-removed-label": "премахна етикет '%s' от %s",
- "activity-delete-attach": "изтри прикачен датотека от %s",
- "activity-added-label-card": "добави етикет '%s'",
- "activity-removed-label-card": "премахна етикет '%s'",
- "activity-delete-attach-card": "изтри прикачения датотека",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Правило",
- "r-add-trigger": "Добави спусък",
- "r-add-action": "Добави действие",
- "r-board-rules": "Правила за таблото",
- "r-add-rule": "Добави правилото",
- "r-view-rule": "Виж правилото",
- "r-delete-rule": "Изтрий правилото",
- "r-new-rule-name": "Заглавие за новото правило",
- "r-no-rules": "Няма правила",
- "r-when-a-card": "Когато карта",
- "r-is": "е",
- "r-is-moved": "преместена",
- "r-added-to": "добавена в",
- "r-removed-from": "премахната от",
- "r-the-board": "таблото",
- "r-list": "списък",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Преместено во Архива",
- "r-unarchived": "Възстановено от Архива",
- "r-a-card": "карта",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "име",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Премести картата в",
- "r-top-of": "началото на",
- "r-bottom-of": "края на",
- "r-its-list": "списъка й",
- "r-archive": "Премести во Архива",
- "r-unarchive": "Възстанови от Архива",
- "r-card": "карта",
- "r-add": "Добави",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Детайли за правилото",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Премести картата во Архива",
- "r-d-unarchive": "Възстанови картата от Архива",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Добави чеклист",
- "r-d-remove-checklist": "Премахни чеклист",
- "r-by": "by",
- "r-add-checklist": "Добави чеклист",
- "r-with-items": "с точки",
- "r-items-list": "точка1,точка2,точка3",
- "r-add-swimlane": "Добави коридор",
- "r-swimlane-name": "име на коридора",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Прифати",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Акции",
+ "activities": "Активности",
+ "activity": "Активност",
+ "activity-added": "добави %s към %s",
+ "activity-archived": "%s е преместена во Архива",
+ "activity-attached": "прикачи %s към %s",
+ "activity-created": "създаде %s",
+ "activity-customfield-created": "създаде собствено поле %s",
+ "activity-excluded": "изключи %s от %s",
+ "activity-imported": "импортира %s в/във %s от %s",
+ "activity-imported-board": "импортира %s от %s",
+ "activity-joined": "се присъедини към %s",
+ "activity-moved": "премести %s от %s в/във %s",
+ "activity-on": "на %s",
+ "activity-removed": "премахна %s от %s",
+ "activity-sent": "изпрати %s до %s",
+ "activity-unjoined": "вече не е част от %s",
+ "activity-subtask-added": "добави задача към %s",
+ "activity-checked-item": "отбеляза%s в списък със задачи %s на %s",
+ "activity-unchecked-item": "размаркира %s от списък със задачи %s на %s",
+ "activity-checklist-added": "добави списък със задачи към %s",
+ "activity-checklist-removed": "премахна списък със задачи от %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "\"отзавърши\" чеклистта %s в %s",
+ "activity-checklist-item-added": "добави точка към '%s' в/във %s",
+ "activity-checklist-item-removed": "премахна точка от '%s' в %s",
+ "add": "Добави",
+ "activity-checked-item-card": "отбеляза %s в чеклист %s",
+ "activity-unchecked-item-card": "размаркира %s в чеклист %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "\"отзавърши\" чеклистта %s",
+ "add-attachment": "Додај прилог",
+ "add-board": "Додади Табла",
+ "add-card": "Додади Картичка",
+ "add-swimlane": "Додади Коридор",
+ "add-subtask": "Додади подзадача",
+ "add-checklist": "Додади список на задачи",
+ "add-checklist-item": "Додади точка во списокот со задачи",
+ "add-cover": "Додади корица",
+ "add-label": "Додади етикета",
+ "add-list": "Додади листа",
+ "add-members": "Додави членови",
+ "added": "Додадено",
+ "addMemberPopup-title": "Членови",
+ "admin": "Администратор",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Съобщение",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Сите табли",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Приложи",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Премести во Архива",
+ "archive-all": "Премести всички во Архива",
+ "archive-board": "Премести Таблото во Архива",
+ "archive-card": "Премести Картата во Архива",
+ "archive-list": "Премести Списъка во Архива",
+ "archive-swimlane": "Премести Коридора во Архива",
+ "archive-selection": "Премести избраното во Архива",
+ "archiveBoardPopup-title": "Да преместя ли Таблото во Архива?",
+ "archived-items": "Архива",
+ "archived-boards": "Табла во Архива",
+ "restore-board": "Възстанови Таблото",
+ "no-archived-boards": "Няма Табла во Архива.",
+ "archives": "Архива",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Възложи на член от екипа",
+ "attached": "прикачен",
+ "attachment": "Прикаченн датотека",
+ "attachment-delete-pop": "Изтриването на прикачен датотека е завинаги. Няма как да бъде възстановен.",
+ "attachmentDeletePopup-title": "Желаете ли да изтриете прикачения датотека?",
+ "attachments": "Прикачени датотеки",
+ "auto-watch": "Автоматично наблюдаване на таблата, когато са създадени",
+ "avatar-too-big": "Аватарът е прекалено голям (максимум 70KB)",
+ "back": "Назад",
+ "board-change-color": "Промени боја",
+ "board-nb-stars": "%s звезди",
+ "board-not-found": "Таблото не е најдено",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Промени името на Таблото",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Промени наблюдаването",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Табли",
+ "board-view": "Board View",
+ "board-view-cal": "Календар",
+ "board-view-swimlanes": "Коридори",
+ "board-view-lists": "Листи",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Откажи",
+ "card-archived": "Тази карта е преместена во Архива.",
+ "board-archived": "Това табло е преместено во Архива.",
+ "card-comments-title": "Тази карта има %s коментар.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "Можете да преместите картата во Архива, за да я премахнете от Таблото и така да запазите активността в него.",
+ "card-due": "Готова за",
+ "card-due-on": "Готова за",
+ "card-spent": "Изработено време",
+ "card-edit-attachments": "Промени прикачените датотеки",
+ "card-edit-custom-fields": "Промени собствените полета",
+ "card-edit-labels": "Промени етикетите",
+ "card-edit-members": "Промени членовете",
+ "card-labels-title": "Промени етикетите за картата.",
+ "card-members-title": "Добави или премахни членове на Таблото от тази карта.",
+ "card-start": "Започнува",
+ "card-start-on": "Започнува на",
+ "cardAttachmentsPopup-title": "Прикачи от",
+ "cardCustomField-datePopup-title": "Промени датата",
+ "cardCustomFieldsPopup-title": "Промени собствените полета",
+ "cardDeletePopup-title": "Желаете да изтриете картата?",
+ "cardDetailsActionsPopup-title": "Опции",
+ "cardLabelsPopup-title": "Етикети",
+ "cardMembersPopup-title": "Членови",
+ "cardMorePopup-title": "Повеќе",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Картички",
+ "cards-count": "Картички",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Карта",
+ "cardType-linkedCard": "Поврзана карта",
+ "cardType-linkedBoard": "Свързано табло",
+ "change": "Промени",
+ "change-avatar": "Промени аватара",
+ "change-password": "Промени лозинка",
+ "change-permissions": "Промени права",
+ "change-settings": "Промени параметри",
+ "changeAvatarPopup-title": "Промени аватар",
+ "changeLanguagePopup-title": "Промени јазик",
+ "changePasswordPopup-title": "Промени лозинка",
+ "changePermissionsPopup-title": "Промени права",
+ "changeSettingsPopup-title": "Промени параметри",
+ "subtasks": "Подзадачи",
+ "checklists": "Списъци със задачи",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Натиснете, за да премахнете това табло от любими.",
+ "clipboard": "Клипборда или с драг & дроп",
+ "close": "Затвори",
+ "close-board": "Затвори Табла",
+ "close-board-pop": "Ще можете да възстановите Таблото като натиснете на бутона \"Архива\" в началото на хедъра.",
+ "color-black": "црно",
+ "color-blue": "сино",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "златно",
+ "color-gray": "сиво",
+ "color-green": "зелено",
+ "color-indigo": "indigo",
+ "color-lime": "лайм",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "оранжево",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "розово",
+ "color-plum": "plum",
+ "color-purple": "пурпурно",
+ "color-red": "червено",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "светло синьо",
+ "color-slateblue": "slateblue",
+ "color-white": "бяло",
+ "color-yellow": "жълто",
+ "unset-color": "Unset",
+ "comment": "Коментирај",
+ "comment-placeholder": "Напиши коментар",
+ "comment-only": "Само коментари",
+ "comment-only-desc": "Може да коментира само в карти.",
+ "no-comments": "Нема коментари",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Компјутер",
+ "confirm-subtask-delete-dialog": "Сигурен ли сте, дека сакате да изтриете подзадачата?",
+ "confirm-checklist-delete-dialog": "Сигурни ли сте, дека сакате да изтриете този чеклист?",
+ "copy-card-link-to-clipboard": "Копирай връзката на картата в клипборда",
+ "linkCardPopup-title": "Поврзи картичка",
+ "searchElementPopup-title": "Барај",
+ "copyCardPopup-title": "Копирај картичка",
+ "copyChecklistToManyCardsPopup-title": "Копирай чеклисти в други карти",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Креирај",
+ "createBoardPopup-title": "Креирај Табло",
+ "chooseBoardSourcePopup-title": "Импортирай Табло",
+ "createLabelPopup-title": "Креирај Табло",
+ "createCustomField": "Креирај Поле",
+ "createCustomFieldPopup-title": "Креирај Поле",
+ "current": "сегашен",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Чекбокс",
+ "custom-field-date": "Дата",
+ "custom-field-dropdown": "Падащо меню",
+ "custom-field-dropdown-none": "(няма)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Број",
+ "custom-field-text": "Текст",
+ "custom-fields": "Собствени полета",
+ "date": "Дата",
+ "decline": "Откажи",
+ "default-avatar": "Основен аватар",
+ "delete": "Избриши",
+ "deleteCustomFieldPopup-title": "Изтриване на Собственото поле?",
+ "deleteLabelPopup-title": "Желаете да изтриете етикета?",
+ "description": "Описание",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Отказ",
+ "done": "Готово",
+ "download": "Сваляне",
+ "edit": "Промени",
+ "edit-avatar": "Промени аватара",
+ "edit-profile": "Промяна на профила",
+ "edit-wip-limit": "Промени WIP лимита",
+ "soft-wip-limit": "\"Мек\" WIP лимит",
+ "editCardStartDatePopup-title": "Промени началната дата",
+ "editCardDueDatePopup-title": "Промени датата за готовност",
+ "editCustomFieldPopup-title": "Промени Полето",
+ "editCardSpentTimePopup-title": "Промени изработеното време",
+ "editLabelPopup-title": "Промяна на Етикета",
+ "editNotificationPopup-title": "Промени известията",
+ "editProfilePopup-title": "Промяна на профила",
+ "email": "Имейл",
+ "email-enrollAccount-subject": "Ваш профил беше създаден на __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Неуспешно изпращане на имейла",
+ "email-fail-text": "Възникна грешка при изпращането на имейла",
+ "email-invalid": "Невалиден е-маил",
+ "email-invite": "Покани чрез е-маил",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Имейлът е изпратен",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Включи WIP лимита",
+ "error-board-doesNotExist": "Това табло не съществува",
+ "error-board-notAdmin": "За да направите това трябва да сте администратор на това табло",
+ "error-board-notAMember": "За да направите това трябва да сте член на това табло",
+ "error-json-malformed": "Текстът Ви не е валиден JSON",
+ "error-json-schema": "JSON информацията Ви не съдържа информация във валиден формат",
+ "error-list-doesNotExist": "Този списък не съществува",
+ "error-user-doesNotExist": "Този потребител не съществува",
+ "error-user-notAllowSelf": "Не можете да поканите себе си",
+ "error-user-notCreated": "Този потребител не е създаден",
+ "error-username-taken": "Това потребителско име е вече заето",
+ "error-email-taken": "Имейлът е вече зает",
+ "export-board": "Експортиране на Табло",
+ "filter": "Филтер",
+ "filter-cards": "Филтрирай картите",
+ "filter-clear": "Премахване на филтрите",
+ "filter-no-label": "без етикет",
+ "filter-no-member": "без член",
+ "filter-no-custom-fields": "Няма Собствени полета",
+ "filter-on": "Има приложени филтри",
+ "filter-on-desc": "В момента филтрирате картите в това табло. Моля, натиснете тук, за да промените филтъра.",
+ "filter-to-selection": "Филтрирай избраните",
+ "advanced-filter-label": "Напреден филтер",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Име",
+ "header-logo-title": "Назад към страницата с Вашите табла.",
+ "hide-system-messages": "Скриване на системните съобщения",
+ "headerBarCreateBoardPopup-title": "Креирај Табло",
+ "home": "Почетна",
+ "import": "Импорт",
+ "link": "Врска",
+ "import-board": "Импортирай Табло",
+ "import-board-c": "Импортирай Табло",
+ "import-board-title-trello": "Импорт на табло от Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Импортирането ще изтрие всичката налична информация в таблото и ще я замени с нова.",
+ "from-trello": "От Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Копирайте валидната Ви JSON информация тук",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Версия",
+ "initials": "Инициали",
+ "invalid-date": "Невалидна дата",
+ "invalid-time": "Невалиден час",
+ "invalid-user": "Невалиден потребител",
+ "joined": "присъедини",
+ "just-invited": "Бяхте поканени в това табло",
+ "keyboard-shortcuts": "Преки пътища с клавиатурата",
+ "label-create": "Креирај етикет",
+ "label-default": "%s етикет (по подразбиране)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Етикети",
+ "language": "Език",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Връзка към тази карта",
+ "list-archive-cards": "Премести всички карти от този списък во Архива",
+ "list-archive-cards-pop": "Това ще премахне всички карти от този Списък от Таблото. За да видите картите во Архива и да ги върнете натиснете на \"Меню\" > \"Архива\".",
+ "list-move-cards": "Премести всички карти в този списък",
+ "list-select-cards": "Избери всички карти в този списък",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Импорт на карта от Trello",
+ "listMorePopup-title": "Още",
+ "link-list": "Връзка към този списък",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "Можете да преместите списъка во Архива, за да го премахнете от Таблото и така да запазите активността в него.",
+ "lists": "Списъци",
+ "swimlanes": "Коридори",
+ "log-out": "Изход",
+ "log-in": "Вход",
+ "loginPopup-title": "Вход",
+ "memberMenuPopup-title": "Настройки на профила",
+ "members": "Членове",
+ "menu": "Меню",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Премести картата",
+ "moveCardToBottom-title": "Премести в края",
+ "moveCardToTop-title": "Премести в началото",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Множествен избор",
+ "multi-selection-on": "Множественият избор е приложен",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "Моите табла",
+ "name": "Име",
+ "no-archived-cards": "Няма карти во Архива.",
+ "no-archived-lists": "Няма списъци во Архива.",
+ "no-archived-swimlanes": "Няма коридори во Архива.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Получавате информация за всички карти, в които сте отбелязани или сте създали",
+ "notify-watch": "Получавате информация за всички табла, списъци и карти, които наблюдавате",
+ "optional": "optional",
+ "or": "или",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Парола",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Профил",
+ "public": "Јавна",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Желаете да изтриете списъка?",
+ "remove-member": "Премахни член",
+ "remove-member-from-card": "Премахни от картата",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Промени името на Таблото",
+ "restore": "Възстанови",
+ "save": "Запази",
+ "search": "Търсене",
+ "rules": "Правила",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Избери цвят",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Въведи WIP лимит",
+ "shortcut-assign-self": "Добави себе си към тази карта",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Изчистване на всички филтри",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Филтрирай моите карти",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Отвори/затвори сайдбара с филтри",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Покажи бройката на картите, ако списъка съдържа повече от",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Любими табла",
+ "starred-boards-description": "Любимите табла се показват в началото на списъка Ви.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "това табло",
+ "this-card": "картата",
+ "spent-time-hours": "Изработено време (часа)",
+ "overtime-hours": "Оувъртайм (часа)",
+ "overtime": "Оувъртайм",
+ "has-overtime-cards": "Има карти с оувъртайм",
+ "has-spenttime-cards": "Има карти с изработено време",
+ "time": "Време",
+ "title": "Title",
+ "tracking": "Следене",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Спри наблюдаването",
+ "upload": "Upload",
+ "upload-avatar": "Качване на аватар",
+ "uploaded-avatar": "Качихте аватар",
+ "username": "Потребителско име",
+ "view-it": "View it",
+ "warn-list-archived": "внимание: тази карта е в списък во Архива",
+ "watch": "Наблюдавай",
+ "watching": "Наблюдава",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Невалиден WIP лимит",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Моля, преместете някои от задачите от този списък или въведете по-висок WIP лимит.",
+ "admin-panel": "Администраторски панел",
+ "settings": "Настройки",
+ "people": "Хора",
+ "registration": "Регистрация",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Покани",
+ "invite-people": "Покани хора",
+ "to-boards": "в табло/а",
+ "email-addresses": "Имейл адреси",
+ "smtp-host-description": "Адресът на SMTP сървъра, който обслужва Вашите имейли.",
+ "smtp-port-description": "Портът, който Вашият SMTP сървър използва за изходящи имейли.",
+ "smtp-tls-description": "Разреши TLS поддръжка за SMTP сървъра",
+ "smtp-host": "SMTP хост",
+ "smtp-port": "SMTP порт",
+ "smtp-username": "Потребителско име",
+ "smtp-password": "Парола",
+ "smtp-tls": "TLS поддръжка",
+ "send-from": "От",
+ "send-smtp-test": "Изпрати тестов е-маил на себе си",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "Успешно изпратихте е-маил",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Версия на Node",
+ "OS_Arch": "Архитектура на ОС",
+ "OS_Cpus": "Брой CPU ядра",
+ "OS_Freemem": "Свободна памет",
+ "OS_Loadavg": "ОС средно натоварване",
+ "OS_Platform": "ОС платформа",
+ "OS_Release": "ОС Версия",
+ "OS_Totalmem": "ОС Общо памет",
+ "OS_Type": "Тип ОС",
+ "OS_Uptime": "OS Ъптайм",
+ "days": "дни",
+ "hours": "часа",
+ "minutes": "минути",
+ "seconds": "секунди",
+ "show-field-on-card": "Покажи това поле в картата",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Да",
+ "no": "Не",
+ "accounts": "Профили",
+ "accounts-allowEmailChange": "Разреши промяна на имейла",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Създаден на",
+ "verified": "Потвърден",
+ "active": "Активен",
+ "card-received": "Получена",
+ "card-received-on": "Получена на",
+ "card-end": "Завършена",
+ "card-end-on": "Завършена на",
+ "editCardReceivedDatePopup-title": "Промени датата на получаване",
+ "editCardEndDatePopup-title": "Промени датата на завършване",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Разпределена от",
+ "requested-by": "Поискан от",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Изтриване на Таблото?",
+ "delete-board": "Изтрий таблото",
+ "default-subtasks-board": "Подзадачи за табло __board__",
+ "default": "по подразбиране",
+ "queue": "Опашка",
+ "subtask-settings": "Настройки на Подзадачите",
+ "boardSubtaskSettingsPopup-title": "Настройки за Подзадачите за това Табло",
+ "show-subtasks-field": "Картата може да има подзадачи",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Промени източника на картата",
+ "parent-card": "Карта-източник",
+ "source-board": "Source board",
+ "no-parent": "Не показвай източника",
+ "activity-added-label": "добави етикет '%s' към %s",
+ "activity-removed-label": "премахна етикет '%s' от %s",
+ "activity-delete-attach": "изтри прикачен датотека от %s",
+ "activity-added-label-card": "добави етикет '%s'",
+ "activity-removed-label-card": "премахна етикет '%s'",
+ "activity-delete-attach-card": "изтри прикачения датотека",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Правило",
+ "r-add-trigger": "Добави спусък",
+ "r-add-action": "Добави действие",
+ "r-board-rules": "Правила за таблото",
+ "r-add-rule": "Добави правилото",
+ "r-view-rule": "Виж правилото",
+ "r-delete-rule": "Изтрий правилото",
+ "r-new-rule-name": "Заглавие за новото правило",
+ "r-no-rules": "Няма правила",
+ "r-when-a-card": "Когато карта",
+ "r-is": "е",
+ "r-is-moved": "преместена",
+ "r-added-to": "добавена в",
+ "r-removed-from": "премахната от",
+ "r-the-board": "таблото",
+ "r-list": "списък",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Преместено во Архива",
+ "r-unarchived": "Възстановено от Архива",
+ "r-a-card": "карта",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "име",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Премести картата в",
+ "r-top-of": "началото на",
+ "r-bottom-of": "края на",
+ "r-its-list": "списъка й",
+ "r-archive": "Премести во Архива",
+ "r-unarchive": "Възстанови от Архива",
+ "r-card": "карта",
+ "r-add": "Добави",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Детайли за правилото",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Премести картата во Архива",
+ "r-d-unarchive": "Възстанови картата от Архива",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Добави чеклист",
+ "r-d-remove-checklist": "Премахни чеклист",
+ "r-by": "by",
+ "r-add-checklist": "Добави чеклист",
+ "r-with-items": "с точки",
+ "r-items-list": "точка1,точка2,точка3",
+ "r-add-swimlane": "Добави коридор",
+ "r-swimlane-name": "име на коридора",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/mn.i18n.json b/i18n/mn.i18n.json
index 61dc4456..9c23f664 100644
--- a/i18n/mn.i18n.json
+++ b/i18n/mn.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Зөвшөөрөх",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Нэмэх",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Хавсралт нэмэх",
- "add-board": "Самбар нэмэх",
- "add-card": "Карт нэмэх",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Чеклист нэмэх",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Шошго нэмэх",
- "add-list": "Жагсаалт нэмэх",
- "add-members": "Гишүүд нэмэх",
- "added": "Нэмсэн",
- "addMemberPopup-title": "Гишүүд",
- "admin": "Админ",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Бүх самбарууд",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Гишүүд",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Аватар өөрчлөх",
- "change-password": "Нууц үг солих",
- "change-permissions": "Change permissions",
- "change-settings": "Тохиргоо өөрчлөх",
- "changeAvatarPopup-title": "Аватар өөрчлөх",
- "changeLanguagePopup-title": "Хэл солих",
- "changePasswordPopup-title": "Нууц үг солих",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Тохиргоо өөрчлөх",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Үүсгэх",
- "createBoardPopup-title": "Самбар үүсгэх",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Шошго үүсгэх",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Аватар өөрчлөх",
- "edit-profile": "Бүртгэл засварлах",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Мэдэгдэл тохируулах",
- "editProfilePopup-title": "Бүртгэл засварлах",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Самбар үүсгэх",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Шошго үүсгэх",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Гарах",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Гишүүний тохиргоо",
- "members": "Гишүүд",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "Миний самбарууд",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Хэрэглэгч үүсгэх",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Нэмэх",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Зөвшөөрөх",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Нэмэх",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Хавсралт нэмэх",
+ "add-board": "Самбар нэмэх",
+ "add-card": "Карт нэмэх",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Чеклист нэмэх",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Шошго нэмэх",
+ "add-list": "Жагсаалт нэмэх",
+ "add-members": "Гишүүд нэмэх",
+ "added": "Нэмсэн",
+ "addMemberPopup-title": "Гишүүд",
+ "admin": "Админ",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Бүх самбарууд",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Гишүүд",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Аватар өөрчлөх",
+ "change-password": "Нууц үг солих",
+ "change-permissions": "Change permissions",
+ "change-settings": "Тохиргоо өөрчлөх",
+ "changeAvatarPopup-title": "Аватар өөрчлөх",
+ "changeLanguagePopup-title": "Хэл солих",
+ "changePasswordPopup-title": "Нууц үг солих",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Тохиргоо өөрчлөх",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Үүсгэх",
+ "createBoardPopup-title": "Самбар үүсгэх",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Шошго үүсгэх",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Аватар өөрчлөх",
+ "edit-profile": "Бүртгэл засварлах",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Мэдэгдэл тохируулах",
+ "editProfilePopup-title": "Бүртгэл засварлах",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Самбар үүсгэх",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Шошго үүсгэх",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Гарах",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Гишүүний тохиргоо",
+ "members": "Гишүүд",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "Миний самбарууд",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Хэрэглэгч үүсгэх",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Нэмэх",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/nb.i18n.json b/i18n/nb.i18n.json
index 9f1e3ea9..ad2b781b 100644
--- a/i18n/nb.i18n.json
+++ b/i18n/nb.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Godta",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Aktiviteter",
- "activity": "Aktivitet",
- "activity-added": "la %s til %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "la %s til %s",
- "activity-created": "opprettet %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "ekskluderte %s fra %s",
- "activity-imported": "importerte %s til %s fra %s",
- "activity-imported-board": "importerte %s fra %s",
- "activity-joined": "ble med %s",
- "activity-moved": "flyttet %s fra %s til %s",
- "activity-on": "på %s",
- "activity-removed": "fjernet %s fra %s",
- "activity-sent": "sendte %s til %s",
- "activity-unjoined": "forlot %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "la til sjekkliste til %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Legg til",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Nytt punkt på sjekklisten",
- "add-cover": "Nytt omslag",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Legg til medlemmer",
- "added": "Lagt til",
- "addMemberPopup-title": "Medlemmer",
- "admin": "Admin",
- "admin-desc": "Kan se og redigere kort, fjerne medlemmer, og endre innstillingene for tavlen.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Alle tavler",
- "and-n-other-card": "Og __count__ andre kort",
- "and-n-other-card_plural": "Og __count__ andre kort",
- "apply": "Lagre",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arkiv",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Arkiv",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Tildel medlem",
- "attached": "la ved",
- "attachment": "Vedlegg",
- "attachment-delete-pop": "Sletting av vedlegg er permanent og kan ikke angres",
- "attachmentDeletePopup-title": "Slette vedlegg?",
- "attachments": "Vedlegg",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Tilbake",
- "board-change-color": "Endre farge",
- "board-nb-stars": "%s stjerner",
- "board-not-found": "Kunne ikke finne tavlen",
- "board-private-info": "Denne tavlen vil være <strong>privat</strong>.",
- "board-public-info": "Denne tavlen vil være <strong>offentlig</strong>.",
- "boardChangeColorPopup-title": "Ende tavlens bakgrunnsfarge",
- "boardChangeTitlePopup-title": "Endre navn på tavlen",
- "boardChangeVisibilityPopup-title": "Endre synlighet",
- "boardChangeWatchPopup-title": "Endre overvåkning",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Tavler",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Som \"Bucket List\" for eksempel",
- "cancel": "Avbryt",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Dette kortet har %s kommentar.",
- "card-delete-notice": "Sletting er permanent. Du vil miste alle hendelser knyttet til dette kortet.",
- "card-delete-pop": "Alle handlinger vil fjernes fra feeden for aktiviteter og du vil ikke kunne åpne kortet på nytt. Det er ingen mulighet å angre.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Frist",
- "card-due-on": "Frist til",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Rediger vedlegg",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Rediger etiketter",
- "card-edit-members": "Endre medlemmer",
- "card-labels-title": "Endre etiketter for kortet.",
- "card-members-title": "Legg til eller fjern tavle-medlemmer fra dette kortet.",
- "card-start": "Start",
- "card-start-on": "Starter på",
- "cardAttachmentsPopup-title": "Legg ved fra",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Slett kort?",
- "cardDetailsActionsPopup-title": "Kort-handlinger",
- "cardLabelsPopup-title": "Etiketter",
- "cardMembersPopup-title": "Medlemmer",
- "cardMorePopup-title": "Mer",
- "cardTemplatePopup-title": "Create template",
- "cards": "Kort",
- "cards-count": "Kort",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Endre",
- "change-avatar": "Endre avatar",
- "change-password": "Endre passord",
- "change-permissions": "Endre rettigheter",
- "change-settings": "Endre innstillinger",
- "changeAvatarPopup-title": "Endre Avatar",
- "changeLanguagePopup-title": "Endre språk",
- "changePasswordPopup-title": "Endre passord",
- "changePermissionsPopup-title": "Endre tillatelser",
- "changeSettingsPopup-title": "Endre innstillinger",
- "subtasks": "Subtasks",
- "checklists": "Sjekklister",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Endre avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Etiketter",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "Mer",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Medlemmer",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Endre navn på tavlen",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Legg til",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Godta",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Aktiviteter",
+ "activity": "Aktivitet",
+ "activity-added": "la %s til %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "la %s til %s",
+ "activity-created": "opprettet %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "ekskluderte %s fra %s",
+ "activity-imported": "importerte %s til %s fra %s",
+ "activity-imported-board": "importerte %s fra %s",
+ "activity-joined": "ble med %s",
+ "activity-moved": "flyttet %s fra %s til %s",
+ "activity-on": "på %s",
+ "activity-removed": "fjernet %s fra %s",
+ "activity-sent": "sendte %s til %s",
+ "activity-unjoined": "forlot %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "la til sjekkliste til %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Legg til",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Nytt punkt på sjekklisten",
+ "add-cover": "Nytt omslag",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Legg til medlemmer",
+ "added": "Lagt til",
+ "addMemberPopup-title": "Medlemmer",
+ "admin": "Admin",
+ "admin-desc": "Kan se og redigere kort, fjerne medlemmer, og endre innstillingene for tavlen.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Alle tavler",
+ "and-n-other-card": "Og __count__ andre kort",
+ "and-n-other-card_plural": "Og __count__ andre kort",
+ "apply": "Lagre",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arkiv",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Arkiv",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Tildel medlem",
+ "attached": "la ved",
+ "attachment": "Vedlegg",
+ "attachment-delete-pop": "Sletting av vedlegg er permanent og kan ikke angres",
+ "attachmentDeletePopup-title": "Slette vedlegg?",
+ "attachments": "Vedlegg",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Tilbake",
+ "board-change-color": "Endre farge",
+ "board-nb-stars": "%s stjerner",
+ "board-not-found": "Kunne ikke finne tavlen",
+ "board-private-info": "Denne tavlen vil være <strong>privat</strong>.",
+ "board-public-info": "Denne tavlen vil være <strong>offentlig</strong>.",
+ "boardChangeColorPopup-title": "Ende tavlens bakgrunnsfarge",
+ "boardChangeTitlePopup-title": "Endre navn på tavlen",
+ "boardChangeVisibilityPopup-title": "Endre synlighet",
+ "boardChangeWatchPopup-title": "Endre overvåkning",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Tavler",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Som \"Bucket List\" for eksempel",
+ "cancel": "Avbryt",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Dette kortet har %s kommentar.",
+ "card-delete-notice": "Sletting er permanent. Du vil miste alle hendelser knyttet til dette kortet.",
+ "card-delete-pop": "Alle handlinger vil fjernes fra feeden for aktiviteter og du vil ikke kunne åpne kortet på nytt. Det er ingen mulighet å angre.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Frist",
+ "card-due-on": "Frist til",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Rediger vedlegg",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Rediger etiketter",
+ "card-edit-members": "Endre medlemmer",
+ "card-labels-title": "Endre etiketter for kortet.",
+ "card-members-title": "Legg til eller fjern tavle-medlemmer fra dette kortet.",
+ "card-start": "Start",
+ "card-start-on": "Starter på",
+ "cardAttachmentsPopup-title": "Legg ved fra",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Slett kort?",
+ "cardDetailsActionsPopup-title": "Kort-handlinger",
+ "cardLabelsPopup-title": "Etiketter",
+ "cardMembersPopup-title": "Medlemmer",
+ "cardMorePopup-title": "Mer",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Kort",
+ "cards-count": "Kort",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Endre",
+ "change-avatar": "Endre avatar",
+ "change-password": "Endre passord",
+ "change-permissions": "Endre rettigheter",
+ "change-settings": "Endre innstillinger",
+ "changeAvatarPopup-title": "Endre Avatar",
+ "changeLanguagePopup-title": "Endre språk",
+ "changePasswordPopup-title": "Endre passord",
+ "changePermissionsPopup-title": "Endre tillatelser",
+ "changeSettingsPopup-title": "Endre innstillinger",
+ "subtasks": "Subtasks",
+ "checklists": "Sjekklister",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Endre avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Etiketter",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "Mer",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Medlemmer",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Endre navn på tavlen",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Legg til",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/nl.i18n.json b/i18n/nl.i18n.json
index 254b4d5c..9fe48a8f 100644
--- a/i18n/nl.i18n.json
+++ b/i18n/nl.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Accepteren",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Acties",
- "activities": "Activiteiten",
- "activity": "Activiteit",
- "activity-added": "%s toegevoegd aan %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "%s bijgevoegd aan %s",
- "activity-created": "%s aangemaakt",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "%s uitgesloten van %s",
- "activity-imported": "%s geimporteerd in %s van %s",
- "activity-imported-board": "%s geimporteerd van %s",
- "activity-joined": "%s toegetreden",
- "activity-moved": "%s verplaatst van %s naar %s",
- "activity-on": "bij %s",
- "activity-removed": "%s verwijderd van %s",
- "activity-sent": "%s gestuurd naar %s",
- "activity-unjoined": "uit %s gegaan",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "checklist toegevoegd aan %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "checklist punt toegevoegd aan '%s' in '%s'",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Toevoegen",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Voeg Bijlage Toe",
- "add-board": "Voeg Bord Toe",
- "add-card": "Voeg Kaart Toe",
- "add-swimlane": "Swimlane Toevoegen",
- "add-subtask": "Add Subtask",
- "add-checklist": "Voeg Checklist Toe",
- "add-checklist-item": "Voeg item toe aan checklist",
- "add-cover": "Voeg Cover Toe",
- "add-label": "Voeg Label Toe",
- "add-list": "Voeg Lijst Toe",
- "add-members": "Voeg Leden Toe",
- "added": "Toegevoegd",
- "addMemberPopup-title": "Leden",
- "admin": "Administrator",
- "admin-desc": "Kan kaarten bekijken en wijzigen, leden verwijderen, en instellingen voor het bord aanpassen.",
- "admin-announcement": "Melding",
- "admin-announcement-active": "Systeem melding",
- "admin-announcement-title": "Melding van de administrator",
- "all-boards": "Alle borden",
- "and-n-other-card": "En nog __count__ ander",
- "and-n-other-card_plural": "En __count__ andere kaarten",
- "apply": "Aanmelden",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archiveren",
- "archived-boards": "Boards in Archive",
- "restore-board": "Herstel Bord",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archiveren",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Wijs lid aan",
- "attached": "bijgevoegd",
- "attachment": "Bijlage",
- "attachment-delete-pop": "Een bijlage verwijderen is permanent. Er is geen herstelmogelijkheid.",
- "attachmentDeletePopup-title": "Verwijder Bijlage?",
- "attachments": "Bijlagen",
- "auto-watch": "Automatisch borden bekijken wanneer deze aangemaakt worden",
- "avatar-too-big": "De bestandsgrootte van je avatar is te groot (70KB max)",
- "back": "Terug",
- "board-change-color": "Verander kleur",
- "board-nb-stars": "%s sterren",
- "board-not-found": "Bord is niet gevonden",
- "board-private-info": "Dit bord is nu <strong>privé</strong>.",
- "board-public-info": "Dit bord is nu <strong>openbaar</strong>.",
- "boardChangeColorPopup-title": "Verander achtergrond van bord",
- "boardChangeTitlePopup-title": "Hernoem bord",
- "boardChangeVisibilityPopup-title": "Verander zichtbaarheid",
- "boardChangeWatchPopup-title": "Verander naar 'Watch'",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Borden",
- "board-view": "Bord overzicht",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lijsten",
- "bucket-example": "Zoals \"Bucket List\" bijvoorbeeld",
- "cancel": "Annuleren",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Deze kaart heeft %s reactie.",
- "card-delete-notice": "Verwijdering is permanent. Als je dit doet, verlies je alle informatie die op deze kaart is opgeslagen.",
- "card-delete-pop": "Alle acties worden verwijderd van de activiteiten feed, en er zal geen mogelijkheid zijn om de kaart opnieuw te openen. Deze actie kan je niet ongedaan maken.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Deadline: ",
- "card-due-on": "Deadline: ",
- "card-spent": "gespendeerde tijd",
- "card-edit-attachments": "Wijzig bijlagen",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Wijzig labels",
- "card-edit-members": "Wijzig leden",
- "card-labels-title": "Wijzig de labels vam de kaart.",
- "card-members-title": "Voeg of verwijder leden van het bord toe aan de kaart.",
- "card-start": "Begin",
- "card-start-on": "Begint op",
- "cardAttachmentsPopup-title": "Voeg bestand toe vanuit",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Kaart verwijderen?",
- "cardDetailsActionsPopup-title": "Kaart actie ondernemen",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Leden",
- "cardMorePopup-title": "Meer",
- "cardTemplatePopup-title": "Create template",
- "cards": "Kaarten",
- "cards-count": "Kaarten",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Wijzig",
- "change-avatar": "Wijzig avatar",
- "change-password": "Wijzig wachtwoord",
- "change-permissions": "Wijzig permissies",
- "change-settings": "Wijzig instellingen",
- "changeAvatarPopup-title": "Wijzig avatar",
- "changeLanguagePopup-title": "Verander van taal",
- "changePasswordPopup-title": "Wijzig wachtwoord",
- "changePermissionsPopup-title": "Wijzig permissies",
- "changeSettingsPopup-title": "Wijzig instellingen",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Klik om het bord als favoriet in te stellen",
- "click-to-unstar": "Klik om het bord uit favorieten weg te halen",
- "clipboard": "Vanuit clipboard of sleep het bestand hierheen",
- "close": "Sluiten",
- "close-board": "Sluit bord",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "zwart",
- "color-blue": "blauw",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "groen",
- "color-indigo": "indigo",
- "color-lime": "Felgroen",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "Oranje",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "Roze",
- "color-plum": "plum",
- "color-purple": "Paars",
- "color-red": "Rood",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "Lucht",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "Geel",
- "unset-color": "Unset",
- "comment": "Reageer",
- "comment-placeholder": "Schrijf reactie",
- "comment-only": "Alleen reageren",
- "comment-only-desc": "Kan alleen op kaarten reageren.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Kopieer kaart link naar klembord",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Zoek",
- "copyCardPopup-title": "Kopieer kaart",
- "copyChecklistToManyCardsPopup-title": "Checklist sjabloon kopiëren naar meerdere kaarten",
- "copyChecklistToManyCardsPopup-instructions": "Doel kaart titels en omschrijvingen in dit JSON formaat",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titel eerste kaart\", \"description\":\"Omschrijving eerste kaart\"}, {\"title\":\"Titel tweede kaart\",\"description\":\"Omschrijving tweede kaart\"},{\"title\":\"Titel laatste kaart\",\"description\":\"Omschrijving laatste kaart\"} ]",
- "create": "Aanmaken",
- "createBoardPopup-title": "Bord aanmaken",
- "chooseBoardSourcePopup-title": "Importeer bord",
- "createLabelPopup-title": "Label aanmaken",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "Huidige",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Datum",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Datum",
- "decline": "Weigeren",
- "default-avatar": "Standaard avatar",
- "delete": "Verwijderen",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Verwijder label?",
- "description": "Beschrijving",
- "disambiguateMultiLabelPopup-title": "Disambigueer Label Actie",
- "disambiguateMultiMemberPopup-title": "Disambigueer Lid Actie",
- "discard": "Weggooien",
- "done": "Klaar",
- "download": "Download",
- "edit": "Wijzig",
- "edit-avatar": "Wijzig avatar",
- "edit-profile": "Wijzig profiel",
- "edit-wip-limit": "Verander WIP limiet",
- "soft-wip-limit": "Zachte WIP limiet",
- "editCardStartDatePopup-title": "Wijzig start datum",
- "editCardDueDatePopup-title": "Wijzig deadline",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Verander gespendeerde tijd",
- "editLabelPopup-title": "Wijzig label",
- "editNotificationPopup-title": "Wijzig notificatie",
- "editProfilePopup-title": "Wijzig profiel",
- "email": "E-mail",
- "email-enrollAccount-subject": "Er is een account voor je aangemaakt op __siteName__",
- "email-enrollAccount-text": "Hallo __user__,\n\nOm gebruik te maken van de online dienst, kan je op de volgende link klikken.\n\n__url__\n\nBedankt.",
- "email-fail": "E-mail verzenden is mislukt",
- "email-fail-text": "Fout tijdens het verzenden van de email",
- "email-invalid": "Ongeldige e-mail",
- "email-invite": "Nodig uit via e-mail",
- "email-invite-subject": "__inviter__ heeft je een uitnodiging gestuurd",
- "email-invite-text": "Beste __user__,\n\n__inviter__ heeft je uitgenodigd om voor een samenwerking deel te nemen aan het bord \"__board__\".\n\nKlik op de link hieronder:\n\n__url__\n\nBedankt.",
- "email-resetPassword-subject": "Reset je wachtwoord op __siteName__",
- "email-resetPassword-text": "Hallo __user__,\n\nKlik op de link hier beneden om je wachtwoord te resetten.\n\n__url__\n\nBedankt.",
- "email-sent": "E-mail is verzonden",
- "email-verifyEmail-subject": "Verifieer je e-mailadres op __siteName__",
- "email-verifyEmail-text": "Hallo __user__,\n\nOm je e-mail te verifiëren vragen we je om op de link hieronder te drukken.\n\n__url__\n\nBedankt.",
- "enable-wip-limit": "Activeer WIP limiet",
- "error-board-doesNotExist": "Dit bord bestaat niet.",
- "error-board-notAdmin": "Je moet een administrator zijn van dit bord om dat te doen.",
- "error-board-notAMember": "Je moet een lid zijn van dit bord om dat te doen.",
- "error-json-malformed": "JSON format klopt niet",
- "error-json-schema": "De JSON data bevat niet de juiste informatie in de juiste format",
- "error-list-doesNotExist": "Deze lijst bestaat niet",
- "error-user-doesNotExist": "Deze gebruiker bestaat niet",
- "error-user-notAllowSelf": "Je kan jezelf niet uitnodigen",
- "error-user-notCreated": "Deze gebruiker is niet aangemaakt",
- "error-username-taken": "Deze gebruikersnaam is al bezet",
- "error-email-taken": "Deze e-mail is al eerder gebruikt",
- "export-board": "Exporteer bord",
- "filter": "Filter",
- "filter-cards": "Filter kaarten",
- "filter-clear": "Reset filter",
- "filter-no-label": "Geen label",
- "filter-no-member": "Geen lid",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter staat aan",
- "filter-on-desc": "Je bent nu kaarten aan het filteren op dit bord. Klik hier om het filter te wijzigen.",
- "filter-to-selection": "Filter zoals selectie",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Volledige naam",
- "header-logo-title": "Ga terug naar jouw borden pagina.",
- "hide-system-messages": "Verberg systeemberichten",
- "headerBarCreateBoardPopup-title": "Bord aanmaken",
- "home": "Voorpagina",
- "import": "Importeer",
- "link": "Link",
- "import-board": "Importeer bord",
- "import-board-c": "Importeer bord",
- "import-board-title-trello": "Importeer bord van Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Het geïmporteerde bord verwijdert alle data op het huidige bord, om het daarna te vervangen.",
- "from-trello": "Van Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "Op jouw Trello bord, ga naar 'Menu', dan naar 'Meer', 'Print en Exporteer', 'Exporteer JSON', en kopieer de tekst.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Plak geldige JSON data hier",
- "import-map-members": "Breng leden in kaart",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Breng leden overzicht tevoorschijn",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Versie",
- "initials": "Initialen",
- "invalid-date": "Ongeldige datum",
- "invalid-time": "Ongeldige tijd",
- "invalid-user": "Ongeldige gebruiker",
- "joined": "doet nu mee met",
- "just-invited": "Je bent zojuist uitgenodigd om mee toen doen met dit bord",
- "keyboard-shortcuts": "Toetsenbord snelkoppelingen",
- "label-create": "Label aanmaken",
- "label-default": "%s label (standaard)",
- "label-delete-pop": "Je kan het niet ongedaan maken. Deze actie zal de label van alle kaarten verwijderen, en de feed.",
- "labels": "Labels",
- "language": "Taal",
- "last-admin-desc": "Je kan de permissies niet veranderen omdat er maar een administrator is.",
- "leave-board": "Verlaat bord",
- "leave-board-pop": "Weet u zeker dat u __boardTitle__ wilt verlaten? U wordt verwijderd van alle kaarten binnen dit bord",
- "leaveBoardPopup-title": "Bord verlaten?",
- "link-card": "Link naar deze kaart",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Verplaats alle kaarten in deze lijst",
- "list-select-cards": "Selecteer alle kaarten in deze lijst",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Lijst acties",
- "swimlaneActionPopup-title": "Swimlane handelingen",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Importeer een Trello kaart",
- "listMorePopup-title": "Meer",
- "link-list": "Link naar deze lijst",
- "list-delete-pop": "Alle acties zullen verwijderd worden van de activiteiten feed, en je zult deze niet meer kunnen herstellen. Je kan deze actie niet ongedaan maken.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lijsten",
- "swimlanes": "Swimlanes",
- "log-out": "Uitloggen",
- "log-in": "Inloggen",
- "loginPopup-title": "Inloggen",
- "memberMenuPopup-title": "Instellingen van leden",
- "members": "Leden",
- "menu": "Menu",
- "move-selection": "Verplaats selectie",
- "moveCardPopup-title": "Verplaats kaart",
- "moveCardToBottom-title": "Verplaats naar beneden",
- "moveCardToTop-title": "Verplaats naar boven",
- "moveSelectionPopup-title": "Verplaats selectie",
- "multi-selection": "Multi-selectie",
- "multi-selection-on": "Multi-selectie staat aan",
- "muted": "Stil",
- "muted-info": "Je zal nooit meer geïnformeerd worden bij veranderingen in dit bord.",
- "my-boards": "Mijn Borden",
- "name": "Naam",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Geen resultaten",
- "normal": "Normaal",
- "normal-desc": "Kan de kaarten zien en wijzigen. Kan de instellingen niet wijzigen.",
- "not-accepted-yet": "Uitnodiging niet geaccepteerd",
- "notify-participate": "Ontvang updates van elke kaart die je hebt gemaakt of lid van bent",
- "notify-watch": "Ontvang updates van elke bord, lijst of kaart die je bekijkt.",
- "optional": "optioneel",
- "or": "of",
- "page-maybe-private": "Deze pagina is privé. Je kan het bekijken door <a href='%s'>in te loggen</a>.",
- "page-not-found": "Pagina niet gevonden.",
- "password": "Wachtwoord",
- "paste-or-dragdrop": "Om te plakken, of slepen & neer te laten (alleen afbeeldingen)",
- "participating": "Deelnemen",
- "preview": "Voorbeeld",
- "previewAttachedImagePopup-title": "Voorbeeld",
- "previewClipboardImagePopup-title": "Voorbeeld",
- "private": "Privé",
- "private-desc": "Dit bord is privé. Alleen mensen die toegevoegd zijn aan het bord kunnen het bekijken en wijzigen.",
- "profile": "Profiel",
- "public": "Publiek",
- "public-desc": "Dit bord is publiek. Het is zichtbaar voor iedereen met de link en zal tevoorschijn komen op zoekmachines zoals Google. Alleen mensen die toegevoegd zijn kunnen het bord wijzigen.",
- "quick-access-description": "Maak een bord favoriet om een snelkoppeling toe te voegen aan deze balk.",
- "remove-cover": "Verwijder Cover",
- "remove-from-board": "Verwijder van bord",
- "remove-label": "Verwijder label",
- "listDeletePopup-title": "Verwijder lijst?",
- "remove-member": "Verwijder lid",
- "remove-member-from-card": "Verwijder van kaart",
- "remove-member-pop": "Verwijder __name__ (__username__) van __boardTitle__? Het lid zal verwijderd worden van alle kaarten op dit bord, en zal een notificatie ontvangen.",
- "removeMemberPopup-title": "Verwijder lid?",
- "rename": "Hernoem",
- "rename-board": "Hernoem bord",
- "restore": "Herstel",
- "save": "Opslaan",
- "search": "Zoek",
- "rules": "Rules",
- "search-cards": "Zoeken in kaart titels en omschrijvingen op dit bord",
- "search-example": "Tekst om naar te zoeken?",
- "select-color": "Selecteer kleur",
- "set-wip-limit-value": "Zet een limiet voor het maximaal aantal taken in deze lijst",
- "setWipLimitPopup-title": "Zet een WIP limiet",
- "shortcut-assign-self": "Wijs jezelf toe aan huidige kaart",
- "shortcut-autocomplete-emoji": "Emojis automatisch aanvullen",
- "shortcut-autocomplete-members": "Leden automatisch aanvullen",
- "shortcut-clear-filters": "Alle filters vrijmaken",
- "shortcut-close-dialog": "Sluit dialoog",
- "shortcut-filter-my-cards": "Filter mijn kaarten",
- "shortcut-show-shortcuts": "Haal lijst met snelkoppelingen tevoorschijn",
- "shortcut-toggle-filterbar": "Schakel Filter Zijbalk",
- "shortcut-toggle-sidebar": "Schakel Bord Zijbalk",
- "show-cards-minimum-count": "Laat het aantal kaarten zien wanneer de lijst meer kaarten heeft dan",
- "sidebar-open": "Open Zijbalk",
- "sidebar-close": "Sluit Zijbalk",
- "signupPopup-title": "Maak een account aan",
- "star-board-title": "Klik om het bord toe te voegen aan favorieten, waarna hij aan de bovenbalk tevoorschijn komt.",
- "starred-boards": "Favoriete Borden",
- "starred-boards-description": "Favoriete borden komen tevoorschijn aan de bovenbalk.",
- "subscribe": "Abonneer",
- "team": "Team",
- "this-board": "dit bord",
- "this-card": "deze kaart",
- "spent-time-hours": "Gespendeerde tijd (in uren)",
- "overtime-hours": "Overwerk (in uren)",
- "overtime": "Overwerk",
- "has-overtime-cards": "Heeft kaarten met overwerk",
- "has-spenttime-cards": "Heeft tijd besteed aan kaarten",
- "time": "Tijd",
- "title": "Titel",
- "tracking": "Volgen",
- "tracking-info": "Je wordt op de hoogte gesteld als er veranderingen zijn aan de kaarten waar je lid of maker van bent.",
- "type": "Type",
- "unassign-member": "Lid ontkennen",
- "unsaved-description": "Je hebt een niet opgeslagen beschrijving.",
- "unwatch": "Niet bekijken",
- "upload": "Upload",
- "upload-avatar": "Upload een avatar",
- "uploaded-avatar": "Avatar is geüpload",
- "username": "Gebruikersnaam",
- "view-it": "Bekijk het",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Bekijk",
- "watching": "Bekijken",
- "watching-info": "Je zal op de hoogte worden gesteld als er een verandering gebeurt op dit bord.",
- "welcome-board": "Welkom Bord",
- "welcome-swimlane": "Mijlpaal 1",
- "welcome-list1": "Basis",
- "welcome-list2": "Geadvanceerd",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Wat wil je doen?",
- "wipLimitErrorPopup-title": "Ongeldige WIP limiet",
- "wipLimitErrorPopup-dialog-pt1": "Het aantal taken in deze lijst is groter dan de gedefinieerde WIP limiet ",
- "wipLimitErrorPopup-dialog-pt2": "Verwijder een aantal taken uit deze lijst, of zet de WIP limiet hoger",
- "admin-panel": "Administrator paneel",
- "settings": "Instellingen",
- "people": "Mensen",
- "registration": "Registratie",
- "disable-self-registration": "Schakel zelf-registratie uit",
- "invite": "Uitnodigen",
- "invite-people": "Nodig mensen uit",
- "to-boards": "Voor bord(en)",
- "email-addresses": "E-mailadressen",
- "smtp-host-description": "Het adres van de SMTP server die e-mails zal versturen.",
- "smtp-port-description": "De poort van de SMTP server wordt gebruikt voor uitgaande e-mails.",
- "smtp-tls-description": "Gebruik TLS ondersteuning voor SMTP server.",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Poort",
- "smtp-username": "Gebruikersnaam",
- "smtp-password": "Wachtwoord",
- "smtp-tls": "TLS ondersteuning",
- "send-from": "Van",
- "send-smtp-test": "Verzend een email naar uzelf",
- "invitation-code": "Uitnodigings code",
- "email-invite-register-subject": "__inviter__ heeft je een uitnodiging gestuurd",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "U heeft met succes een email verzonden",
- "error-invitation-code-not-exist": "Uitnodigings code bestaat niet",
- "error-notAuthorized": "Je bent niet toegestaan om deze pagina te bekijken.",
- "outgoing-webhooks": "Uitgaande Webhooks",
- "outgoingWebhooksPopup-title": "Uitgaande Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "Nieuwe webhook",
- "no-name": "(Onbekend)",
- "Node_version": "Node versie",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Vrij Geheugen",
- "OS_Loadavg": "OS Gemiddelde Lading",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Versie",
- "OS_Totalmem": "OS Totaal Geheugen",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "uren",
- "minutes": "minuten",
- "seconds": "seconden",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Ja",
- "no": "Nee",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Sta E-mailadres wijzigingen toe",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Gemaakt op",
- "verified": "Geverifieerd",
- "active": "Actief",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Toevoegen",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Accepteren",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Acties",
+ "activities": "Activiteiten",
+ "activity": "Activiteit",
+ "activity-added": "%s toegevoegd aan %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "%s bijgevoegd aan %s",
+ "activity-created": "%s aangemaakt",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "%s uitgesloten van %s",
+ "activity-imported": "%s geimporteerd in %s van %s",
+ "activity-imported-board": "%s geimporteerd van %s",
+ "activity-joined": "%s toegetreden",
+ "activity-moved": "%s verplaatst van %s naar %s",
+ "activity-on": "bij %s",
+ "activity-removed": "%s verwijderd van %s",
+ "activity-sent": "%s gestuurd naar %s",
+ "activity-unjoined": "uit %s gegaan",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "checklist toegevoegd aan %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "checklist punt toegevoegd aan '%s' in '%s'",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Toevoegen",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Voeg Bijlage Toe",
+ "add-board": "Voeg Bord Toe",
+ "add-card": "Voeg Kaart Toe",
+ "add-swimlane": "Swimlane Toevoegen",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Voeg Checklist Toe",
+ "add-checklist-item": "Voeg item toe aan checklist",
+ "add-cover": "Voeg Cover Toe",
+ "add-label": "Voeg Label Toe",
+ "add-list": "Voeg Lijst Toe",
+ "add-members": "Voeg Leden Toe",
+ "added": "Toegevoegd",
+ "addMemberPopup-title": "Leden",
+ "admin": "Administrator",
+ "admin-desc": "Kan kaarten bekijken en wijzigen, leden verwijderen, en instellingen voor het bord aanpassen.",
+ "admin-announcement": "Melding",
+ "admin-announcement-active": "Systeem melding",
+ "admin-announcement-title": "Melding van de administrator",
+ "all-boards": "Alle borden",
+ "and-n-other-card": "En nog __count__ ander",
+ "and-n-other-card_plural": "En __count__ andere kaarten",
+ "apply": "Aanmelden",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archiveren",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Herstel Bord",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archiveren",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Wijs lid aan",
+ "attached": "bijgevoegd",
+ "attachment": "Bijlage",
+ "attachment-delete-pop": "Een bijlage verwijderen is permanent. Er is geen herstelmogelijkheid.",
+ "attachmentDeletePopup-title": "Verwijder Bijlage?",
+ "attachments": "Bijlagen",
+ "auto-watch": "Automatisch borden bekijken wanneer deze aangemaakt worden",
+ "avatar-too-big": "De bestandsgrootte van je avatar is te groot (70KB max)",
+ "back": "Terug",
+ "board-change-color": "Verander kleur",
+ "board-nb-stars": "%s sterren",
+ "board-not-found": "Bord is niet gevonden",
+ "board-private-info": "Dit bord is nu <strong>privé</strong>.",
+ "board-public-info": "Dit bord is nu <strong>openbaar</strong>.",
+ "boardChangeColorPopup-title": "Verander achtergrond van bord",
+ "boardChangeTitlePopup-title": "Hernoem bord",
+ "boardChangeVisibilityPopup-title": "Verander zichtbaarheid",
+ "boardChangeWatchPopup-title": "Verander naar 'Watch'",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Borden",
+ "board-view": "Bord overzicht",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lijsten",
+ "bucket-example": "Zoals \"Bucket List\" bijvoorbeeld",
+ "cancel": "Annuleren",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Deze kaart heeft %s reactie.",
+ "card-delete-notice": "Verwijdering is permanent. Als je dit doet, verlies je alle informatie die op deze kaart is opgeslagen.",
+ "card-delete-pop": "Alle acties worden verwijderd van de activiteiten feed, en er zal geen mogelijkheid zijn om de kaart opnieuw te openen. Deze actie kan je niet ongedaan maken.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Deadline: ",
+ "card-due-on": "Deadline: ",
+ "card-spent": "gespendeerde tijd",
+ "card-edit-attachments": "Wijzig bijlagen",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Wijzig labels",
+ "card-edit-members": "Wijzig leden",
+ "card-labels-title": "Wijzig de labels vam de kaart.",
+ "card-members-title": "Voeg of verwijder leden van het bord toe aan de kaart.",
+ "card-start": "Begin",
+ "card-start-on": "Begint op",
+ "cardAttachmentsPopup-title": "Voeg bestand toe vanuit",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Kaart verwijderen?",
+ "cardDetailsActionsPopup-title": "Kaart actie ondernemen",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Leden",
+ "cardMorePopup-title": "Meer",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Kaarten",
+ "cards-count": "Kaarten",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Wijzig",
+ "change-avatar": "Wijzig avatar",
+ "change-password": "Wijzig wachtwoord",
+ "change-permissions": "Wijzig permissies",
+ "change-settings": "Wijzig instellingen",
+ "changeAvatarPopup-title": "Wijzig avatar",
+ "changeLanguagePopup-title": "Verander van taal",
+ "changePasswordPopup-title": "Wijzig wachtwoord",
+ "changePermissionsPopup-title": "Wijzig permissies",
+ "changeSettingsPopup-title": "Wijzig instellingen",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Klik om het bord als favoriet in te stellen",
+ "click-to-unstar": "Klik om het bord uit favorieten weg te halen",
+ "clipboard": "Vanuit clipboard of sleep het bestand hierheen",
+ "close": "Sluiten",
+ "close-board": "Sluit bord",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "zwart",
+ "color-blue": "blauw",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "groen",
+ "color-indigo": "indigo",
+ "color-lime": "Felgroen",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "Oranje",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "Roze",
+ "color-plum": "plum",
+ "color-purple": "Paars",
+ "color-red": "Rood",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "Lucht",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "Geel",
+ "unset-color": "Unset",
+ "comment": "Reageer",
+ "comment-placeholder": "Schrijf reactie",
+ "comment-only": "Alleen reageren",
+ "comment-only-desc": "Kan alleen op kaarten reageren.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Kopieer kaart link naar klembord",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Zoek",
+ "copyCardPopup-title": "Kopieer kaart",
+ "copyChecklistToManyCardsPopup-title": "Checklist sjabloon kopiëren naar meerdere kaarten",
+ "copyChecklistToManyCardsPopup-instructions": "Doel kaart titels en omschrijvingen in dit JSON formaat",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Titel eerste kaart\", \"description\":\"Omschrijving eerste kaart\"}, {\"title\":\"Titel tweede kaart\",\"description\":\"Omschrijving tweede kaart\"},{\"title\":\"Titel laatste kaart\",\"description\":\"Omschrijving laatste kaart\"} ]",
+ "create": "Aanmaken",
+ "createBoardPopup-title": "Bord aanmaken",
+ "chooseBoardSourcePopup-title": "Importeer bord",
+ "createLabelPopup-title": "Label aanmaken",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "Huidige",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Datum",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Datum",
+ "decline": "Weigeren",
+ "default-avatar": "Standaard avatar",
+ "delete": "Verwijderen",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Verwijder label?",
+ "description": "Beschrijving",
+ "disambiguateMultiLabelPopup-title": "Disambigueer Label Actie",
+ "disambiguateMultiMemberPopup-title": "Disambigueer Lid Actie",
+ "discard": "Weggooien",
+ "done": "Klaar",
+ "download": "Download",
+ "edit": "Wijzig",
+ "edit-avatar": "Wijzig avatar",
+ "edit-profile": "Wijzig profiel",
+ "edit-wip-limit": "Verander WIP limiet",
+ "soft-wip-limit": "Zachte WIP limiet",
+ "editCardStartDatePopup-title": "Wijzig start datum",
+ "editCardDueDatePopup-title": "Wijzig deadline",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Verander gespendeerde tijd",
+ "editLabelPopup-title": "Wijzig label",
+ "editNotificationPopup-title": "Wijzig notificatie",
+ "editProfilePopup-title": "Wijzig profiel",
+ "email": "E-mail",
+ "email-enrollAccount-subject": "Er is een account voor je aangemaakt op __siteName__",
+ "email-enrollAccount-text": "Hallo __user__,\n\nOm gebruik te maken van de online dienst, kan je op de volgende link klikken.\n\n__url__\n\nBedankt.",
+ "email-fail": "E-mail verzenden is mislukt",
+ "email-fail-text": "Fout tijdens het verzenden van de email",
+ "email-invalid": "Ongeldige e-mail",
+ "email-invite": "Nodig uit via e-mail",
+ "email-invite-subject": "__inviter__ heeft je een uitnodiging gestuurd",
+ "email-invite-text": "Beste __user__,\n\n__inviter__ heeft je uitgenodigd om voor een samenwerking deel te nemen aan het bord \"__board__\".\n\nKlik op de link hieronder:\n\n__url__\n\nBedankt.",
+ "email-resetPassword-subject": "Reset je wachtwoord op __siteName__",
+ "email-resetPassword-text": "Hallo __user__,\n\nKlik op de link hier beneden om je wachtwoord te resetten.\n\n__url__\n\nBedankt.",
+ "email-sent": "E-mail is verzonden",
+ "email-verifyEmail-subject": "Verifieer je e-mailadres op __siteName__",
+ "email-verifyEmail-text": "Hallo __user__,\n\nOm je e-mail te verifiëren vragen we je om op de link hieronder te drukken.\n\n__url__\n\nBedankt.",
+ "enable-wip-limit": "Activeer WIP limiet",
+ "error-board-doesNotExist": "Dit bord bestaat niet.",
+ "error-board-notAdmin": "Je moet een administrator zijn van dit bord om dat te doen.",
+ "error-board-notAMember": "Je moet een lid zijn van dit bord om dat te doen.",
+ "error-json-malformed": "JSON format klopt niet",
+ "error-json-schema": "De JSON data bevat niet de juiste informatie in de juiste format",
+ "error-list-doesNotExist": "Deze lijst bestaat niet",
+ "error-user-doesNotExist": "Deze gebruiker bestaat niet",
+ "error-user-notAllowSelf": "Je kan jezelf niet uitnodigen",
+ "error-user-notCreated": "Deze gebruiker is niet aangemaakt",
+ "error-username-taken": "Deze gebruikersnaam is al bezet",
+ "error-email-taken": "Deze e-mail is al eerder gebruikt",
+ "export-board": "Exporteer bord",
+ "filter": "Filter",
+ "filter-cards": "Filter kaarten",
+ "filter-clear": "Reset filter",
+ "filter-no-label": "Geen label",
+ "filter-no-member": "Geen lid",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter staat aan",
+ "filter-on-desc": "Je bent nu kaarten aan het filteren op dit bord. Klik hier om het filter te wijzigen.",
+ "filter-to-selection": "Filter zoals selectie",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Volledige naam",
+ "header-logo-title": "Ga terug naar jouw borden pagina.",
+ "hide-system-messages": "Verberg systeemberichten",
+ "headerBarCreateBoardPopup-title": "Bord aanmaken",
+ "home": "Voorpagina",
+ "import": "Importeer",
+ "link": "Link",
+ "import-board": "Importeer bord",
+ "import-board-c": "Importeer bord",
+ "import-board-title-trello": "Importeer bord van Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Het geïmporteerde bord verwijdert alle data op het huidige bord, om het daarna te vervangen.",
+ "from-trello": "Van Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "Op jouw Trello bord, ga naar 'Menu', dan naar 'Meer', 'Print en Exporteer', 'Exporteer JSON', en kopieer de tekst.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Plak geldige JSON data hier",
+ "import-map-members": "Breng leden in kaart",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Breng leden overzicht tevoorschijn",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Versie",
+ "initials": "Initialen",
+ "invalid-date": "Ongeldige datum",
+ "invalid-time": "Ongeldige tijd",
+ "invalid-user": "Ongeldige gebruiker",
+ "joined": "doet nu mee met",
+ "just-invited": "Je bent zojuist uitgenodigd om mee toen doen met dit bord",
+ "keyboard-shortcuts": "Toetsenbord snelkoppelingen",
+ "label-create": "Label aanmaken",
+ "label-default": "%s label (standaard)",
+ "label-delete-pop": "Je kan het niet ongedaan maken. Deze actie zal de label van alle kaarten verwijderen, en de feed.",
+ "labels": "Labels",
+ "language": "Taal",
+ "last-admin-desc": "Je kan de permissies niet veranderen omdat er maar een administrator is.",
+ "leave-board": "Verlaat bord",
+ "leave-board-pop": "Weet u zeker dat u __boardTitle__ wilt verlaten? U wordt verwijderd van alle kaarten binnen dit bord",
+ "leaveBoardPopup-title": "Bord verlaten?",
+ "link-card": "Link naar deze kaart",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Verplaats alle kaarten in deze lijst",
+ "list-select-cards": "Selecteer alle kaarten in deze lijst",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Lijst acties",
+ "swimlaneActionPopup-title": "Swimlane handelingen",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Importeer een Trello kaart",
+ "listMorePopup-title": "Meer",
+ "link-list": "Link naar deze lijst",
+ "list-delete-pop": "Alle acties zullen verwijderd worden van de activiteiten feed, en je zult deze niet meer kunnen herstellen. Je kan deze actie niet ongedaan maken.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lijsten",
+ "swimlanes": "Swimlanes",
+ "log-out": "Uitloggen",
+ "log-in": "Inloggen",
+ "loginPopup-title": "Inloggen",
+ "memberMenuPopup-title": "Instellingen van leden",
+ "members": "Leden",
+ "menu": "Menu",
+ "move-selection": "Verplaats selectie",
+ "moveCardPopup-title": "Verplaats kaart",
+ "moveCardToBottom-title": "Verplaats naar beneden",
+ "moveCardToTop-title": "Verplaats naar boven",
+ "moveSelectionPopup-title": "Verplaats selectie",
+ "multi-selection": "Multi-selectie",
+ "multi-selection-on": "Multi-selectie staat aan",
+ "muted": "Stil",
+ "muted-info": "Je zal nooit meer geïnformeerd worden bij veranderingen in dit bord.",
+ "my-boards": "Mijn Borden",
+ "name": "Naam",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Geen resultaten",
+ "normal": "Normaal",
+ "normal-desc": "Kan de kaarten zien en wijzigen. Kan de instellingen niet wijzigen.",
+ "not-accepted-yet": "Uitnodiging niet geaccepteerd",
+ "notify-participate": "Ontvang updates van elke kaart die je hebt gemaakt of lid van bent",
+ "notify-watch": "Ontvang updates van elke bord, lijst of kaart die je bekijkt.",
+ "optional": "optioneel",
+ "or": "of",
+ "page-maybe-private": "Deze pagina is privé. Je kan het bekijken door <a href='%s'>in te loggen</a>.",
+ "page-not-found": "Pagina niet gevonden.",
+ "password": "Wachtwoord",
+ "paste-or-dragdrop": "Om te plakken, of slepen & neer te laten (alleen afbeeldingen)",
+ "participating": "Deelnemen",
+ "preview": "Voorbeeld",
+ "previewAttachedImagePopup-title": "Voorbeeld",
+ "previewClipboardImagePopup-title": "Voorbeeld",
+ "private": "Privé",
+ "private-desc": "Dit bord is privé. Alleen mensen die toegevoegd zijn aan het bord kunnen het bekijken en wijzigen.",
+ "profile": "Profiel",
+ "public": "Publiek",
+ "public-desc": "Dit bord is publiek. Het is zichtbaar voor iedereen met de link en zal tevoorschijn komen op zoekmachines zoals Google. Alleen mensen die toegevoegd zijn kunnen het bord wijzigen.",
+ "quick-access-description": "Maak een bord favoriet om een snelkoppeling toe te voegen aan deze balk.",
+ "remove-cover": "Verwijder Cover",
+ "remove-from-board": "Verwijder van bord",
+ "remove-label": "Verwijder label",
+ "listDeletePopup-title": "Verwijder lijst?",
+ "remove-member": "Verwijder lid",
+ "remove-member-from-card": "Verwijder van kaart",
+ "remove-member-pop": "Verwijder __name__ (__username__) van __boardTitle__? Het lid zal verwijderd worden van alle kaarten op dit bord, en zal een notificatie ontvangen.",
+ "removeMemberPopup-title": "Verwijder lid?",
+ "rename": "Hernoem",
+ "rename-board": "Hernoem bord",
+ "restore": "Herstel",
+ "save": "Opslaan",
+ "search": "Zoek",
+ "rules": "Rules",
+ "search-cards": "Zoeken in kaart titels en omschrijvingen op dit bord",
+ "search-example": "Tekst om naar te zoeken?",
+ "select-color": "Selecteer kleur",
+ "set-wip-limit-value": "Zet een limiet voor het maximaal aantal taken in deze lijst",
+ "setWipLimitPopup-title": "Zet een WIP limiet",
+ "shortcut-assign-self": "Wijs jezelf toe aan huidige kaart",
+ "shortcut-autocomplete-emoji": "Emojis automatisch aanvullen",
+ "shortcut-autocomplete-members": "Leden automatisch aanvullen",
+ "shortcut-clear-filters": "Alle filters vrijmaken",
+ "shortcut-close-dialog": "Sluit dialoog",
+ "shortcut-filter-my-cards": "Filter mijn kaarten",
+ "shortcut-show-shortcuts": "Haal lijst met snelkoppelingen tevoorschijn",
+ "shortcut-toggle-filterbar": "Schakel Filter Zijbalk",
+ "shortcut-toggle-sidebar": "Schakel Bord Zijbalk",
+ "show-cards-minimum-count": "Laat het aantal kaarten zien wanneer de lijst meer kaarten heeft dan",
+ "sidebar-open": "Open Zijbalk",
+ "sidebar-close": "Sluit Zijbalk",
+ "signupPopup-title": "Maak een account aan",
+ "star-board-title": "Klik om het bord toe te voegen aan favorieten, waarna hij aan de bovenbalk tevoorschijn komt.",
+ "starred-boards": "Favoriete Borden",
+ "starred-boards-description": "Favoriete borden komen tevoorschijn aan de bovenbalk.",
+ "subscribe": "Abonneer",
+ "team": "Team",
+ "this-board": "dit bord",
+ "this-card": "deze kaart",
+ "spent-time-hours": "Gespendeerde tijd (in uren)",
+ "overtime-hours": "Overwerk (in uren)",
+ "overtime": "Overwerk",
+ "has-overtime-cards": "Heeft kaarten met overwerk",
+ "has-spenttime-cards": "Heeft tijd besteed aan kaarten",
+ "time": "Tijd",
+ "title": "Titel",
+ "tracking": "Volgen",
+ "tracking-info": "Je wordt op de hoogte gesteld als er veranderingen zijn aan de kaarten waar je lid of maker van bent.",
+ "type": "Type",
+ "unassign-member": "Lid ontkennen",
+ "unsaved-description": "Je hebt een niet opgeslagen beschrijving.",
+ "unwatch": "Niet bekijken",
+ "upload": "Upload",
+ "upload-avatar": "Upload een avatar",
+ "uploaded-avatar": "Avatar is geüpload",
+ "username": "Gebruikersnaam",
+ "view-it": "Bekijk het",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Bekijk",
+ "watching": "Bekijken",
+ "watching-info": "Je zal op de hoogte worden gesteld als er een verandering gebeurt op dit bord.",
+ "welcome-board": "Welkom Bord",
+ "welcome-swimlane": "Mijlpaal 1",
+ "welcome-list1": "Basis",
+ "welcome-list2": "Geadvanceerd",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Wat wil je doen?",
+ "wipLimitErrorPopup-title": "Ongeldige WIP limiet",
+ "wipLimitErrorPopup-dialog-pt1": "Het aantal taken in deze lijst is groter dan de gedefinieerde WIP limiet ",
+ "wipLimitErrorPopup-dialog-pt2": "Verwijder een aantal taken uit deze lijst, of zet de WIP limiet hoger",
+ "admin-panel": "Administrator paneel",
+ "settings": "Instellingen",
+ "people": "Mensen",
+ "registration": "Registratie",
+ "disable-self-registration": "Schakel zelf-registratie uit",
+ "invite": "Uitnodigen",
+ "invite-people": "Nodig mensen uit",
+ "to-boards": "Voor bord(en)",
+ "email-addresses": "E-mailadressen",
+ "smtp-host-description": "Het adres van de SMTP server die e-mails zal versturen.",
+ "smtp-port-description": "De poort van de SMTP server wordt gebruikt voor uitgaande e-mails.",
+ "smtp-tls-description": "Gebruik TLS ondersteuning voor SMTP server.",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Poort",
+ "smtp-username": "Gebruikersnaam",
+ "smtp-password": "Wachtwoord",
+ "smtp-tls": "TLS ondersteuning",
+ "send-from": "Van",
+ "send-smtp-test": "Verzend een email naar uzelf",
+ "invitation-code": "Uitnodigings code",
+ "email-invite-register-subject": "__inviter__ heeft je een uitnodiging gestuurd",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "U heeft met succes een email verzonden",
+ "error-invitation-code-not-exist": "Uitnodigings code bestaat niet",
+ "error-notAuthorized": "Je bent niet toegestaan om deze pagina te bekijken.",
+ "outgoing-webhooks": "Uitgaande Webhooks",
+ "outgoingWebhooksPopup-title": "Uitgaande Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "Nieuwe webhook",
+ "no-name": "(Onbekend)",
+ "Node_version": "Node versie",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Vrij Geheugen",
+ "OS_Loadavg": "OS Gemiddelde Lading",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Versie",
+ "OS_Totalmem": "OS Totaal Geheugen",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "uren",
+ "minutes": "minuten",
+ "seconds": "seconden",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Ja",
+ "no": "Nee",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Sta E-mailadres wijzigingen toe",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Gemaakt op",
+ "verified": "Geverifieerd",
+ "active": "Actief",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Toevoegen",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/oc.i18n.json b/i18n/oc.i18n.json
index 1be0f3f5..8f14c8b4 100644
--- a/i18n/oc.i18n.json
+++ b/i18n/oc.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Acceptar",
- "act-activity-notify": "Notificacion d'activitat",
- "act-addAttachment": "as apondut una pèça joncha __astacament__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-deleteAttachment": "as tirat una pèça joncha __astacament__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addSubtask": "as apondut una jos-tasca __subtask__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addLabel": "as apondut una etiqueta__label__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addedLabel": "as apondut una etiqueta__label__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-removeLabel": "as tirat l'etiqueta__label__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-removedLabel": "as tirat l'etiqueta__label__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addChecklist": "as apondut la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addChecklistItem": " as apondut l'element __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-removeChecklist": "as tirat la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-removeChecklistItem": " as tirat l'element __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-checkedItem": "as croiat __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-uncheckedItem": "as descroiar __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-completeChecklist": "as completat la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-uncompleteChecklist": "as rendut incomplet la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-addComment": "as comentat la carta __card__: __comment__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "as creat lo tablèu __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "as creat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "as apondut la tièra __list__ al tablèu __board__",
- "act-addBoardMember": "as apondut un participant __member__ al tablèu __board__",
- "act-archivedBoard": "Lo tablèu __board__ es estat desplaçar cap a Archius",
- "act-archivedCard": "La carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archiu",
- "act-archivedList": "La tièra __list__ del corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archius",
- "act-archivedSwimlane": "Lo corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archius",
- "act-importBoard": "as importat lo tablèu __board__",
- "act-importCard": "as importat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-importList": "as importat la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-joinMember": "as apondut un participant __member__ a la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "as desplaçat la carta __card__ de la tièra __oldList__ del corredor __oldSwimlane__ del tablèu __oldBoard__ cap a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-removeBoardMember": "as tirat lo participant __member__ del tablèu __board__",
- "act-restoredCard": "as restorat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-unjoinMember": "as tirat lo participant __member__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "act-withBoardTitle": "__tablèu__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Accions",
- "activities": "Activitats",
- "activity": "Activitat",
- "activity-added": "as apondut %s a %s",
- "activity-archived": "%s desplaçat cap a Archius",
- "activity-attached": "as ligat %s a %s",
- "activity-created": "as creat %s",
- "activity-customfield-created": "as creat lo camp personalizat %s",
- "activity-excluded": "as exclús %s de %s",
- "activity-imported": "as importat %s cap a %s dempuèi %s",
- "activity-imported-board": "as importat %s dempuèi %s",
- "activity-joined": "as rejonch %s",
- "activity-moved": "as desplaçat %s dempuèi %s cap a %s",
- "activity-on": "sus %s",
- "activity-removed": "as tirat %s de %s",
- "activity-sent": "as mandat %s cap a %s",
- "activity-unjoined": "as quitat %s",
- "activity-subtask-added": "as apondut una jos-tasca a %s",
- "activity-checked-item": "as croiat %s dins la checklist %s de %s",
- "activity-unchecked-item": "as descroiat %s dins la checklist %s de %s",
- "activity-checklist-added": "as apondut a checklist a %s",
- "activity-checklist-removed": "as tirat la checklist de %s",
- "activity-checklist-completed": "as acabat la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "activity-checklist-uncompleted": "as rendut incomplet la checklist %s de %s",
- "activity-checklist-item-added": "as apondut un element a la checklist '%s' dins %s",
- "activity-checklist-item-removed": "as tirat un element a la checklist '%s' dins %s",
- "add": "Apondre",
- "activity-checked-item-card": "as croiat %s dins la checklist %s",
- "activity-unchecked-item-card": "as descroiat %s dins la checklist %s",
- "activity-checklist-completed-card": "as acabat la checklist__checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
- "activity-checklist-uncompleted-card": "as rendut incomplet la checklist %s",
- "add-attachment": "Apondre una pèça joncha",
- "add-board": "Apondre un tablèu",
- "add-card": "Apondre una carta",
- "add-swimlane": "Apondre un corredor",
- "add-subtask": "Apondre una jos-tasca",
- "add-checklist": "Apondre una checklist",
- "add-checklist-item": "Apondre un element a la checklist",
- "add-cover": "Apondre una cobèrta",
- "add-label": "Apondre una etiqueta",
- "add-list": "Apondre una tièra",
- "add-members": "Apondre un participant",
- "added": "Apondut lo",
- "addMemberPopup-title": "Participants",
- "admin": "Administartor",
- "admin-desc": "As lo drech de legir e modificar las cartas, tirar de participants, e modificar las opcions del tablèu.",
- "admin-announcement": "Anóncia",
- "admin-announcement-active": "Activar l'anóncia globala",
- "admin-announcement-title": "Anóncia de l'administrator",
- "all-boards": "Totes los tablèus",
- "and-n-other-card": "E __comptar__ carta de mai",
- "and-n-other-card_plural": "E __comptar__ cartas de mai",
- "apply": "Aplicar",
- "app-is-offline": "Cargament, vos cal esperar. Refrescar la pagina vos va far perdre vòstre trabalh. Se lo cargament es tròp long, vos cal agachar se lo servidor es pas blocat/arrestat.",
- "archive": "Archivar",
- "archive-all": "Archivar tot",
- "archive-board": "Archivar lo tablèu",
- "archive-card": "Archivar la carta",
- "archive-list": "Archivar la tièra",
- "archive-swimlane": "Archivar lo corredor",
- "archive-selection": "Archivar la seleccion",
- "archiveBoardPopup-title": "Archivar lo tablèu?",
- "archived-items": "Archius",
- "archived-boards": "Tablèu archivat",
- "restore-board": "Restaurar lo tablèu",
- "no-archived-boards": "Pas de tablèu archivat.",
- "archives": "Archivar",
- "template": "Modèl",
- "templates": "Modèls",
- "assign-member": "Affectar un participant",
- "attached": "jónher",
- "attachment": "pèça joncha",
- "attachment-delete-pop": "Tirar una pèça joncha es defenitiu.",
- "attachmentDeletePopup-title": "Tirar la pèça joncha ?",
- "attachments": "Pèças jonchas",
- "auto-watch": "Survelhar automaticament lo tablèu un còp creat",
- "avatar-too-big": "L'imatge es tròp pesuc (70KB max)",
- "back": "Tornar",
- "board-change-color": "Cambiar de color",
- "board-nb-stars": "%s estèla",
- "board-not-found": "Tablèu pas trapat",
- "board-private-info": "Aqueste tablèu serà <strong>privat</strong>.",
- "board-public-info": "Aqueste tablèu serà <strong>public</strong>.",
- "boardChangeColorPopup-title": "Cambiar lo fons del tablèu",
- "boardChangeTitlePopup-title": "Tornar nomenar lo tablèu",
- "boardChangeVisibilityPopup-title": "Cambiar la visibilitat",
- "boardChangeWatchPopup-title": "Cambiar lo seguit",
- "boardMenuPopup-title": "Opcions del tablèu",
- "boards": "Tablèus",
- "board-view": "Presentacion del tablèu",
- "board-view-cal": "Calendièr",
- "board-view-swimlanes": "Corredor",
- "board-view-lists": "Tièras",
- "bucket-example": "Coma \"Tota la tièra\" per exemple",
- "cancel": "Tornar",
- "card-archived": "Aquesta carta es desplaçada dins Archius",
- "board-archived": "Aqueste tablèu esdesplaçat dins Archius",
- "card-comments-title": "Aquesta carta a %s de comentaris.",
- "card-delete-notice": "Un còp tirat, pas de posibilitat de tornar enrè",
- "card-delete-pop": "Totes las accions van èsser quitadas del seguit d'activitat e poiretz pas mai utilizar aquesta carta.",
- "card-delete-suggest-archive": "Podètz desplaçar una carta dins Archius per la quitar del tablèu e gardar las activitats.",
- "card-due": "Esperat",
- "card-due-on": "Esperat lo",
- "card-spent": "Temps passat",
- "card-edit-attachments": "Cambiar las pèças jonchas",
- "card-edit-custom-fields": "Cambiar los camps personalizats",
- "card-edit-labels": "Cambiar los labèls",
- "card-edit-members": "Cambiar los participants",
- "card-labels-title": "Cambiar l'etiqueta de la carta.",
- "card-members-title": "Apondre o quitar de participants a la carta. ",
- "card-start": "Debuta",
- "card-start-on": "Debuta lo",
- "cardAttachmentsPopup-title": "Apondut dempuèi",
- "cardCustomField-datePopup-title": "Cambiar la data",
- "cardCustomFieldsPopup-title": "Cambiar los camps personalizats",
- "cardDeletePopup-title": "Suprimir la carta?",
- "cardDetailsActionsPopup-title": "Accions sus la carta",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Participants",
- "cardMorePopup-title": "Mai",
- "cardTemplatePopup-title": "Crear un modèl",
- "cards": "Cartas",
- "cards-count": "Cartas",
- "casSignIn": "Vos connectar amb CAS",
- "cardType-card": "Carta",
- "cardType-linkedCard": "Carta ligada",
- "cardType-linkedBoard": "Tablèu ligat",
- "change": "Cambiar",
- "change-avatar": "Cambiar la fòto",
- "change-password": "Cambiar lo mot de Santa-Clara",
- "change-permissions": "Cambiar las permissions",
- "change-settings": "Cambiar los paramètres",
- "changeAvatarPopup-title": "Cambiar la fòto",
- "changeLanguagePopup-title": "Cambiar la lenga",
- "changePasswordPopup-title": "Cambiar lo mot de Santa-Clara",
- "changePermissionsPopup-title": "Cambiar las permissions",
- "changeSettingsPopup-title": "Cambiar los paramètres",
- "subtasks": "Jos-tasca",
- "checklists": "Checklists",
- "click-to-star": "Apondre lo tablèu als favorits",
- "click-to-unstar": "Quitar lo tablèu dels favorits",
- "clipboard": "Copiar o far limpar",
- "close": "Tampar",
- "close-board": "Tampar lo tablèu",
- "close-board-pop": "Podètz tornar activar lo tablèu dempuèi la pagina d'acuèlh.",
- "color-black": "negre",
- "color-blue": "blau",
- "color-crimson": "purple clar",
- "color-darkgreen": "verd fonçat",
- "color-gold": "aur",
- "color-gray": "gris",
- "color-green": "verd",
- "color-indigo": "indi",
- "color-lime": "jaune clar",
- "color-magenta": "magenta",
- "color-mistyrose": "ròse clar",
- "color-navy": "blau marin",
- "color-orange": "irange",
- "color-paleturquoise": "turqués",
- "color-peachpuff": "persèc",
- "color-pink": "ròsa",
- "color-plum": "pruna",
- "color-purple": "violet",
- "color-red": "roge",
- "color-saddlebrown": "castanh",
- "color-silver": "argent",
- "color-sky": "blau clar",
- "color-slateblue": "blau lausa",
- "color-white": "blanc",
- "color-yellow": "jaune",
- "unset-color": "pas reglat",
- "comment": "Comentari",
- "comment-placeholder": "Escrire un comentari",
- "comment-only": "Comentari solament",
- "comment-only-desc": "Comentari sus las cartas solament.",
- "no-comments": "Pas cap de comentari",
- "no-comments-desc": "Podèts pas veire ni los comentaris ni las activitats",
- "computer": "Ordenator",
- "confirm-subtask-delete-dialog": "Sètz segur de voler quitar aquesta jos-tasca?",
- "confirm-checklist-delete-dialog": "Sètz segur de voler quitar aquesta checklist?",
- "copy-card-link-to-clipboard": "Còpia del ligam de la carta",
- "linkCardPopup-title": "Ligam de la carta",
- "searchElementPopup-title": "Cèrca",
- "copyCardPopup-title": "Còpia de la carta",
- "copyChecklistToManyCardsPopup-title": "Còpia del modèl de checklist cap a mai d'una carta",
- "copyChecklistToManyCardsPopup-instructions": "Un compte es estat creat per vos sus ",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Títol de la primièra carta\", \"description\":\"Descripcion de la primièra carta\"}, {\"title\":\"Títol de la segonda carta\",\"description\":\"Descripcion de la segonda carta\"},{\"title\":\"Títol de la darrièra carta\",\"description\":\"Descripcion de la darrièra carta\"} ]",
- "create": "Crear",
- "createBoardPopup-title": "Crear un tablèu",
- "chooseBoardSourcePopup-title": "Importar un tablèu",
- "createLabelPopup-title": "Crear una etiqueta",
- "createCustomField": "Crear un camp",
- "createCustomFieldPopup-title": "Crear un camp",
- "current": "actual",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Casa de croiar",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Tièra de causidas",
- "custom-field-dropdown-none": "(pas res)",
- "custom-field-dropdown-options": "Opcions de la tièra",
- "custom-field-dropdown-options-placeholder": "Apiejar sus \"Enter\" per apondre d'opcions",
- "custom-field-dropdown-unknown": "(desconegut)",
- "custom-field-number": "Nombre",
- "custom-field-text": "Tèxte",
- "custom-fields": "Camps personalizats",
- "date": "Data",
- "decline": "Refusar",
- "default-avatar": "Fòto per defaut",
- "delete": "Suprimir",
- "deleteCustomFieldPopup-title": "Tirar lo camp personalizat?",
- "deleteLabelPopup-title": "Tirar l'etiqueta?",
- "description": "Descripcion",
- "disambiguateMultiLabelPopup-title": "Precisar l'accion de l'etiqueta",
- "disambiguateMultiMemberPopup-title": "Precisar l'accion del participant",
- "discard": "Botar dins l'escobilha",
- "done": "Acabat",
- "download": "Telecargar",
- "edit": "Modificar",
- "edit-avatar": "Cambiar la fòto",
- "edit-profile": "Modificar lo perfil",
- "edit-wip-limit": "Modificar la WIP limit",
- "soft-wip-limit": "Leugièr WIP limit",
- "editCardStartDatePopup-title": "Cambiar la data de debuta",
- "editCardDueDatePopup-title": "Cambiar la data de fin",
- "editCustomFieldPopup-title": "Modificar los camps",
- "editCardSpentTimePopup-title": "Cambiar lo temp passat",
- "editLabelPopup-title": "Cambiar l'etiqueta",
- "editNotificationPopup-title": "Modificar la notificacion",
- "editProfilePopup-title": "Modificar lo perfil",
- "email": "Corrièl",
- "email-enrollAccount-subject": "Vòstre compte es ara activat pel sit __siteName__",
- "email-enrollAccount-text": "Adieu __user__,\n\nPer comença d'utilizar lo servici, vos cal clicar sul ligam.\n\n__url__\n\nMercé.",
- "email-fail": "Pas possible de mandar lo corrièl",
- "email-fail-text": "Error per mandar lo corrièl",
- "email-invalid": "L'adreça corrièl es pas valida",
- "email-invite": "Convidar per corrièl",
- "email-invite-subject": "__inviter__ vos as mandat un convit",
- "email-invite-text": "Car __user__,\n\n__inviter__ vos a convidat per jónher lo tablèu \"__board__\".\n\nVos cal clicar sul ligam:\n\n__url__\n\nMercé.",
- "email-resetPassword-subject": "Tornar inicializar vòstre mot de Santa-Clara de sit __siteName__",
- "email-resetPassword-text": "Adieu __user__,\n\nPer tornar inicializar vòstre mot de Santa-Clara vos cal clicar sul ligam :\n\n__url__\n\nMercé.",
- "email-sent": "Mail mandat",
- "email-verifyEmail-subject": "Vos cal verificar vòstra adreça corrièl del sit __siteName__",
- "email-verifyEmail-text": "Adieu __user__,\n\nPer verificar vòstra adreça corrièl, vos cal clicar sul ligam :\n\n__url__\n\nMercé.",
- "enable-wip-limit": "Activar la WIP limit",
- "error-board-doesNotExist": "Aqueste tablèu existís pas",
- "error-board-notAdmin": "Devètz èsser un administrator del tablèu per far aquò ",
- "error-board-notAMember": "Devètz èsser un participant del tablèu per far aquò",
- "error-json-malformed": "Vòstre tèxte es pas valid JSON",
- "error-json-schema": "Vòstre JSON es pas al format correct ",
- "error-list-doesNotExist": "Aqueste tièra existís pas",
- "error-user-doesNotExist": "Aqueste utilizator existís pas",
- "error-user-notAllowSelf": "Vos podètz pas convidar vautres meteisses",
- "error-user-notCreated": "Aqueste utilizator es pas encara creat",
- "error-username-taken": "Lo nom es ja pres",
- "error-email-taken": "Lo corrièl es ja pres ",
- "export-board": "Exportar lo tablèu",
- "filter": "Filtre",
- "filter-cards": "Filtre cartas",
- "filter-clear": "Escafar lo filtre",
- "filter-no-label": "Pas cap d'etiqueta",
- "filter-no-member": "Pas cap de participant",
- "filter-no-custom-fields": "Pas de camp personalizat",
- "filter-on": "Lo filtre es activat",
- "filter-on-desc": "Filtratz las cartas dins aqueste tablèu. Picar aquí per editar los filtres",
- "filter-to-selection": "Filtrar la seleccion",
- "advanced-filter-label": "Filtre avançat",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Nom complet",
- "header-logo-title": "Retorn a vòstra pagina de tablèus",
- "hide-system-messages": "Amagar los messatges sistèm",
- "headerBarCreateBoardPopup-title": "Crear un tablèu",
- "home": "Acuèlh",
- "import": "Importar",
- "link": "Ligar",
- "import-board": "Importar un tablèu",
- "import-board-c": "Importar un tablèu",
- "import-board-title-trello": "Importar un tablèu dempuèi Trello",
- "import-board-title-wekan": "Importar un tablèu dempuèi un export passat",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Importar lo tablèu va quitar totes las donadas del tablèu e lo va remplaçar amb las donadas del tablèu importat.",
- "from-trello": "Dempuèi Trello",
- "from-wekan": "Dempuèi un export passat",
- "import-board-instruction-trello": "Dins vòstre tablèu Trello, vos cal anar dins \"Menut\", puèi \"Mai\", \"Export\", \"Export JSON\", e copiar lo tèxte balhat.",
- "import-board-instruction-wekan": "Dins vòstre tablèu, vos cal anar dins \"Menut\", puèi \"Exportar lo tablèu\", e de copiar lo tèxte del fichièr telecargat.",
- "import-board-instruction-about-errors": "Se avètz de errors al moment d'importar un tablèu, es possible que l'importacion as fonccionat, lo tablèu es belèu a la pagina \"Totes los tablèus\".",
- "import-json-placeholder": "Pegar las donadas del fichièr JSON aicí",
- "import-map-members": "Mapa dels participants",
- "import-members-map": "Lo tablèu qu'avètz importat as ja de participants, vos cal far la migracion amb los utilizators actual",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Seleccionar un participant",
- "info": "Vesion",
- "initials": "Iniciala",
- "invalid-date": "Data invalida",
- "invalid-time": "Temps invalid",
- "invalid-user": "Participant invalid",
- "joined": "Jónher",
- "just-invited": "Sètz just convidat dins aqueste tablèu",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Crear una etiqueta",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Etiquetas",
- "language": "Lenga",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Ligam per aquesta carta",
- "list-archive-cards": "Mandar totas las cartas d'aquesta tièra dins Archius",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Mandar totas las cartas dins aquesta tièra",
- "list-select-cards": "Seleccionar totas las cartas dins aquesta tièra",
- "set-color-list": "Set Color",
- "listActionPopup-title": "Tièra de las accions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Importar una carta de Trello",
- "listMorePopup-title": "Mai",
- "link-list": "Ligam d'aquesta tièra",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Tièras",
- "swimlanes": "Corredor",
- "log-out": "Desconnexion",
- "log-in": "Connexion",
- "loginPopup-title": "Connexion",
- "memberMenuPopup-title": "Paramètres dels participants",
- "members": "Participants",
- "menu": "Menut",
- "move-selection": "Bolegar la seleccion",
- "moveCardPopup-title": "Bolegar la carta",
- "moveCardToBottom-title": "Bolegar cap al bas",
- "moveCardToTop-title": "Bolegar cap al naut",
- "moveSelectionPopup-title": "Bolegar la seleccion",
- "multi-selection": "Multi-seleccion",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Silenciós",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "Mon tablèu",
- "name": "Nom",
- "no-archived-cards": "Pas cap de carta dins Archius",
- "no-archived-lists": "Pas cap de tièra dins Archius",
- "no-archived-swimlanes": "Pas cap de corredor dins Archius",
- "no-results": "Pas brica de resultat",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "opcional",
- "or": "o",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Pagina pas trapada",
- "password": "Mot de Santa-Clara",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Apercebut",
- "previewAttachedImagePopup-title": "Apercebut",
- "previewClipboardImagePopup-title": "Apercebut",
- "private": "Privat",
- "private-desc": "Aqueste tablèu es privat. Solament las personas apondudas a aquete tablèu lo pòdon veire e editar.",
- "profile": "Perfil",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Quitar lo tablèu",
- "remove-label": "Quitar l'etiqueta",
- "listDeletePopup-title": "Quitar la tièra ?",
- "remove-member": "Quitar lo participant",
- "remove-member-from-card": "Quitar aquesta carta",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Tornar nomenar",
- "rename-board": "Tornar nomenar lo tablèu",
- "restore": "Restore",
- "save": "Salvar",
- "search": "Cèrca",
- "rules": "Règlas",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Color causida",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Tampar lo dialòg",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Crear un compte",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Còla",
- "this-board": "Aqueste tablèu",
- "this-card": "aquesta carta",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Temps",
- "title": "Títol",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Mena",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Telecargar",
- "upload-avatar": "Telecargar un avatar",
- "uploaded-avatar": "Avatar telecargat",
- "username": "Nom d’utilizaire",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Seguit",
- "watching": "Agachat",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Tablèu de benvenguda",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "Lista dels modèls",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Qué volètz far ?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Interfàcia d’admin",
- "settings": "Paramètres",
- "people": "Personas",
- "registration": "Inscripcion",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Convidar",
- "invite-people": "Convidat",
- "to-boards": "To board(s)",
- "email-addresses": "Adreça corrièl",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "Òst SMTP",
- "smtp-port": "Pòrt SMTP",
- "smtp-username": "Nom d’utilizaire",
- "smtp-password": "Mot de Santa-Clara",
- "smtp-tls": "Compatibilitat TLS",
- "send-from": "De",
- "send-smtp-test": "Se mandar un corrièl d'ensag",
- "invitation-code": "Còde de convit",
- "email-invite-register-subject": "__inviter__ vos a mandat un convit",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "As capitat de mandar un corrièl",
- "error-invitation-code-not-exist": "Lo còde de convit existís pas",
- "error-notAuthorized": "Sès pas autorizat a agachar aquesta pagina",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Desconegut)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "jorns",
- "hours": "oras",
- "minutes": "minutas",
- "seconds": "segondas",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Òc",
- "no": "Non",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verificat",
- "active": "Avtivat",
- "card-received": "Recebut",
- "card-received-on": "Received on",
- "card-end": "Fin",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Color seleccionada",
- "setCardActionsColorPopup-title": "Causir una color",
- "setSwimlaneColorPopup-title": "Causir una color",
- "setListColorPopup-title": "Causir una color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Suprimir lo tablèu ?",
- "delete-board": "Tablèu suprimit",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Desplaçar cap a Archius",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Apondre",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Acceptar",
+ "act-activity-notify": "Notificacion d'activitat",
+ "act-addAttachment": "as apondut una pèça joncha __astacament__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-deleteAttachment": "as tirat una pèça joncha __astacament__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addSubtask": "as apondut una jos-tasca __subtask__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addLabel": "as apondut una etiqueta__label__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addedLabel": "as apondut una etiqueta__label__ de la carta __card__ a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-removeLabel": "as tirat l'etiqueta__label__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-removedLabel": "as tirat l'etiqueta__label__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addChecklist": "as apondut la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addChecklistItem": " as apondut l'element __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-removeChecklist": "as tirat la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-removeChecklistItem": " as tirat l'element __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-checkedItem": "as croiat __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-uncheckedItem": "as descroiar __checklistItem__ de la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-completeChecklist": "as completat la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-uncompleteChecklist": "as rendut incomplet la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-addComment": "as comentat la carta __card__: __comment__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "as creat lo tablèu __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "as creat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "as apondut la tièra __list__ al tablèu __board__",
+ "act-addBoardMember": "as apondut un participant __member__ al tablèu __board__",
+ "act-archivedBoard": "Lo tablèu __board__ es estat desplaçar cap a Archius",
+ "act-archivedCard": "La carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archiu",
+ "act-archivedList": "La tièra __list__ del corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archius",
+ "act-archivedSwimlane": "Lo corredor __swimlane__ del tablèu __board__ es estat desplaçar cap a Archius",
+ "act-importBoard": "as importat lo tablèu __board__",
+ "act-importCard": "as importat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-importList": "as importat la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-joinMember": "as apondut un participant __member__ a la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "as desplaçat la carta __card__ de la tièra __oldList__ del corredor __oldSwimlane__ del tablèu __oldBoard__ cap a la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-removeBoardMember": "as tirat lo participant __member__ del tablèu __board__",
+ "act-restoredCard": "as restorat la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-unjoinMember": "as tirat lo participant __member__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "act-withBoardTitle": "__tablèu__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Accions",
+ "activities": "Activitats",
+ "activity": "Activitat",
+ "activity-added": "as apondut %s a %s",
+ "activity-archived": "%s desplaçat cap a Archius",
+ "activity-attached": "as ligat %s a %s",
+ "activity-created": "as creat %s",
+ "activity-customfield-created": "as creat lo camp personalizat %s",
+ "activity-excluded": "as exclús %s de %s",
+ "activity-imported": "as importat %s cap a %s dempuèi %s",
+ "activity-imported-board": "as importat %s dempuèi %s",
+ "activity-joined": "as rejonch %s",
+ "activity-moved": "as desplaçat %s dempuèi %s cap a %s",
+ "activity-on": "sus %s",
+ "activity-removed": "as tirat %s de %s",
+ "activity-sent": "as mandat %s cap a %s",
+ "activity-unjoined": "as quitat %s",
+ "activity-subtask-added": "as apondut una jos-tasca a %s",
+ "activity-checked-item": "as croiat %s dins la checklist %s de %s",
+ "activity-unchecked-item": "as descroiat %s dins la checklist %s de %s",
+ "activity-checklist-added": "as apondut a checklist a %s",
+ "activity-checklist-removed": "as tirat la checklist de %s",
+ "activity-checklist-completed": "as acabat la checklist __checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "activity-checklist-uncompleted": "as rendut incomplet la checklist %s de %s",
+ "activity-checklist-item-added": "as apondut un element a la checklist '%s' dins %s",
+ "activity-checklist-item-removed": "as tirat un element a la checklist '%s' dins %s",
+ "add": "Apondre",
+ "activity-checked-item-card": "as croiat %s dins la checklist %s",
+ "activity-unchecked-item-card": "as descroiat %s dins la checklist %s",
+ "activity-checklist-completed-card": "as acabat la checklist__checklist__ de la carta __card__ de la tièra __list__ del corredor __swimlane__ del tablèu __board__",
+ "activity-checklist-uncompleted-card": "as rendut incomplet la checklist %s",
+ "add-attachment": "Apondre una pèça joncha",
+ "add-board": "Apondre un tablèu",
+ "add-card": "Apondre una carta",
+ "add-swimlane": "Apondre un corredor",
+ "add-subtask": "Apondre una jos-tasca",
+ "add-checklist": "Apondre una checklist",
+ "add-checklist-item": "Apondre un element a la checklist",
+ "add-cover": "Apondre una cobèrta",
+ "add-label": "Apondre una etiqueta",
+ "add-list": "Apondre una tièra",
+ "add-members": "Apondre un participant",
+ "added": "Apondut lo",
+ "addMemberPopup-title": "Participants",
+ "admin": "Administartor",
+ "admin-desc": "As lo drech de legir e modificar las cartas, tirar de participants, e modificar las opcions del tablèu.",
+ "admin-announcement": "Anóncia",
+ "admin-announcement-active": "Activar l'anóncia globala",
+ "admin-announcement-title": "Anóncia de l'administrator",
+ "all-boards": "Totes los tablèus",
+ "and-n-other-card": "E __comptar__ carta de mai",
+ "and-n-other-card_plural": "E __comptar__ cartas de mai",
+ "apply": "Aplicar",
+ "app-is-offline": "Cargament, vos cal esperar. Refrescar la pagina vos va far perdre vòstre trabalh. Se lo cargament es tròp long, vos cal agachar se lo servidor es pas blocat/arrestat.",
+ "archive": "Archivar",
+ "archive-all": "Archivar tot",
+ "archive-board": "Archivar lo tablèu",
+ "archive-card": "Archivar la carta",
+ "archive-list": "Archivar la tièra",
+ "archive-swimlane": "Archivar lo corredor",
+ "archive-selection": "Archivar la seleccion",
+ "archiveBoardPopup-title": "Archivar lo tablèu?",
+ "archived-items": "Archius",
+ "archived-boards": "Tablèu archivat",
+ "restore-board": "Restaurar lo tablèu",
+ "no-archived-boards": "Pas de tablèu archivat.",
+ "archives": "Archivar",
+ "template": "Modèl",
+ "templates": "Modèls",
+ "assign-member": "Affectar un participant",
+ "attached": "jónher",
+ "attachment": "pèça joncha",
+ "attachment-delete-pop": "Tirar una pèça joncha es defenitiu.",
+ "attachmentDeletePopup-title": "Tirar la pèça joncha ?",
+ "attachments": "Pèças jonchas",
+ "auto-watch": "Survelhar automaticament lo tablèu un còp creat",
+ "avatar-too-big": "L'imatge es tròp pesuc (70KB max)",
+ "back": "Tornar",
+ "board-change-color": "Cambiar de color",
+ "board-nb-stars": "%s estèla",
+ "board-not-found": "Tablèu pas trapat",
+ "board-private-info": "Aqueste tablèu serà <strong>privat</strong>.",
+ "board-public-info": "Aqueste tablèu serà <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Cambiar lo fons del tablèu",
+ "boardChangeTitlePopup-title": "Tornar nomenar lo tablèu",
+ "boardChangeVisibilityPopup-title": "Cambiar la visibilitat",
+ "boardChangeWatchPopup-title": "Cambiar lo seguit",
+ "boardMenuPopup-title": "Opcions del tablèu",
+ "boards": "Tablèus",
+ "board-view": "Presentacion del tablèu",
+ "board-view-cal": "Calendièr",
+ "board-view-swimlanes": "Corredor",
+ "board-view-lists": "Tièras",
+ "bucket-example": "Coma \"Tota la tièra\" per exemple",
+ "cancel": "Tornar",
+ "card-archived": "Aquesta carta es desplaçada dins Archius",
+ "board-archived": "Aqueste tablèu esdesplaçat dins Archius",
+ "card-comments-title": "Aquesta carta a %s de comentaris.",
+ "card-delete-notice": "Un còp tirat, pas de posibilitat de tornar enrè",
+ "card-delete-pop": "Totes las accions van èsser quitadas del seguit d'activitat e poiretz pas mai utilizar aquesta carta.",
+ "card-delete-suggest-archive": "Podètz desplaçar una carta dins Archius per la quitar del tablèu e gardar las activitats.",
+ "card-due": "Esperat",
+ "card-due-on": "Esperat lo",
+ "card-spent": "Temps passat",
+ "card-edit-attachments": "Cambiar las pèças jonchas",
+ "card-edit-custom-fields": "Cambiar los camps personalizats",
+ "card-edit-labels": "Cambiar los labèls",
+ "card-edit-members": "Cambiar los participants",
+ "card-labels-title": "Cambiar l'etiqueta de la carta.",
+ "card-members-title": "Apondre o quitar de participants a la carta. ",
+ "card-start": "Debuta",
+ "card-start-on": "Debuta lo",
+ "cardAttachmentsPopup-title": "Apondut dempuèi",
+ "cardCustomField-datePopup-title": "Cambiar la data",
+ "cardCustomFieldsPopup-title": "Cambiar los camps personalizats",
+ "cardDeletePopup-title": "Suprimir la carta?",
+ "cardDetailsActionsPopup-title": "Accions sus la carta",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Participants",
+ "cardMorePopup-title": "Mai",
+ "cardTemplatePopup-title": "Crear un modèl",
+ "cards": "Cartas",
+ "cards-count": "Cartas",
+ "casSignIn": "Vos connectar amb CAS",
+ "cardType-card": "Carta",
+ "cardType-linkedCard": "Carta ligada",
+ "cardType-linkedBoard": "Tablèu ligat",
+ "change": "Cambiar",
+ "change-avatar": "Cambiar la fòto",
+ "change-password": "Cambiar lo mot de Santa-Clara",
+ "change-permissions": "Cambiar las permissions",
+ "change-settings": "Cambiar los paramètres",
+ "changeAvatarPopup-title": "Cambiar la fòto",
+ "changeLanguagePopup-title": "Cambiar la lenga",
+ "changePasswordPopup-title": "Cambiar lo mot de Santa-Clara",
+ "changePermissionsPopup-title": "Cambiar las permissions",
+ "changeSettingsPopup-title": "Cambiar los paramètres",
+ "subtasks": "Jos-tasca",
+ "checklists": "Checklists",
+ "click-to-star": "Apondre lo tablèu als favorits",
+ "click-to-unstar": "Quitar lo tablèu dels favorits",
+ "clipboard": "Copiar o far limpar",
+ "close": "Tampar",
+ "close-board": "Tampar lo tablèu",
+ "close-board-pop": "Podètz tornar activar lo tablèu dempuèi la pagina d'acuèlh.",
+ "color-black": "negre",
+ "color-blue": "blau",
+ "color-crimson": "purple clar",
+ "color-darkgreen": "verd fonçat",
+ "color-gold": "aur",
+ "color-gray": "gris",
+ "color-green": "verd",
+ "color-indigo": "indi",
+ "color-lime": "jaune clar",
+ "color-magenta": "magenta",
+ "color-mistyrose": "ròse clar",
+ "color-navy": "blau marin",
+ "color-orange": "irange",
+ "color-paleturquoise": "turqués",
+ "color-peachpuff": "persèc",
+ "color-pink": "ròsa",
+ "color-plum": "pruna",
+ "color-purple": "violet",
+ "color-red": "roge",
+ "color-saddlebrown": "castanh",
+ "color-silver": "argent",
+ "color-sky": "blau clar",
+ "color-slateblue": "blau lausa",
+ "color-white": "blanc",
+ "color-yellow": "jaune",
+ "unset-color": "pas reglat",
+ "comment": "Comentari",
+ "comment-placeholder": "Escrire un comentari",
+ "comment-only": "Comentari solament",
+ "comment-only-desc": "Comentari sus las cartas solament.",
+ "no-comments": "Pas cap de comentari",
+ "no-comments-desc": "Podèts pas veire ni los comentaris ni las activitats",
+ "computer": "Ordenator",
+ "confirm-subtask-delete-dialog": "Sètz segur de voler quitar aquesta jos-tasca?",
+ "confirm-checklist-delete-dialog": "Sètz segur de voler quitar aquesta checklist?",
+ "copy-card-link-to-clipboard": "Còpia del ligam de la carta",
+ "linkCardPopup-title": "Ligam de la carta",
+ "searchElementPopup-title": "Cèrca",
+ "copyCardPopup-title": "Còpia de la carta",
+ "copyChecklistToManyCardsPopup-title": "Còpia del modèl de checklist cap a mai d'una carta",
+ "copyChecklistToManyCardsPopup-instructions": "Un compte es estat creat per vos sus ",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Títol de la primièra carta\", \"description\":\"Descripcion de la primièra carta\"}, {\"title\":\"Títol de la segonda carta\",\"description\":\"Descripcion de la segonda carta\"},{\"title\":\"Títol de la darrièra carta\",\"description\":\"Descripcion de la darrièra carta\"} ]",
+ "create": "Crear",
+ "createBoardPopup-title": "Crear un tablèu",
+ "chooseBoardSourcePopup-title": "Importar un tablèu",
+ "createLabelPopup-title": "Crear una etiqueta",
+ "createCustomField": "Crear un camp",
+ "createCustomFieldPopup-title": "Crear un camp",
+ "current": "actual",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Casa de croiar",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Tièra de causidas",
+ "custom-field-dropdown-none": "(pas res)",
+ "custom-field-dropdown-options": "Opcions de la tièra",
+ "custom-field-dropdown-options-placeholder": "Apiejar sus \"Enter\" per apondre d'opcions",
+ "custom-field-dropdown-unknown": "(desconegut)",
+ "custom-field-number": "Nombre",
+ "custom-field-text": "Tèxte",
+ "custom-fields": "Camps personalizats",
+ "date": "Data",
+ "decline": "Refusar",
+ "default-avatar": "Fòto per defaut",
+ "delete": "Suprimir",
+ "deleteCustomFieldPopup-title": "Tirar lo camp personalizat?",
+ "deleteLabelPopup-title": "Tirar l'etiqueta?",
+ "description": "Descripcion",
+ "disambiguateMultiLabelPopup-title": "Precisar l'accion de l'etiqueta",
+ "disambiguateMultiMemberPopup-title": "Precisar l'accion del participant",
+ "discard": "Botar dins l'escobilha",
+ "done": "Acabat",
+ "download": "Telecargar",
+ "edit": "Modificar",
+ "edit-avatar": "Cambiar la fòto",
+ "edit-profile": "Modificar lo perfil",
+ "edit-wip-limit": "Modificar la WIP limit",
+ "soft-wip-limit": "Leugièr WIP limit",
+ "editCardStartDatePopup-title": "Cambiar la data de debuta",
+ "editCardDueDatePopup-title": "Cambiar la data de fin",
+ "editCustomFieldPopup-title": "Modificar los camps",
+ "editCardSpentTimePopup-title": "Cambiar lo temp passat",
+ "editLabelPopup-title": "Cambiar l'etiqueta",
+ "editNotificationPopup-title": "Modificar la notificacion",
+ "editProfilePopup-title": "Modificar lo perfil",
+ "email": "Corrièl",
+ "email-enrollAccount-subject": "Vòstre compte es ara activat pel sit __siteName__",
+ "email-enrollAccount-text": "Adieu __user__,\n\nPer comença d'utilizar lo servici, vos cal clicar sul ligam.\n\n__url__\n\nMercé.",
+ "email-fail": "Pas possible de mandar lo corrièl",
+ "email-fail-text": "Error per mandar lo corrièl",
+ "email-invalid": "L'adreça corrièl es pas valida",
+ "email-invite": "Convidar per corrièl",
+ "email-invite-subject": "__inviter__ vos as mandat un convit",
+ "email-invite-text": "Car __user__,\n\n__inviter__ vos a convidat per jónher lo tablèu \"__board__\".\n\nVos cal clicar sul ligam:\n\n__url__\n\nMercé.",
+ "email-resetPassword-subject": "Tornar inicializar vòstre mot de Santa-Clara de sit __siteName__",
+ "email-resetPassword-text": "Adieu __user__,\n\nPer tornar inicializar vòstre mot de Santa-Clara vos cal clicar sul ligam :\n\n__url__\n\nMercé.",
+ "email-sent": "Mail mandat",
+ "email-verifyEmail-subject": "Vos cal verificar vòstra adreça corrièl del sit __siteName__",
+ "email-verifyEmail-text": "Adieu __user__,\n\nPer verificar vòstra adreça corrièl, vos cal clicar sul ligam :\n\n__url__\n\nMercé.",
+ "enable-wip-limit": "Activar la WIP limit",
+ "error-board-doesNotExist": "Aqueste tablèu existís pas",
+ "error-board-notAdmin": "Devètz èsser un administrator del tablèu per far aquò ",
+ "error-board-notAMember": "Devètz èsser un participant del tablèu per far aquò",
+ "error-json-malformed": "Vòstre tèxte es pas valid JSON",
+ "error-json-schema": "Vòstre JSON es pas al format correct ",
+ "error-list-doesNotExist": "Aqueste tièra existís pas",
+ "error-user-doesNotExist": "Aqueste utilizator existís pas",
+ "error-user-notAllowSelf": "Vos podètz pas convidar vautres meteisses",
+ "error-user-notCreated": "Aqueste utilizator es pas encara creat",
+ "error-username-taken": "Lo nom es ja pres",
+ "error-email-taken": "Lo corrièl es ja pres ",
+ "export-board": "Exportar lo tablèu",
+ "filter": "Filtre",
+ "filter-cards": "Filtre cartas",
+ "filter-clear": "Escafar lo filtre",
+ "filter-no-label": "Pas cap d'etiqueta",
+ "filter-no-member": "Pas cap de participant",
+ "filter-no-custom-fields": "Pas de camp personalizat",
+ "filter-on": "Lo filtre es activat",
+ "filter-on-desc": "Filtratz las cartas dins aqueste tablèu. Picar aquí per editar los filtres",
+ "filter-to-selection": "Filtrar la seleccion",
+ "advanced-filter-label": "Filtre avançat",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Nom complet",
+ "header-logo-title": "Retorn a vòstra pagina de tablèus",
+ "hide-system-messages": "Amagar los messatges sistèm",
+ "headerBarCreateBoardPopup-title": "Crear un tablèu",
+ "home": "Acuèlh",
+ "import": "Importar",
+ "link": "Ligar",
+ "import-board": "Importar un tablèu",
+ "import-board-c": "Importar un tablèu",
+ "import-board-title-trello": "Importar un tablèu dempuèi Trello",
+ "import-board-title-wekan": "Importar un tablèu dempuèi un export passat",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Importar lo tablèu va quitar totes las donadas del tablèu e lo va remplaçar amb las donadas del tablèu importat.",
+ "from-trello": "Dempuèi Trello",
+ "from-wekan": "Dempuèi un export passat",
+ "import-board-instruction-trello": "Dins vòstre tablèu Trello, vos cal anar dins \"Menut\", puèi \"Mai\", \"Export\", \"Export JSON\", e copiar lo tèxte balhat.",
+ "import-board-instruction-wekan": "Dins vòstre tablèu, vos cal anar dins \"Menut\", puèi \"Exportar lo tablèu\", e de copiar lo tèxte del fichièr telecargat.",
+ "import-board-instruction-about-errors": "Se avètz de errors al moment d'importar un tablèu, es possible que l'importacion as fonccionat, lo tablèu es belèu a la pagina \"Totes los tablèus\".",
+ "import-json-placeholder": "Pegar las donadas del fichièr JSON aicí",
+ "import-map-members": "Mapa dels participants",
+ "import-members-map": "Lo tablèu qu'avètz importat as ja de participants, vos cal far la migracion amb los utilizators actual",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Seleccionar un participant",
+ "info": "Vesion",
+ "initials": "Iniciala",
+ "invalid-date": "Data invalida",
+ "invalid-time": "Temps invalid",
+ "invalid-user": "Participant invalid",
+ "joined": "Jónher",
+ "just-invited": "Sètz just convidat dins aqueste tablèu",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Crear una etiqueta",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Etiquetas",
+ "language": "Lenga",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Ligam per aquesta carta",
+ "list-archive-cards": "Mandar totas las cartas d'aquesta tièra dins Archius",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Mandar totas las cartas dins aquesta tièra",
+ "list-select-cards": "Seleccionar totas las cartas dins aquesta tièra",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "Tièra de las accions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Importar una carta de Trello",
+ "listMorePopup-title": "Mai",
+ "link-list": "Ligam d'aquesta tièra",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Tièras",
+ "swimlanes": "Corredor",
+ "log-out": "Desconnexion",
+ "log-in": "Connexion",
+ "loginPopup-title": "Connexion",
+ "memberMenuPopup-title": "Paramètres dels participants",
+ "members": "Participants",
+ "menu": "Menut",
+ "move-selection": "Bolegar la seleccion",
+ "moveCardPopup-title": "Bolegar la carta",
+ "moveCardToBottom-title": "Bolegar cap al bas",
+ "moveCardToTop-title": "Bolegar cap al naut",
+ "moveSelectionPopup-title": "Bolegar la seleccion",
+ "multi-selection": "Multi-seleccion",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Silenciós",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "Mon tablèu",
+ "name": "Nom",
+ "no-archived-cards": "Pas cap de carta dins Archius",
+ "no-archived-lists": "Pas cap de tièra dins Archius",
+ "no-archived-swimlanes": "Pas cap de corredor dins Archius",
+ "no-results": "Pas brica de resultat",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "opcional",
+ "or": "o",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Pagina pas trapada",
+ "password": "Mot de Santa-Clara",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Apercebut",
+ "previewAttachedImagePopup-title": "Apercebut",
+ "previewClipboardImagePopup-title": "Apercebut",
+ "private": "Privat",
+ "private-desc": "Aqueste tablèu es privat. Solament las personas apondudas a aquete tablèu lo pòdon veire e editar.",
+ "profile": "Perfil",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Quitar lo tablèu",
+ "remove-label": "Quitar l'etiqueta",
+ "listDeletePopup-title": "Quitar la tièra ?",
+ "remove-member": "Quitar lo participant",
+ "remove-member-from-card": "Quitar aquesta carta",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Tornar nomenar",
+ "rename-board": "Tornar nomenar lo tablèu",
+ "restore": "Restore",
+ "save": "Salvar",
+ "search": "Cèrca",
+ "rules": "Règlas",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Color causida",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Tampar lo dialòg",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Crear un compte",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Còla",
+ "this-board": "Aqueste tablèu",
+ "this-card": "aquesta carta",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Temps",
+ "title": "Títol",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Mena",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Telecargar",
+ "upload-avatar": "Telecargar un avatar",
+ "uploaded-avatar": "Avatar telecargat",
+ "username": "Nom d’utilizaire",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Seguit",
+ "watching": "Agachat",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Tablèu de benvenguda",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "Lista dels modèls",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Qué volètz far ?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Interfàcia d’admin",
+ "settings": "Paramètres",
+ "people": "Personas",
+ "registration": "Inscripcion",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Convidar",
+ "invite-people": "Convidat",
+ "to-boards": "To board(s)",
+ "email-addresses": "Adreça corrièl",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "Òst SMTP",
+ "smtp-port": "Pòrt SMTP",
+ "smtp-username": "Nom d’utilizaire",
+ "smtp-password": "Mot de Santa-Clara",
+ "smtp-tls": "Compatibilitat TLS",
+ "send-from": "De",
+ "send-smtp-test": "Se mandar un corrièl d'ensag",
+ "invitation-code": "Còde de convit",
+ "email-invite-register-subject": "__inviter__ vos a mandat un convit",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "As capitat de mandar un corrièl",
+ "error-invitation-code-not-exist": "Lo còde de convit existís pas",
+ "error-notAuthorized": "Sès pas autorizat a agachar aquesta pagina",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Desconegut)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "jorns",
+ "hours": "oras",
+ "minutes": "minutas",
+ "seconds": "segondas",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Òc",
+ "no": "Non",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verificat",
+ "active": "Avtivat",
+ "card-received": "Recebut",
+ "card-received-on": "Received on",
+ "card-end": "Fin",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Color seleccionada",
+ "setCardActionsColorPopup-title": "Causir una color",
+ "setSwimlaneColorPopup-title": "Causir una color",
+ "setListColorPopup-title": "Causir una color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Suprimir lo tablèu ?",
+ "delete-board": "Tablèu suprimit",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Desplaçar cap a Archius",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Apondre",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json
index a5036e60..20caa8b7 100644
--- a/i18n/pl.i18n.json
+++ b/i18n/pl.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Akceptuj",
- "act-activity-notify": "Powiadomienia aktywności",
- "act-addAttachment": "dodał(a) załącznik __attachment__ do karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
- "act-deleteAttachment": "usunął/usunęła załącznik __attachment__ na karcie __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
- "act-addSubtask": "dodał(a) podzadanie __subtask__ na karcie __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
- "act-addLabel": "dodał(a) etykietę __label__ do karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
- "act-addedLabel": "dodał(a) etykietę __label__ do karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
- "act-removeLabel": "usunął/usunęła etykietę __label__ z karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
- "act-removedLabel": "usunął/usunęła etykietę __label__ z karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
- "act-addChecklist": "dodał(a) listę zadań __checklist__ do karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
- "act-addChecklistItem": "dodał(a) element listy zadań __checklistItem__ do listy zadań __checklist__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-removeChecklist": "usunął/usunęła listę zadań __checklist__ z karty __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-removeChecklistItem": "usunął/usunęła element listy zadań __checklistItem__ z listy zadań __checkList__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-checkedItem": "zaznaczył(a) __checklistItem__ na liście zadań __checklist__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-uncheckedItem": "odznaczył(a) __checklistItem__ na liście __checklist__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-completeChecklist": "wykonał(a) wszystkie zadania z listy __checklist__ na karcie __card__ na liście __list__ na diagramie czynności__ na tablicy __board__",
- "act-uncompleteChecklist": "wycofał(a) ukończenie wykonania listy __checklist__ na karcie __card__ na liście __list__ na diagramie czynności__ na tablicy __board__",
- "act-addComment": "dodał(a) komentarz na karcie __card__: __comment__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-editComment": "edytował(a) komentarz na karcie __card__: __comment__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-deleteComment": "usunął/usunęła komentarz na karcie __card__: __comment__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-createBoard": "utworzył(a) tablicę __board__",
- "act-createSwimlane": "utworzył(a) diagram czynności __swimlane__ na tablicy __board__",
- "act-createCard": "utworzył(a) kartę __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-createCustomField": "utworzył(a) niestandardowe pole __customField__ na tablicy __board__",
- "act-deleteCustomField": "usunął/usunęła niestandardowe pole __customField__ na tablicy __board__",
- "act-setCustomField": "zmienił(a) niestandardowe pole __customField__: __customFieldValue__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-createList": "dodał(a) listę __list__ do tablicy __board__",
- "act-addBoardMember": "dodał(a) użytykownika __member__ do tablicy __board__",
- "act-archivedBoard": "Tablica __board__ została przeniesiona do Archiwum",
- "act-archivedCard": "przeniósł/przeniosła kartę __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__ do Archiwum",
- "act-archivedList": "przeniósł/przeniosła listę __list__ na diagramie czynności __swimlane__ na tablicy __board__ do Archiwum",
- "act-archivedSwimlane": "przeniósł/przeniosła diagram czynności __swimlane__ na tablicy __board__ do Archiwum",
- "act-importBoard": "zaimportował(a) tablicę __board__",
- "act-importCard": "zaimportował(a) kartę __card__ do listy __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-importList": "zaimportował(a) listę __list__ na diagram czynności __swimlane__ do tablicy __board__",
- "act-joinMember": "dodał(a) użytkownika __member__ do karty __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-moveCard": "przeniósł/a kartę __card__ na tablicy __board__ z listy __oldList__ na diagramie czynności __oldSwimlane__ na listę __list__ na diagramie czynności __swimlane__",
- "act-moveCardToOtherBoard": "przeniósł/a kartę __card__ z listy __oldList__ na diagramie czynności __oldSwimlane__ na tablicy __oldBoard__ do listy __listy__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-removeBoardMember": "usunął/usunęła użytkownika __member__ z tablicy __board__",
- "act-restoredCard": "przywrócił(a) kartę __card__ na listę __list__ na diagram czynności__ na tablicy __board__",
- "act-unjoinMember": "usunął/usunęła użytkownika __member__ z karty __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Akcje",
- "activities": "Ostatnia aktywność",
- "activity": "Aktywność",
- "activity-added": "dodał(a) %s z %s",
- "activity-archived": "%s została przeniesiona do Archiwum",
- "activity-attached": "załączono %s z %s",
- "activity-created": "utworzył(a) %s",
- "activity-customfield-created": "utworzył(a) niestandardowe pole %s",
- "activity-excluded": "wyłączono %s z %s",
- "activity-imported": "zaimportowano %s to %s z %s",
- "activity-imported-board": "zaimportowano %s z %s",
- "activity-joined": "dołączono %s",
- "activity-moved": "przeniesiono % z %s to %s",
- "activity-on": "w %s",
- "activity-removed": "usunięto %s z %s",
- "activity-sent": "wysłano %s z %s",
- "activity-unjoined": "odłączono %s",
- "activity-subtask-added": "dodano podzadanie do %s",
- "activity-checked-item": "zaznaczono %s w liście zadań%s z %s",
- "activity-unchecked-item": "odznaczono %s w liście zadań %s z %s",
- "activity-checklist-added": "dodał(a) listę zadań do %s",
- "activity-checklist-removed": "usunął/usunęła listę zadań z %s",
- "activity-checklist-completed": "wykonał(a) wszystkie zadania z listy __checklist__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "activity-checklist-uncompleted": "nieukończono listy zadań %s z %s",
- "activity-checklist-item-added": "dodał(a) zadanie '%s' do %s",
- "activity-checklist-item-removed": "usunął/usunęła element z listy zadań '%s' w %s",
- "add": "Dodaj",
- "activity-checked-item-card": "zaznaczono %s w liście zadań %s",
- "activity-unchecked-item-card": "odznaczono %s w liście zadań %s",
- "activity-checklist-completed-card": "wykonał(a) wszystkie zadania z listy __checklist__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
- "activity-checklist-uncompleted-card": "wycofano ukończenie listy zadań %s",
- "add-attachment": "Dodaj załącznik",
- "add-board": "Dodaj tablicę",
- "add-card": "Dodaj kartę",
- "add-swimlane": "Dodaj diagram czynności",
- "add-subtask": "Dodaj podzadanie",
- "add-checklist": "Dodaj listę kontrolną",
- "add-checklist-item": "Dodaj element do listy kontrolnej",
- "add-cover": "Dodaj okładkę",
- "add-label": "Dodaj etykietę",
- "add-list": "Dodaj listę",
- "add-members": "Dodaj członków",
- "added": "Dodane",
- "addMemberPopup-title": "Członkowie",
- "admin": "Administrator",
- "admin-desc": "Może widzieć i edytować karty, usuwać członków oraz zmieniać ustawienia tablicy.",
- "admin-announcement": "Ogłoszenie",
- "admin-announcement-active": "Włącz ogłoszenie systemowe",
- "admin-announcement-title": "Ogłoszenie od administratora",
- "all-boards": "Wszystkie tablice",
- "and-n-other-card": "I __count__ inna karta",
- "and-n-other-card_plural": "I __count__ inne karty",
- "apply": "Zastosuj",
- "app-is-offline": "Trwa ładowanie, proszę czekać. Odświeżenie strony może spowodować utratę danych. Jeśli strona się nie przeładowuje, upewnij się, że serwer działa poprawnie.",
- "archive": "Przenieś do Archiwum",
- "archive-all": "Przenieś wszystko do Archiwum",
- "archive-board": "Przenieś tablicę do Archiwum",
- "archive-card": "Przenieś kartę do Archiwum",
- "archive-list": "Przenieś listę do Archiwum",
- "archive-swimlane": "Przenieś diagram czynności do Archiwum",
- "archive-selection": "Przenieś zaznaczone do Archiwum",
- "archiveBoardPopup-title": "Przenieść tablicę do Archiwum?",
- "archived-items": "Zarchiwizuj",
- "archived-boards": "Tablice w Archiwum",
- "restore-board": "Przywróć tablicę",
- "no-archived-boards": "Brak tablic w Archiwum.",
- "archives": "Zarchiwizuj",
- "template": "Szablon",
- "templates": "Szablony",
- "assign-member": "Dodaj członka",
- "attached": "załączono",
- "attachment": "Załącznik",
- "attachment-delete-pop": "Usunięcie załącznika jest nieodwracalne.",
- "attachmentDeletePopup-title": "Usunąć załącznik?",
- "attachments": "Załączniki",
- "auto-watch": "Automatycznie obserwuj tablice gdy zostaną stworzone",
- "avatar-too-big": "Awatar jest za duży (maksymalnie 70KB)",
- "back": "Wstecz",
- "board-change-color": "Zmień kolor",
- "board-nb-stars": "%s odznaczeń",
- "board-not-found": "Nie znaleziono tablicy",
- "board-private-info": "Ta tablica będzie <strong>prywatna</strong>.",
- "board-public-info": "Ta tablica będzie <strong>publiczna<strong>.",
- "boardChangeColorPopup-title": "Zmień tło tablicy",
- "boardChangeTitlePopup-title": "Zmień nazwę tablicy",
- "boardChangeVisibilityPopup-title": "Zmień widoczność tablicy",
- "boardChangeWatchPopup-title": "Zmień sposób wysyłania powiadomień",
- "boardMenuPopup-title": "Ustawienia tablicy",
- "boards": "Tablice",
- "board-view": "Widok tablicy",
- "board-view-cal": "Kalendarz",
- "board-view-swimlanes": "Diagramy czynności",
- "board-view-lists": "Listy",
- "bucket-example": "Tak jak na przykład \"lista kubełkowa\"",
- "cancel": "Anuluj",
- "card-archived": "Ta karta została przeniesiona do Archiwum.",
- "board-archived": "Ta tablica została przeniesiona do Archiwum.",
- "card-comments-title": "Ta karta ma %s komentarzy.",
- "card-delete-notice": "Usunięcie jest trwałe. Stracisz wszystkie akcje powiązane z tą kartą.",
- "card-delete-pop": "Wszystkie akcje będą usunięte z widoku aktywności, nie można będzie ponownie otworzyć karty. Usunięcie jest nieodwracalne.",
- "card-delete-suggest-archive": "Możesz przenieść kartę do Archiwum, a następnie usunąć ją z tablicy i zachować ją w Aktywności.",
- "card-due": "Ukończenie",
- "card-due-on": "Ukończenie w",
- "card-spent": "Spędzony czas",
- "card-edit-attachments": "Edytuj załączniki",
- "card-edit-custom-fields": "Edytuj niestandardowe pola",
- "card-edit-labels": "Edytuj etykiety",
- "card-edit-members": "Edytuj członków",
- "card-labels-title": "Zmień etykiety karty",
- "card-members-title": "Dodaj lub usuń członków tablicy z karty.",
- "card-start": "Rozpoczęcie",
- "card-start-on": "Zaczyna się o",
- "cardAttachmentsPopup-title": "Dodaj załącznik z",
- "cardCustomField-datePopup-title": "Zmień datę",
- "cardCustomFieldsPopup-title": "Edytuj niestandardowe pola",
- "cardDeletePopup-title": "Usunąć kartę?",
- "cardDetailsActionsPopup-title": "Czynności kart",
- "cardLabelsPopup-title": "Etykiety",
- "cardMembersPopup-title": "Członkowie",
- "cardMorePopup-title": "Więcej",
- "cardTemplatePopup-title": "Utwórz szablon",
- "cards": "Karty",
- "cards-count": "Karty",
- "casSignIn": "Zaloguj się poprzez CAS",
- "cardType-card": "Karta",
- "cardType-linkedCard": "Podpięta karta",
- "cardType-linkedBoard": "Podpięta tablica",
- "change": "Zmień",
- "change-avatar": "Zmień avatar",
- "change-password": "Zmień hasło",
- "change-permissions": "Zmień uprawnienia",
- "change-settings": "Zmień ustawienia",
- "changeAvatarPopup-title": "Zmień avatar",
- "changeLanguagePopup-title": "Zmień język",
- "changePasswordPopup-title": "Zmień hasło",
- "changePermissionsPopup-title": "Zmień uprawnienia",
- "changeSettingsPopup-title": "Zmień ustawienia",
- "subtasks": "Podzadania",
- "checklists": "Listy zadań",
- "click-to-star": "Kliknij by odznaczyć tę tablicę.",
- "click-to-unstar": "Kliknij by usunąć odznaczenie tej tablicy.",
- "clipboard": "Schowka lub poprzez przeciągnij & upuść",
- "close": "Zamknij",
- "close-board": "Zamknij tablicę",
- "close-board-pop": "Będziesz w stanie przywrócić tablicę poprzez kliknięcie przycisku \"Archiwizuj\" w nagłówku strony domowej.",
- "color-black": "czarny",
- "color-blue": "niebieski",
- "color-crimson": "karmazynowy",
- "color-darkgreen": "ciemnozielony",
- "color-gold": "złoty",
- "color-gray": "szary",
- "color-green": "zielony",
- "color-indigo": "indygo",
- "color-lime": "limonkowy",
- "color-magenta": "fuksjowy",
- "color-mistyrose": "różowy",
- "color-navy": "granatowy",
- "color-orange": "pomarańczowy",
- "color-paleturquoise": "turkusowy",
- "color-peachpuff": "brzoskwiniowy",
- "color-pink": "różowy",
- "color-plum": "śliwkowy",
- "color-purple": "fioletowy",
- "color-red": "czerwony",
- "color-saddlebrown": "jasnobrązowy",
- "color-silver": "srebrny",
- "color-sky": "błękitny",
- "color-slateblue": "szaroniebieski",
- "color-white": "miały",
- "color-yellow": "żółty",
- "unset-color": "Nieustawiony",
- "comment": "Komentarz",
- "comment-placeholder": "Dodaj komentarz",
- "comment-only": "Tylko komentowanie",
- "comment-only-desc": "Może tylko komentować w kartach.",
- "no-comments": "Bez komentarzy",
- "no-comments-desc": "Nie widzi komentarzy i aktywności.",
- "computer": "Komputera",
- "confirm-subtask-delete-dialog": "Czy jesteś pewien, że chcesz usunąć to podzadanie?",
- "confirm-checklist-delete-dialog": "Czy jesteś pewien, że chcesz usunąć listę zadań?",
- "copy-card-link-to-clipboard": "Skopiuj łącze karty do schowka",
- "linkCardPopup-title": "Podepnij kartę",
- "searchElementPopup-title": "Wyszukaj",
- "copyCardPopup-title": "Skopiuj kartę",
- "copyChecklistToManyCardsPopup-title": "Kopiuj szablon listy zadań do wielu kart",
- "copyChecklistToManyCardsPopup-instructions": "Docelowe tytuły i opisy kart są w formacie JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Tytuł pierwszej karty\", \"description\":\"Opis pierwszej karty\"}, {\"title\":\"Tytuł drugiej karty\",\"description\":\"Opis drugiej karty\"},{\"title\":\"Tytuł ostatniej karty\",\"description\":\"Opis ostatniej karty\"} ]",
- "create": "Utwórz",
- "createBoardPopup-title": "Utwórz tablicę",
- "chooseBoardSourcePopup-title": "Import tablicy",
- "createLabelPopup-title": "Utwórz etykietę",
- "createCustomField": "Utwórz pole",
- "createCustomFieldPopup-title": "Utwórz pole",
- "current": "obecny",
- "custom-field-delete-pop": "Nie ma możliwości wycofania tej operacji. To usunie te niestandardowe pole ze wszystkich kart oraz usunie ich całą historię.",
- "custom-field-checkbox": "Pole wyboru",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Lista rozwijana",
- "custom-field-dropdown-none": "(puste)",
- "custom-field-dropdown-options": "Opcje listy",
- "custom-field-dropdown-options-placeholder": "Naciśnij przycisk Enter by zobaczyć więcej opcji",
- "custom-field-dropdown-unknown": "(nieznany)",
- "custom-field-number": "Numer",
- "custom-field-text": "Tekst",
- "custom-fields": "Niestandardowe pola",
- "date": "Data",
- "decline": "Odrzuć",
- "default-avatar": "Domyślny avatar",
- "delete": "Usuń",
- "deleteCustomFieldPopup-title": "Usunąć niestandardowe pole?",
- "deleteLabelPopup-title": "Usunąć etykietę?",
- "description": "Opis",
- "disambiguateMultiLabelPopup-title": "Ujednolić etykiety czynności",
- "disambiguateMultiMemberPopup-title": "Ujednolić etykiety członków",
- "discard": "Odrzuć",
- "done": "Zrobiono",
- "download": "Pobierz",
- "edit": "Edytuj",
- "edit-avatar": "Zmień avatar",
- "edit-profile": "Edytuj profil",
- "edit-wip-limit": "Zmień limit kart na liście",
- "soft-wip-limit": "Pozwól na nadmiarowe karty na liście",
- "editCardStartDatePopup-title": "Zmień datę rozpoczęcia",
- "editCardDueDatePopup-title": "Zmień datę ukończenia",
- "editCustomFieldPopup-title": "Edytuj pole",
- "editCardSpentTimePopup-title": "Zmień spędzony czas",
- "editLabelPopup-title": "Zmień etykietę",
- "editNotificationPopup-title": "Zmień tryb powiadamiania",
- "editProfilePopup-title": "Edytuj profil",
- "email": "Email",
- "email-enrollAccount-subject": "Konto zostało utworzone na __siteName__",
- "email-enrollAccount-text": "Witaj __user__,\nAby zacząć korzystać z serwisu, kliknij w link poniżej.\n__url__\nDzięki.",
- "email-fail": "Wysyłanie emaila nie powiodło się.",
- "email-fail-text": "Bład w trakcie wysyłania wiadomości email",
- "email-invalid": "Nieprawidłowy email",
- "email-invite": "Zaproś przez email",
- "email-invite-subject": "__inviter__ wysłał Ci zaproszenie",
- "email-invite-text": "Drogi __user__,\n__inviter__ zaprosił Cię do współpracy w tablicy \"__board__\".\nZobacz więcej:\n__url__\nDzięki.",
- "email-resetPassword-subject": "Zresetuj swoje hasło na __siteName__",
- "email-resetPassword-text": "Witaj __user__,\nAby zresetować hasło, kliknij w link poniżej.\n__url__\nDzięki.",
- "email-sent": "Email wysłany",
- "email-verifyEmail-subject": "Zweryfikuj swój adres email na __siteName__",
- "email-verifyEmail-text": "Witaj __user__,\nAby zweryfikować adres email, kliknij w link poniżej.\n__url__\nDzięki.",
- "enable-wip-limit": "Włącz limit kart na liście",
- "error-board-doesNotExist": "Ta tablica nie istnieje",
- "error-board-notAdmin": "Musisz być administratorem tej tablicy żeby to zrobić",
- "error-board-notAMember": "Musisz być członkiem tej tablicy, żeby wykonać tę czynność",
- "error-json-malformed": "Twoja fraza nie jest w formacie JSON",
- "error-json-schema": "Twoje dane JSON nie zawierają prawidłowych informacji w poprawnym formacie",
- "error-list-doesNotExist": "Ta lista nie isnieje",
- "error-user-doesNotExist": "Ten użytkownik nie istnieje",
- "error-user-notAllowSelf": "Nie możesz zaprosić samego siebie",
- "error-user-notCreated": "Ten użytkownik nie został stworzony",
- "error-username-taken": "Ta nazwa jest już zajęta",
- "error-email-taken": "Adres email jest już zarezerwowany",
- "export-board": "Eksportuj tablicę",
- "filter": "Filtr",
- "filter-cards": "Odfiltruj karty",
- "filter-clear": "Usuń filter",
- "filter-no-label": "Brak etykiety",
- "filter-no-member": "Brak członków",
- "filter-no-custom-fields": "Brak niestandardowych pól",
- "filter-on": "Filtr jest włączony",
- "filter-on-desc": "Filtrujesz karty na tej tablicy. Kliknij tutaj by edytować filtr.",
- "filter-to-selection": "Odfiltruj zaznaczenie",
- "advanced-filter-label": "Zaawansowane filtry",
- "advanced-filter-description": "Zaawansowane filtry pozwalają na wykorzystanie ciągu znaków wraz z następującymi operatorami: == != <= >= && || (). Spacja jest używana jako separator pomiędzy operatorami. Możesz przefiltrowywać wszystkie niestandardowe pola wpisując ich nazwy lub wartości, na przykład: Pole1 == Wartość1.\nUwaga: Jeśli pola lub wartości zawierają spację, musisz je zawrzeć w pojedyncze cudzysłowie, na przykład: 'Pole 1' == 'Wartość 1'. Dla pojedynczych znaków, które powinny być pominięte należy użyć \\, na przykład Pole1 == I\\'m. Możesz także wykorzystywać mieszane warunki, na przykład P1 == W1 || P1 == W2. Standardowo wszystkie operatory są interpretowane od lewej do prawej. Możesz także zmienić kolejność interpretacji wykorzystując nawiasy, na przykład P1 == W1 && (P2 == W2 || P2 == W3). Możesz także wyszukiwać tekstowo wykorzystując wyrażenia regularne, na przykład: P1 == /Tes.*/i",
- "fullname": "Pełna nazwa",
- "header-logo-title": "Wróć do swojej strony z tablicami.",
- "hide-system-messages": "Ukryj wiadomości systemowe",
- "headerBarCreateBoardPopup-title": "Utwórz tablicę",
- "home": "Strona główna",
- "import": "Importuj",
- "link": "Podłącz",
- "import-board": "importuj tablice",
- "import-board-c": "Import tablicy",
- "import-board-title-trello": "Importuj tablicę z Trello",
- "import-board-title-wekan": "Importuj tablicę z poprzedniego eksportu",
- "import-sandstorm-backup-warning": "Nie usuwaj danych, które importujesz ze źródłowej tablicy lub Trello zanim upewnisz się, że wszystko zostało prawidłowo przeniesione przy czym brane jest pod uwagę ponowne uruchomienie strony, ponieważ w przypadku błędu braku tablicy stracisz dane.",
- "import-sandstorm-warning": "Zaimportowana tablica usunie wszystkie istniejące dane na aktualnej tablicy oraz zastąpi ją danymi z tej importowanej.",
- "from-trello": "Z Trello",
- "from-wekan": "Z poprzedniego eksportu",
- "import-board-instruction-trello": "W twojej tablicy na Trello przejdź do 'Menu', następnie 'Więcej', 'Drukuj i eksportuj', 'Eksportuj jako JSON' i skopiuj wynik",
- "import-board-instruction-wekan": "Na Twojej tablicy przejdź do 'Menu', a następnie wybierz 'Eksportuj tablicę' i skopiuj tekst w pobranym pliku.",
- "import-board-instruction-about-errors": "W przypadku, gdy otrzymujesz błędy importowania tablicy, czasami importowanie pomimo wszystko działa poprawnie i tablica znajduje się w oknie Wszystkie tablice.",
- "import-json-placeholder": "Wklej Twoje dane JSON tutaj",
- "import-map-members": "Przypisz członków",
- "import-members-map": "Twoje zaimportowane tablice mają kilku członków. Proszę wybierz członków których chcesz zaimportować dla Twoich użytkowników",
- "import-show-user-mapping": "Przejrzyj wybranych członków",
- "import-user-select": "Wybierz istniejącego użytkownika, który ma stać się członkiem",
- "importMapMembersAddPopup-title": "Wybierz użytkownika",
- "info": "Wersja",
- "initials": "Inicjały",
- "invalid-date": "Błędna data",
- "invalid-time": "Błędny czas",
- "invalid-user": "Niepoprawna nazwa użytkownika",
- "joined": "dołączył",
- "just-invited": "Zostałeś zaproszony do tej tablicy",
- "keyboard-shortcuts": "Skróty klawiaturowe",
- "label-create": "Utwórz etykietę",
- "label-default": "'%s' etykieta (domyślna)",
- "label-delete-pop": "Nie da się tego wycofać. To usunie tę etykietę ze wszystkich kart i usunie ich historię.",
- "labels": "Etykiety",
- "language": "Język",
- "last-admin-desc": "Nie możesz zmienić roli użytkownika, ponieważ musi istnieć co najmniej jeden administrator.",
- "leave-board": "Opuść tablicę",
- "leave-board-pop": "Czy jesteś pewien, że chcesz opuścić tablicę __boardTitle__? Zostaniesz usunięty ze wszystkich kart tej tablicy.",
- "leaveBoardPopup-title": "Opuścić tablicę?",
- "link-card": "Link do tej karty",
- "list-archive-cards": "Przenieś wszystkie karty z tej listy do Archiwum",
- "list-archive-cards-pop": "To usunie wszystkie karty z tej listy z tej tablicy. Aby przejrzeć karty w Archiwum i przywrócić na tablicę, kliknij \"Menu\" > \"Archiwizuj\".",
- "list-move-cards": "Przenieś wszystkie karty z tej listy",
- "list-select-cards": "Zaznacz wszystkie karty z tej listy",
- "set-color-list": "Ustaw kolor",
- "listActionPopup-title": "Lista akcji",
- "swimlaneActionPopup-title": "Opcje diagramu czynności",
- "swimlaneAddPopup-title": "Dodaj diagram czynności poniżej",
- "listImportCardPopup-title": "Zaimportuj kartę z Trello",
- "listMorePopup-title": "Więcej",
- "link-list": "Podepnij do tej listy",
- "list-delete-pop": "Wszystkie czynności zostaną usunięte z Aktywności i nie będziesz w stanie przywrócić listy. Nie ma możliwości cofnięcia tej operacji.",
- "list-delete-suggest-archive": "Możesz przenieść listę do Archiwum, a następnie usunąć ją z tablicy i zachować ją w Aktywności.",
- "lists": "Listy",
- "swimlanes": "Diagramy czynności",
- "log-out": "Wyloguj",
- "log-in": "Zaloguj",
- "loginPopup-title": "Zaloguj",
- "memberMenuPopup-title": "Ustawienia członków",
- "members": "Członkowie",
- "menu": "Menu",
- "move-selection": "Przenieś zaznaczone",
- "moveCardPopup-title": "Przenieś kartę",
- "moveCardToBottom-title": "Przenieś na dół",
- "moveCardToTop-title": "Przenieś na górę",
- "moveSelectionPopup-title": "Przenieś zaznaczone",
- "multi-selection": "Wielokrotne zaznaczenie",
- "multi-selection-on": "Wielokrotne zaznaczenie jest włączone",
- "muted": "Wycisz",
- "muted-info": "Nie dostaniesz powiadomienia o zmianach w tej tablicy.",
- "my-boards": "Moje tablice",
- "name": "Nazwa",
- "no-archived-cards": "Brak kart w Archiwum.",
- "no-archived-lists": "Brak list w Archiwum.",
- "no-archived-swimlanes": "Brak diagramów czynności w Archiwum",
- "no-results": "Brak wyników",
- "normal": "Użytkownik standardowy",
- "normal-desc": "Może widzieć i edytować karty. Nie może zmieniać ustawiań.",
- "not-accepted-yet": "Zaproszenie jeszcze niezaakceptowane",
- "notify-participate": "Otrzymuj aktualizacje kart, w których uczestniczysz jako twórca lub członek.",
- "notify-watch": "Otrzymuj powiadomienia z tablic, list i kart, które obserwujesz",
- "optional": "opcjonalny",
- "or": "lub",
- "page-maybe-private": "Ta strona może być prywatna. Możliwe, że możesz ją zobaczyć po <a href='%s'>zalogowaniu</a>.",
- "page-not-found": "Strona nie znaleziona.",
- "password": "Hasło",
- "paste-or-dragdrop": "wklej lub przeciągnij & upuść (tylko grafika)",
- "participating": "Uczestniczysz",
- "preview": "Podgląd",
- "previewAttachedImagePopup-title": "Podgląd",
- "previewClipboardImagePopup-title": "Podgląd",
- "private": "Prywatny",
- "private-desc": "Ta tablica jest prywatna. Tylko osoby dodane do tej tablicy mogą ją zobaczyć i edytować.",
- "profile": "Profil",
- "public": "Publiczny",
- "public-desc": "Ta tablica jest publiczna. Jest widoczna dla wszystkich, którzy mają do niej odnośnik i będzie wynikiem silników wyszukiwania takich jak Google. Tylko użytkownicy dodani do tablicy mogą ją edytować.",
- "quick-access-description": "Odznacz tablicę aby dodać skrót na tym pasku.",
- "remove-cover": "Usuń okładkę",
- "remove-from-board": "Usuń z tablicy",
- "remove-label": "Usuń etykietę",
- "listDeletePopup-title": "Usunąć listę?",
- "remove-member": "Usuń członka",
- "remove-member-from-card": "Usuń z karty",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Usunąć członka?",
- "rename": "Zmień nazwę",
- "rename-board": "Zmień nazwę tablicy",
- "restore": "Przywróć",
- "save": "Zapisz",
- "search": "Wyszukaj",
- "rules": "Reguły",
- "search-cards": "Szukaj spośród tytułów kart oraz opisów na tej tablicy",
- "search-example": "Czego mam szukać?",
- "select-color": "Wybierz kolor",
- "set-wip-limit-value": "Ustaw maksymalny limit zadań na tej liście",
- "setWipLimitPopup-title": "Ustaw limit kart na liście",
- "shortcut-assign-self": "Przypisz siebie do obecnej karty",
- "shortcut-autocomplete-emoji": "Autouzupełnianie emoji",
- "shortcut-autocomplete-members": "Autouzupełnianie członków",
- "shortcut-clear-filters": "Usuń wszystkie filtry",
- "shortcut-close-dialog": "Zamknij okno",
- "shortcut-filter-my-cards": "Filtruj moje karty",
- "shortcut-show-shortcuts": "Przypnij do listy skrótów",
- "shortcut-toggle-filterbar": "Przełącz boczny pasek filtru",
- "shortcut-toggle-sidebar": "Przełącz boczny pasek tablicy",
- "show-cards-minimum-count": "Pokaż licznik kart, jeśli lista zawiera więcej niż",
- "sidebar-open": "Otwórz pasek boczny",
- "sidebar-close": "Zamknij pasek boczny",
- "signupPopup-title": "Utwórz konto",
- "star-board-title": "Kliknij by oznaczyć tę tablicę gwiazdką. Pojawi się wtedy na liście tablic na górze.",
- "starred-boards": "Odznaczone tablice",
- "starred-boards-description": "Tablice oznaczone gwiazdką pojawią się na liście na górze.",
- "subscribe": "Zapisz się",
- "team": "Zespół",
- "this-board": "ta tablica",
- "this-card": "ta karta",
- "spent-time-hours": "Spędzony czas (w godzinach)",
- "overtime-hours": "Nadgodziny (czas)",
- "overtime": "Dodatkowo",
- "has-overtime-cards": "Ma dodatkowych kart",
- "has-spenttime-cards": "Ma karty z wykorzystanym czasem",
- "time": "Czas",
- "title": "Tytuł",
- "tracking": "Śledzenie",
- "tracking-info": "Dostaniesz powiadomienie o zmianach kart, w których bierzesz udział jako twórca lub członek.",
- "type": "Typ",
- "unassign-member": "Nieprzypisany członek",
- "unsaved-description": "Masz niezapisany opis.",
- "unwatch": "Nie obserwuj",
- "upload": "Wyślij",
- "upload-avatar": "Wyślij avatar",
- "uploaded-avatar": "Wysłany avatar",
- "username": "Nazwa użytkownika",
- "view-it": "Zobacz",
- "warn-list-archived": "Ostrzeżenie: ta karta jest na liście będącej w Archiwum",
- "watch": "Obserwuj",
- "watching": "Obserwujesz",
- "watching-info": "Dostaniesz powiadomienie o każdej zmianie na tej tablicy.",
- "welcome-board": "Tablica powitalna",
- "welcome-swimlane": "Kamień milowy 1",
- "welcome-list1": "Podstawy",
- "welcome-list2": "Zaawansowane",
- "card-templates-swimlane": "Utwórz szablony",
- "list-templates-swimlane": "Wyświetl szablony",
- "board-templates-swimlane": "Szablony tablic",
- "what-to-do": "Co chcesz zrobić?",
- "wipLimitErrorPopup-title": "Nieprawidłowy limit kart na liście",
- "wipLimitErrorPopup-dialog-pt1": "Aktualna ilość kart na tej liście jest większa niż aktualny zdefiniowany limit kart.",
- "wipLimitErrorPopup-dialog-pt2": "Proszę przenieś zadania z tej listy lub zmień limit kart na tej liście na wyższy.",
- "admin-panel": "Panel administracyjny",
- "settings": "Ustawienia",
- "people": "Osoby",
- "registration": "Rejestracja",
- "disable-self-registration": "Wyłącz samodzielną rejestrację",
- "invite": "Zaproś",
- "invite-people": "Zaproś osoby",
- "to-boards": "Do tablic(y)",
- "email-addresses": "Adres e-mail",
- "smtp-host-description": "Adres serwera SMTP, który wysyła Twoje maile.",
- "smtp-port-description": "Port, który Twój serwer SMTP wykorzystuje do wysyłania emaili.",
- "smtp-tls-description": "Włącz wsparcie TLS dla serwera SMTP",
- "smtp-host": "Serwer SMTP",
- "smtp-port": "Port SMTP",
- "smtp-username": "Nazwa użytkownika",
- "smtp-password": "Hasło",
- "smtp-tls": "Wsparcie dla TLS",
- "send-from": "Od",
- "send-smtp-test": "Wyślij wiadomość testową do siebie",
- "invitation-code": "Kod z zaproszenia",
- "email-invite-register-subject": "__inviter__ wysłał Ci zaproszenie",
- "email-invite-register-text": "Drogi __user__,\n\n__inviter__ zaprasza Cię do współpracy na naszej tablicy kanban.\n\nAby kontynuować, wejdź w poniższy link:\n__url__\n\nTwój kod zaproszenia to: __icode__\n\nDziękuję.",
- "email-smtp-test-subject": "Wiadomość testowa SMTP",
- "email-smtp-test-text": "Wiadomość testowa została wysłana z powodzeniem.",
- "error-invitation-code-not-exist": "Kod zaproszenia nie istnieje",
- "error-notAuthorized": "Nie jesteś uprawniony do przeglądania tej strony.",
- "outgoing-webhooks": "Wychodzące webhooki",
- "outgoingWebhooksPopup-title": "Wychodzące webhooki",
- "boardCardTitlePopup-title": "Filtruj poprzez nazwę karty",
- "new-outgoing-webhook": "Nowy wychodzący webhook",
- "no-name": "(nieznany)",
- "Node_version": "Wersja Node",
- "OS_Arch": "Architektura systemu",
- "OS_Cpus": "Ilość rdzeni systemu",
- "OS_Freemem": "Wolna pamięć RAM",
- "OS_Loadavg": "Średnie obciążenie systemu",
- "OS_Platform": "Platforma systemu",
- "OS_Release": "Wersja jądra",
- "OS_Totalmem": "Dostępna pamięć RAM",
- "OS_Type": "Typ systemu",
- "OS_Uptime": "Czas działania systemu",
- "days": "dni",
- "hours": "godzin",
- "minutes": "minut",
- "seconds": "sekund",
- "show-field-on-card": "Pokaż te pole na karcie",
- "automatically-field-on-card": "Automatycznie stwórz pole dla wszystkich kart",
- "showLabel-field-on-card": "Pokaż pole etykiety w minikarcie",
- "yes": "Tak",
- "no": "Nie",
- "accounts": "Konto",
- "accounts-allowEmailChange": "Zezwól na zmianę adresu email",
- "accounts-allowUserNameChange": "Zezwól na zmianę nazwy użytkownika",
- "createdAt": "Stworzono o",
- "verified": "Zweryfikowane",
- "active": "Aktywny",
- "card-received": "Odebrano",
- "card-received-on": "Odebrano",
- "card-end": "Koniec",
- "card-end-on": "Kończy się",
- "editCardReceivedDatePopup-title": "Zmień datę odebrania",
- "editCardEndDatePopup-title": "Zmień datę ukończenia",
- "setCardColorPopup-title": "Ustaw kolor",
- "setCardActionsColorPopup-title": "Wybierz kolor",
- "setSwimlaneColorPopup-title": "Wybierz kolor",
- "setListColorPopup-title": "Wybierz kolor",
- "assigned-by": "Przypisane przez",
- "requested-by": "Zlecone przez",
- "board-delete-notice": "Usuwanie jest permanentne. Stracisz wszystkie listy, kart oraz czynności przypisane do tej tablicy.",
- "delete-board-confirm-popup": "Wszystkie listy, etykiety oraz aktywności zostaną usunięte i nie będziesz w stanie przywrócić zawartości tablicy. Tego nie da się cofnąć.",
- "boardDeletePopup-title": "Usunąć tablicę?",
- "delete-board": "Usuń tablicę",
- "default-subtasks-board": "Podzadania dla tablicy __board__",
- "default": "Domyślny",
- "queue": "Kolejka",
- "subtask-settings": "Ustawienia podzadań",
- "boardSubtaskSettingsPopup-title": "Ustawienia tablicy podzadań",
- "show-subtasks-field": "Karty mogą mieć podzadania",
- "deposit-subtasks-board": "Przechowuj podzadania na tablicy:",
- "deposit-subtasks-list": "Początkowa lista dla podzadań jest przechowywana w:",
- "show-parent-in-minicard": "Pokaż rodzica w minikarcie:",
- "prefix-with-full-path": "Prefix z pełną ścieżką",
- "prefix-with-parent": "Prefix z rodzicem",
- "subtext-with-full-path": "Podtekst z pełną ścieżką",
- "subtext-with-parent": "Podtekst z rodzicem",
- "change-card-parent": "Zmień rodzica karty",
- "parent-card": "Karta rodzica",
- "source-board": "Tablica źródłowa",
- "no-parent": "Nie pokazuj rodzica",
- "activity-added-label": "dodał(a) etykietę '%s' z '%s'",
- "activity-removed-label": "usunął/usunęła etykietę '%s' z '%s'",
- "activity-delete-attach": "usunął/usunęła załącznik z %s",
- "activity-added-label-card": "dodał(a) etykietę '%s'",
- "activity-removed-label-card": "usunął/usunęła etykietę '%s'",
- "activity-delete-attach-card": "usunął/usunęła załącznik",
- "activity-set-customfield": "ustawiono niestandardowe pole '%s' do '%s' na '%s'",
- "activity-unset-customfield": "wyczyszczono niestandardowe pole '%s' na '%s'",
- "r-rule": "Reguła",
- "r-add-trigger": "Dodaj przełącznik",
- "r-add-action": "Dodaj czynność",
- "r-board-rules": "Reguły tablicy",
- "r-add-rule": "Dodaj regułę",
- "r-view-rule": "Zobacz regułę",
- "r-delete-rule": "Usuń regułę",
- "r-new-rule-name": "Nowa nazwa reguły",
- "r-no-rules": "Brak regułę",
- "r-when-a-card": "Gdy karta",
- "r-is": "jest",
- "r-is-moved": "jest przenoszona",
- "r-added-to": "dodana do",
- "r-removed-from": "usunął/usunęła z",
- "r-the-board": "tablicy",
- "r-list": "lista",
- "set-filter": "Ustaw filtr",
- "r-moved-to": "Przeniesiono do",
- "r-moved-from": "Przeniesiono z",
- "r-archived": "Przeniesione z Archiwum",
- "r-unarchived": "Przywrócone z Archiwum",
- "r-a-card": "karta",
- "r-when-a-label-is": "Gdy etykieta jest",
- "r-when-the-label": "Gdy etykieta jest",
- "r-list-name": "nazwa listy",
- "r-when-a-member": "Gdy członek jest",
- "r-when-the-member": "Gdy członek jest",
- "r-name": "nazwa",
- "r-when-a-attach": "Gdy załącznik",
- "r-when-a-checklist": "Gdy lista zadań jest",
- "r-when-the-checklist": "Gdy lista zadań",
- "r-completed": "Ukończono",
- "r-made-incomplete": "Niedokończone",
- "r-when-a-item": "Gdy lista zadań jest",
- "r-when-the-item": "Gdy element listy zadań",
- "r-checked": "Zaznaczony",
- "r-unchecked": "Odznaczony",
- "r-move-card-to": "Przenieś kartę do",
- "r-top-of": "Góra od",
- "r-bottom-of": "Dół od",
- "r-its-list": "tej listy",
- "r-archive": "Przenieś do Archiwum",
- "r-unarchive": "Przywróć z Archiwum",
- "r-card": "karta",
- "r-add": "Dodaj",
- "r-remove": "Usuń",
- "r-label": "etykieta",
- "r-member": "członek",
- "r-remove-all": "Usuń wszystkich członków tej karty",
- "r-set-color": "Ustaw kolor na",
- "r-checklist": "lista zadań",
- "r-check-all": "Zaznacz wszystkie",
- "r-uncheck-all": "Odznacz wszystkie",
- "r-items-check": "elementy listy",
- "r-check": "Zaznacz",
- "r-uncheck": "Odznacz",
- "r-item": "element",
- "r-of-checklist": "z listy zadań",
- "r-send-email": "Wyślij wiadomość email",
- "r-to": "do",
- "r-subject": "temat",
- "r-rule-details": "Szczegóły reguł",
- "r-d-move-to-top-gen": "Przenieś kartę na górę tej listy",
- "r-d-move-to-top-spec": "Przenieś kartę na górę listy",
- "r-d-move-to-bottom-gen": "Przenieś kartę na dół tej listy",
- "r-d-move-to-bottom-spec": "Przenieś kartę na dół listy",
- "r-d-send-email": "Wyślij wiadomość email",
- "r-d-send-email-to": "do",
- "r-d-send-email-subject": "temat",
- "r-d-send-email-message": "wiadomość",
- "r-d-archive": "Przenieś kartę z Archiwum",
- "r-d-unarchive": "Przywróć kartę z Archiwum",
- "r-d-add-label": "Dodaj etykietę",
- "r-d-remove-label": "Usuń etykietę",
- "r-create-card": "Utwórz nową kartę",
- "r-in-list": "na liście",
- "r-in-swimlane": "w diagramie zdarzeń",
- "r-d-add-member": "Dodaj członka",
- "r-d-remove-member": "Usuń członka",
- "r-d-remove-all-member": "Usuń wszystkich członków",
- "r-d-check-all": "Zaznacz wszystkie elementy listy",
- "r-d-uncheck-all": "Odznacz wszystkie elementy listy",
- "r-d-check-one": "Zaznacz element",
- "r-d-uncheck-one": "Odznacz element",
- "r-d-check-of-list": "z listy zadań",
- "r-d-add-checklist": "Dodaj listę zadań",
- "r-d-remove-checklist": "Usuń listę zadań",
- "r-by": "przez",
- "r-add-checklist": "Dodaj listę zadań",
- "r-with-items": "z elementami",
- "r-items-list": "element1,element2,element3",
- "r-add-swimlane": "Dodaj diagram zdarzeń",
- "r-swimlane-name": "Nazwa diagramu",
- "r-board-note": "Uwaga: pozostaw pole puste, aby każda wartość była brana pod uwagę.",
- "r-checklist-note": "Uwaga: wartości elementów listy muszą być oddzielone przecinkami.",
- "r-when-a-card-is-moved": "Gdy karta jest przeniesiona do innej listy",
- "r-set": "Ustaw",
- "r-update": "Aktualizuj",
- "r-datefield": "pole daty",
- "r-df-start-at": "start",
- "r-df-due-at": "rozpoczęcie",
- "r-df-end-at": "zakończenie",
- "r-df-received-at": "odebrano",
- "r-to-current-datetime": "o aktualnej dacie/godzinie",
- "r-remove-value-from": "usunął/usunęła wartość z",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Sposób autoryzacji",
- "authentication-type": "Typ autoryzacji",
- "custom-product-name": "Niestandardowa nazwa produktu",
- "layout": "Układ strony",
- "hide-logo": "Ukryj logo",
- "add-custom-html-after-body-start": "Dodaj niestandardowy kod HTML po <body> starcie",
- "add-custom-html-before-body-end": "Dodaj niestandardowy kod HTML przed </body> końcem",
- "error-undefined": "Coś poszło nie tak",
- "error-ldap-login": "Wystąpił błąd w trakcie logowania",
- "display-authentication-method": "Wyświetl metodę logowania",
- "default-authentication-method": "Domyślna metoda logowania",
- "duplicate-board": "Duplikuj tablicę",
- "people-number": "Liczba użytkowników to:",
- "swimlaneDeletePopup-title": "Usunąć diagram czynności?",
- "swimlane-delete-pop": "Wszystkie akcje będą usunięte z widoku aktywności, nie można będzie przywrócić diagramu czynności. Usunięcie jest nieodwracalne.",
- "restore-all": "Przywróć wszystkie",
- "delete-all": "Usuń wszystkie",
- "loading": "Ładowanie, proszę czekać.",
- "previous_as": "ostatni czas był",
- "act-a-dueAt": "zmienił(a) czas zakończenia na: __timeValue__ w karcie __card__, poprzedni czas: __timeOldValue__",
- "act-a-endAt": "zmienił(a) czas zakończenia na __timeValue__ z __timeOldValue__",
- "act-a-startAt": "zmienił(a) czas rozpoczęcia na __timeValue__ z __timeOldValue__",
- "act-a-receivedAt": "zmienił(a) czas odebrania zadania na __timeValue__ z __timeOldValue__",
- "a-dueAt": "zmieniono czas zakończenia na",
- "a-endAt": "zmieniono czas zakończenia na",
- "a-startAt": "zmieniono czas startu na",
- "a-receivedAt": "zmieniono czas odebrania zadania na",
- "almostdue": "aktualny termin ukończenia %s dobiega końca",
- "pastdue": "aktualny termin ukończenia %s jest w przeszłości",
- "duenow": "aktualny termin ukończenia %s jest dzisiaj",
- "act-withDue": "__card__ ma przypomnienia zakończenia terminu [__board__]",
- "act-almostdue": "przypomina o zbliżającej się dacie ukończenia (__timeValue__) karty __card__",
- "act-pastdue": "przypomina o ubiegłej dacie ukończenia (__timeValue__) karty __card__",
- "act-duenow": "przypomina o ubiegającej teraz dacie ukończenia (__timeValue__) karty __card__",
- "act-atUserComment": "Zostałeś wspomniany na __board__ (__card__)",
- "delete-user-confirm-popup": "Czy jesteś pewien, że chcesz usunąć te konto? Nie można tego wycofać.",
- "accounts-allowUserDelete": "Pozwól użytkownikom na usuwanie własnych kont"
-} \ No newline at end of file
+ "accept": "Akceptuj",
+ "act-activity-notify": "Powiadomienia aktywności",
+ "act-addAttachment": "dodał(a) załącznik __attachment__ do karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
+ "act-deleteAttachment": "usunął/usunęła załącznik __attachment__ na karcie __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
+ "act-addSubtask": "dodał(a) podzadanie __subtask__ na karcie __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
+ "act-addLabel": "dodał(a) etykietę __label__ do karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
+ "act-addedLabel": "dodał(a) etykietę __label__ do karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
+ "act-removeLabel": "usunął/usunęła etykietę __label__ z karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
+ "act-removedLabel": "usunął/usunęła etykietę __label__ z karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
+ "act-addChecklist": "dodał(a) listę zadań __checklist__ do karty __card__ na liście __list__ w diagramie czynności __swimlane__ na tablicy __board__",
+ "act-addChecklistItem": "dodał(a) element listy zadań __checklistItem__ do listy zadań __checklist__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-removeChecklist": "usunął/usunęła listę zadań __checklist__ z karty __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-removeChecklistItem": "usunął/usunęła element listy zadań __checklistItem__ z listy zadań __checkList__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-checkedItem": "zaznaczył(a) __checklistItem__ na liście zadań __checklist__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-uncheckedItem": "odznaczył(a) __checklistItem__ na liście __checklist__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-completeChecklist": "wykonał(a) wszystkie zadania z listy __checklist__ na karcie __card__ na liście __list__ na diagramie czynności__ na tablicy __board__",
+ "act-uncompleteChecklist": "wycofał(a) ukończenie wykonania listy __checklist__ na karcie __card__ na liście __list__ na diagramie czynności__ na tablicy __board__",
+ "act-addComment": "dodał(a) komentarz na karcie __card__: __comment__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-editComment": "edytował(a) komentarz na karcie __card__: __comment__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-deleteComment": "usunął/usunęła komentarz na karcie __card__: __comment__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-createBoard": "utworzył(a) tablicę __board__",
+ "act-createSwimlane": "utworzył(a) diagram czynności __swimlane__ na tablicy __board__",
+ "act-createCard": "utworzył(a) kartę __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-createCustomField": "utworzył(a) niestandardowe pole __customField__ na tablicy __board__",
+ "act-deleteCustomField": "usunął/usunęła niestandardowe pole __customField__ na tablicy __board__",
+ "act-setCustomField": "zmienił(a) niestandardowe pole __customField__: __customFieldValue__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-createList": "dodał(a) listę __list__ do tablicy __board__",
+ "act-addBoardMember": "dodał(a) użytykownika __member__ do tablicy __board__",
+ "act-archivedBoard": "Tablica __board__ została przeniesiona do Archiwum",
+ "act-archivedCard": "przeniósł/przeniosła kartę __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__ do Archiwum",
+ "act-archivedList": "przeniósł/przeniosła listę __list__ na diagramie czynności __swimlane__ na tablicy __board__ do Archiwum",
+ "act-archivedSwimlane": "przeniósł/przeniosła diagram czynności __swimlane__ na tablicy __board__ do Archiwum",
+ "act-importBoard": "zaimportował(a) tablicę __board__",
+ "act-importCard": "zaimportował(a) kartę __card__ do listy __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-importList": "zaimportował(a) listę __list__ na diagram czynności __swimlane__ do tablicy __board__",
+ "act-joinMember": "dodał(a) użytkownika __member__ do karty __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-moveCard": "przeniósł/a kartę __card__ na tablicy __board__ z listy __oldList__ na diagramie czynności __oldSwimlane__ na listę __list__ na diagramie czynności __swimlane__",
+ "act-moveCardToOtherBoard": "przeniósł/a kartę __card__ z listy __oldList__ na diagramie czynności __oldSwimlane__ na tablicy __oldBoard__ do listy __listy__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-removeBoardMember": "usunął/usunęła użytkownika __member__ z tablicy __board__",
+ "act-restoredCard": "przywrócił(a) kartę __card__ na listę __list__ na diagram czynności__ na tablicy __board__",
+ "act-unjoinMember": "usunął/usunęła użytkownika __member__ z karty __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Akcje",
+ "activities": "Ostatnia aktywność",
+ "activity": "Aktywność",
+ "activity-added": "dodał(a) %s z %s",
+ "activity-archived": "%s została przeniesiona do Archiwum",
+ "activity-attached": "załączono %s z %s",
+ "activity-created": "utworzył(a) %s",
+ "activity-customfield-created": "utworzył(a) niestandardowe pole %s",
+ "activity-excluded": "wyłączono %s z %s",
+ "activity-imported": "zaimportowano %s to %s z %s",
+ "activity-imported-board": "zaimportowano %s z %s",
+ "activity-joined": "dołączono %s",
+ "activity-moved": "przeniesiono % z %s to %s",
+ "activity-on": "w %s",
+ "activity-removed": "usunięto %s z %s",
+ "activity-sent": "wysłano %s z %s",
+ "activity-unjoined": "odłączono %s",
+ "activity-subtask-added": "dodano podzadanie do %s",
+ "activity-checked-item": "zaznaczono %s w liście zadań%s z %s",
+ "activity-unchecked-item": "odznaczono %s w liście zadań %s z %s",
+ "activity-checklist-added": "dodał(a) listę zadań do %s",
+ "activity-checklist-removed": "usunął/usunęła listę zadań z %s",
+ "activity-checklist-completed": "wykonał(a) wszystkie zadania z listy __checklist__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "activity-checklist-uncompleted": "nieukończono listy zadań %s z %s",
+ "activity-checklist-item-added": "dodał(a) zadanie '%s' do %s",
+ "activity-checklist-item-removed": "usunął/usunęła element z listy zadań '%s' w %s",
+ "add": "Dodaj",
+ "activity-checked-item-card": "zaznaczono %s w liście zadań %s",
+ "activity-unchecked-item-card": "odznaczono %s w liście zadań %s",
+ "activity-checklist-completed-card": "wykonał(a) wszystkie zadania z listy __checklist__ na karcie __card__ na liście __list__ na diagramie czynności __swimlane__ na tablicy __board__",
+ "activity-checklist-uncompleted-card": "wycofano ukończenie listy zadań %s",
+ "add-attachment": "Dodaj załącznik",
+ "add-board": "Dodaj tablicę",
+ "add-card": "Dodaj kartę",
+ "add-swimlane": "Dodaj diagram czynności",
+ "add-subtask": "Dodaj podzadanie",
+ "add-checklist": "Dodaj listę kontrolną",
+ "add-checklist-item": "Dodaj element do listy kontrolnej",
+ "add-cover": "Dodaj okładkę",
+ "add-label": "Dodaj etykietę",
+ "add-list": "Dodaj listę",
+ "add-members": "Dodaj członków",
+ "added": "Dodane",
+ "addMemberPopup-title": "Członkowie",
+ "admin": "Administrator",
+ "admin-desc": "Może widzieć i edytować karty, usuwać członków oraz zmieniać ustawienia tablicy.",
+ "admin-announcement": "Ogłoszenie",
+ "admin-announcement-active": "Włącz ogłoszenie systemowe",
+ "admin-announcement-title": "Ogłoszenie od administratora",
+ "all-boards": "Wszystkie tablice",
+ "and-n-other-card": "I __count__ inna karta",
+ "and-n-other-card_plural": "I __count__ inne karty",
+ "apply": "Zastosuj",
+ "app-is-offline": "Trwa ładowanie, proszę czekać. Odświeżenie strony może spowodować utratę danych. Jeśli strona się nie przeładowuje, upewnij się, że serwer działa poprawnie.",
+ "archive": "Przenieś do Archiwum",
+ "archive-all": "Przenieś wszystko do Archiwum",
+ "archive-board": "Przenieś tablicę do Archiwum",
+ "archive-card": "Przenieś kartę do Archiwum",
+ "archive-list": "Przenieś listę do Archiwum",
+ "archive-swimlane": "Przenieś diagram czynności do Archiwum",
+ "archive-selection": "Przenieś zaznaczone do Archiwum",
+ "archiveBoardPopup-title": "Przenieść tablicę do Archiwum?",
+ "archived-items": "Zarchiwizuj",
+ "archived-boards": "Tablice w Archiwum",
+ "restore-board": "Przywróć tablicę",
+ "no-archived-boards": "Brak tablic w Archiwum.",
+ "archives": "Zarchiwizuj",
+ "template": "Szablon",
+ "templates": "Szablony",
+ "assign-member": "Dodaj członka",
+ "attached": "załączono",
+ "attachment": "Załącznik",
+ "attachment-delete-pop": "Usunięcie załącznika jest nieodwracalne.",
+ "attachmentDeletePopup-title": "Usunąć załącznik?",
+ "attachments": "Załączniki",
+ "auto-watch": "Automatycznie obserwuj tablice gdy zostaną stworzone",
+ "avatar-too-big": "Awatar jest za duży (maksymalnie 70KB)",
+ "back": "Wstecz",
+ "board-change-color": "Zmień kolor",
+ "board-nb-stars": "%s odznaczeń",
+ "board-not-found": "Nie znaleziono tablicy",
+ "board-private-info": "Ta tablica będzie <strong>prywatna</strong>.",
+ "board-public-info": "Ta tablica będzie <strong>publiczna<strong>.",
+ "boardChangeColorPopup-title": "Zmień tło tablicy",
+ "boardChangeTitlePopup-title": "Zmień nazwę tablicy",
+ "boardChangeVisibilityPopup-title": "Zmień widoczność tablicy",
+ "boardChangeWatchPopup-title": "Zmień sposób wysyłania powiadomień",
+ "boardMenuPopup-title": "Ustawienia tablicy",
+ "boards": "Tablice",
+ "board-view": "Widok tablicy",
+ "board-view-cal": "Kalendarz",
+ "board-view-swimlanes": "Diagramy czynności",
+ "board-view-lists": "Listy",
+ "bucket-example": "Tak jak na przykład \"lista kubełkowa\"",
+ "cancel": "Anuluj",
+ "card-archived": "Ta karta została przeniesiona do Archiwum.",
+ "board-archived": "Ta tablica została przeniesiona do Archiwum.",
+ "card-comments-title": "Ta karta ma %s komentarzy.",
+ "card-delete-notice": "Usunięcie jest trwałe. Stracisz wszystkie akcje powiązane z tą kartą.",
+ "card-delete-pop": "Wszystkie akcje będą usunięte z widoku aktywności, nie można będzie ponownie otworzyć karty. Usunięcie jest nieodwracalne.",
+ "card-delete-suggest-archive": "Możesz przenieść kartę do Archiwum, a następnie usunąć ją z tablicy i zachować ją w Aktywności.",
+ "card-due": "Ukończenie",
+ "card-due-on": "Ukończenie w",
+ "card-spent": "Spędzony czas",
+ "card-edit-attachments": "Edytuj załączniki",
+ "card-edit-custom-fields": "Edytuj niestandardowe pola",
+ "card-edit-labels": "Edytuj etykiety",
+ "card-edit-members": "Edytuj członków",
+ "card-labels-title": "Zmień etykiety karty",
+ "card-members-title": "Dodaj lub usuń członków tablicy z karty.",
+ "card-start": "Rozpoczęcie",
+ "card-start-on": "Zaczyna się o",
+ "cardAttachmentsPopup-title": "Dodaj załącznik z",
+ "cardCustomField-datePopup-title": "Zmień datę",
+ "cardCustomFieldsPopup-title": "Edytuj niestandardowe pola",
+ "cardDeletePopup-title": "Usunąć kartę?",
+ "cardDetailsActionsPopup-title": "Czynności kart",
+ "cardLabelsPopup-title": "Etykiety",
+ "cardMembersPopup-title": "Członkowie",
+ "cardMorePopup-title": "Więcej",
+ "cardTemplatePopup-title": "Utwórz szablon",
+ "cards": "Karty",
+ "cards-count": "Karty",
+ "casSignIn": "Zaloguj się poprzez CAS",
+ "cardType-card": "Karta",
+ "cardType-linkedCard": "Podpięta karta",
+ "cardType-linkedBoard": "Podpięta tablica",
+ "change": "Zmień",
+ "change-avatar": "Zmień avatar",
+ "change-password": "Zmień hasło",
+ "change-permissions": "Zmień uprawnienia",
+ "change-settings": "Zmień ustawienia",
+ "changeAvatarPopup-title": "Zmień avatar",
+ "changeLanguagePopup-title": "Zmień język",
+ "changePasswordPopup-title": "Zmień hasło",
+ "changePermissionsPopup-title": "Zmień uprawnienia",
+ "changeSettingsPopup-title": "Zmień ustawienia",
+ "subtasks": "Podzadania",
+ "checklists": "Listy zadań",
+ "click-to-star": "Kliknij by odznaczyć tę tablicę.",
+ "click-to-unstar": "Kliknij by usunąć odznaczenie tej tablicy.",
+ "clipboard": "Schowka lub poprzez przeciągnij & upuść",
+ "close": "Zamknij",
+ "close-board": "Zamknij tablicę",
+ "close-board-pop": "Będziesz w stanie przywrócić tablicę poprzez kliknięcie przycisku \"Archiwizuj\" w nagłówku strony domowej.",
+ "color-black": "czarny",
+ "color-blue": "niebieski",
+ "color-crimson": "karmazynowy",
+ "color-darkgreen": "ciemnozielony",
+ "color-gold": "złoty",
+ "color-gray": "szary",
+ "color-green": "zielony",
+ "color-indigo": "indygo",
+ "color-lime": "limonkowy",
+ "color-magenta": "fuksjowy",
+ "color-mistyrose": "różowy",
+ "color-navy": "granatowy",
+ "color-orange": "pomarańczowy",
+ "color-paleturquoise": "turkusowy",
+ "color-peachpuff": "brzoskwiniowy",
+ "color-pink": "różowy",
+ "color-plum": "śliwkowy",
+ "color-purple": "fioletowy",
+ "color-red": "czerwony",
+ "color-saddlebrown": "jasnobrązowy",
+ "color-silver": "srebrny",
+ "color-sky": "błękitny",
+ "color-slateblue": "szaroniebieski",
+ "color-white": "miały",
+ "color-yellow": "żółty",
+ "unset-color": "Nieustawiony",
+ "comment": "Komentarz",
+ "comment-placeholder": "Dodaj komentarz",
+ "comment-only": "Tylko komentowanie",
+ "comment-only-desc": "Może tylko komentować w kartach.",
+ "no-comments": "Bez komentarzy",
+ "no-comments-desc": "Nie widzi komentarzy i aktywności.",
+ "computer": "Komputera",
+ "confirm-subtask-delete-dialog": "Czy jesteś pewien, że chcesz usunąć to podzadanie?",
+ "confirm-checklist-delete-dialog": "Czy jesteś pewien, że chcesz usunąć listę zadań?",
+ "copy-card-link-to-clipboard": "Skopiuj łącze karty do schowka",
+ "linkCardPopup-title": "Podepnij kartę",
+ "searchElementPopup-title": "Wyszukaj",
+ "copyCardPopup-title": "Skopiuj kartę",
+ "copyChecklistToManyCardsPopup-title": "Kopiuj szablon listy zadań do wielu kart",
+ "copyChecklistToManyCardsPopup-instructions": "Docelowe tytuły i opisy kart są w formacie JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Tytuł pierwszej karty\", \"description\":\"Opis pierwszej karty\"}, {\"title\":\"Tytuł drugiej karty\",\"description\":\"Opis drugiej karty\"},{\"title\":\"Tytuł ostatniej karty\",\"description\":\"Opis ostatniej karty\"} ]",
+ "create": "Utwórz",
+ "createBoardPopup-title": "Utwórz tablicę",
+ "chooseBoardSourcePopup-title": "Import tablicy",
+ "createLabelPopup-title": "Utwórz etykietę",
+ "createCustomField": "Utwórz pole",
+ "createCustomFieldPopup-title": "Utwórz pole",
+ "current": "obecny",
+ "custom-field-delete-pop": "Nie ma możliwości wycofania tej operacji. To usunie te niestandardowe pole ze wszystkich kart oraz usunie ich całą historię.",
+ "custom-field-checkbox": "Pole wyboru",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Lista rozwijana",
+ "custom-field-dropdown-none": "(puste)",
+ "custom-field-dropdown-options": "Opcje listy",
+ "custom-field-dropdown-options-placeholder": "Naciśnij przycisk Enter by zobaczyć więcej opcji",
+ "custom-field-dropdown-unknown": "(nieznany)",
+ "custom-field-number": "Numer",
+ "custom-field-text": "Tekst",
+ "custom-fields": "Niestandardowe pola",
+ "date": "Data",
+ "decline": "Odrzuć",
+ "default-avatar": "Domyślny avatar",
+ "delete": "Usuń",
+ "deleteCustomFieldPopup-title": "Usunąć niestandardowe pole?",
+ "deleteLabelPopup-title": "Usunąć etykietę?",
+ "description": "Opis",
+ "disambiguateMultiLabelPopup-title": "Ujednolić etykiety czynności",
+ "disambiguateMultiMemberPopup-title": "Ujednolić etykiety członków",
+ "discard": "Odrzuć",
+ "done": "Zrobiono",
+ "download": "Pobierz",
+ "edit": "Edytuj",
+ "edit-avatar": "Zmień avatar",
+ "edit-profile": "Edytuj profil",
+ "edit-wip-limit": "Zmień limit kart na liście",
+ "soft-wip-limit": "Pozwól na nadmiarowe karty na liście",
+ "editCardStartDatePopup-title": "Zmień datę rozpoczęcia",
+ "editCardDueDatePopup-title": "Zmień datę ukończenia",
+ "editCustomFieldPopup-title": "Edytuj pole",
+ "editCardSpentTimePopup-title": "Zmień spędzony czas",
+ "editLabelPopup-title": "Zmień etykietę",
+ "editNotificationPopup-title": "Zmień tryb powiadamiania",
+ "editProfilePopup-title": "Edytuj profil",
+ "email": "Email",
+ "email-enrollAccount-subject": "Konto zostało utworzone na __siteName__",
+ "email-enrollAccount-text": "Witaj __user__,\nAby zacząć korzystać z serwisu, kliknij w link poniżej.\n__url__\nDzięki.",
+ "email-fail": "Wysyłanie emaila nie powiodło się.",
+ "email-fail-text": "Bład w trakcie wysyłania wiadomości email",
+ "email-invalid": "Nieprawidłowy email",
+ "email-invite": "Zaproś przez email",
+ "email-invite-subject": "__inviter__ wysłał Ci zaproszenie",
+ "email-invite-text": "Drogi __user__,\n__inviter__ zaprosił Cię do współpracy w tablicy \"__board__\".\nZobacz więcej:\n__url__\nDzięki.",
+ "email-resetPassword-subject": "Zresetuj swoje hasło na __siteName__",
+ "email-resetPassword-text": "Witaj __user__,\nAby zresetować hasło, kliknij w link poniżej.\n__url__\nDzięki.",
+ "email-sent": "Email wysłany",
+ "email-verifyEmail-subject": "Zweryfikuj swój adres email na __siteName__",
+ "email-verifyEmail-text": "Witaj __user__,\nAby zweryfikować adres email, kliknij w link poniżej.\n__url__\nDzięki.",
+ "enable-wip-limit": "Włącz limit kart na liście",
+ "error-board-doesNotExist": "Ta tablica nie istnieje",
+ "error-board-notAdmin": "Musisz być administratorem tej tablicy żeby to zrobić",
+ "error-board-notAMember": "Musisz być członkiem tej tablicy, żeby wykonać tę czynność",
+ "error-json-malformed": "Twoja fraza nie jest w formacie JSON",
+ "error-json-schema": "Twoje dane JSON nie zawierają prawidłowych informacji w poprawnym formacie",
+ "error-list-doesNotExist": "Ta lista nie isnieje",
+ "error-user-doesNotExist": "Ten użytkownik nie istnieje",
+ "error-user-notAllowSelf": "Nie możesz zaprosić samego siebie",
+ "error-user-notCreated": "Ten użytkownik nie został stworzony",
+ "error-username-taken": "Ta nazwa jest już zajęta",
+ "error-email-taken": "Adres email jest już zarezerwowany",
+ "export-board": "Eksportuj tablicę",
+ "filter": "Filtr",
+ "filter-cards": "Odfiltruj karty",
+ "filter-clear": "Usuń filter",
+ "filter-no-label": "Brak etykiety",
+ "filter-no-member": "Brak członków",
+ "filter-no-custom-fields": "Brak niestandardowych pól",
+ "filter-on": "Filtr jest włączony",
+ "filter-on-desc": "Filtrujesz karty na tej tablicy. Kliknij tutaj by edytować filtr.",
+ "filter-to-selection": "Odfiltruj zaznaczenie",
+ "advanced-filter-label": "Zaawansowane filtry",
+ "advanced-filter-description": "Zaawansowane filtry pozwalają na wykorzystanie ciągu znaków wraz z następującymi operatorami: == != <= >= && || (). Spacja jest używana jako separator pomiędzy operatorami. Możesz przefiltrowywać wszystkie niestandardowe pola wpisując ich nazwy lub wartości, na przykład: Pole1 == Wartość1.\nUwaga: Jeśli pola lub wartości zawierają spację, musisz je zawrzeć w pojedyncze cudzysłowie, na przykład: 'Pole 1' == 'Wartość 1'. Dla pojedynczych znaków, które powinny być pominięte należy użyć \\, na przykład Pole1 == I\\'m. Możesz także wykorzystywać mieszane warunki, na przykład P1 == W1 || P1 == W2. Standardowo wszystkie operatory są interpretowane od lewej do prawej. Możesz także zmienić kolejność interpretacji wykorzystując nawiasy, na przykład P1 == W1 && (P2 == W2 || P2 == W3). Możesz także wyszukiwać tekstowo wykorzystując wyrażenia regularne, na przykład: P1 == /Tes.*/i",
+ "fullname": "Pełna nazwa",
+ "header-logo-title": "Wróć do swojej strony z tablicami.",
+ "hide-system-messages": "Ukryj wiadomości systemowe",
+ "headerBarCreateBoardPopup-title": "Utwórz tablicę",
+ "home": "Strona główna",
+ "import": "Importuj",
+ "link": "Podłącz",
+ "import-board": "importuj tablice",
+ "import-board-c": "Import tablicy",
+ "import-board-title-trello": "Importuj tablicę z Trello",
+ "import-board-title-wekan": "Importuj tablicę z poprzedniego eksportu",
+ "import-sandstorm-backup-warning": "Nie usuwaj danych, które importujesz ze źródłowej tablicy lub Trello zanim upewnisz się, że wszystko zostało prawidłowo przeniesione przy czym brane jest pod uwagę ponowne uruchomienie strony, ponieważ w przypadku błędu braku tablicy stracisz dane.",
+ "import-sandstorm-warning": "Zaimportowana tablica usunie wszystkie istniejące dane na aktualnej tablicy oraz zastąpi ją danymi z tej importowanej.",
+ "from-trello": "Z Trello",
+ "from-wekan": "Z poprzedniego eksportu",
+ "import-board-instruction-trello": "W twojej tablicy na Trello przejdź do 'Menu', następnie 'Więcej', 'Drukuj i eksportuj', 'Eksportuj jako JSON' i skopiuj wynik",
+ "import-board-instruction-wekan": "Na Twojej tablicy przejdź do 'Menu', a następnie wybierz 'Eksportuj tablicę' i skopiuj tekst w pobranym pliku.",
+ "import-board-instruction-about-errors": "W przypadku, gdy otrzymujesz błędy importowania tablicy, czasami importowanie pomimo wszystko działa poprawnie i tablica znajduje się w oknie Wszystkie tablice.",
+ "import-json-placeholder": "Wklej Twoje dane JSON tutaj",
+ "import-map-members": "Przypisz członków",
+ "import-members-map": "Twoje zaimportowane tablice mają kilku członków. Proszę wybierz członków których chcesz zaimportować dla Twoich użytkowników",
+ "import-show-user-mapping": "Przejrzyj wybranych członków",
+ "import-user-select": "Wybierz istniejącego użytkownika, który ma stać się członkiem",
+ "importMapMembersAddPopup-title": "Wybierz użytkownika",
+ "info": "Wersja",
+ "initials": "Inicjały",
+ "invalid-date": "Błędna data",
+ "invalid-time": "Błędny czas",
+ "invalid-user": "Niepoprawna nazwa użytkownika",
+ "joined": "dołączył",
+ "just-invited": "Zostałeś zaproszony do tej tablicy",
+ "keyboard-shortcuts": "Skróty klawiaturowe",
+ "label-create": "Utwórz etykietę",
+ "label-default": "'%s' etykieta (domyślna)",
+ "label-delete-pop": "Nie da się tego wycofać. To usunie tę etykietę ze wszystkich kart i usunie ich historię.",
+ "labels": "Etykiety",
+ "language": "Język",
+ "last-admin-desc": "Nie możesz zmienić roli użytkownika, ponieważ musi istnieć co najmniej jeden administrator.",
+ "leave-board": "Opuść tablicę",
+ "leave-board-pop": "Czy jesteś pewien, że chcesz opuścić tablicę __boardTitle__? Zostaniesz usunięty ze wszystkich kart tej tablicy.",
+ "leaveBoardPopup-title": "Opuścić tablicę?",
+ "link-card": "Link do tej karty",
+ "list-archive-cards": "Przenieś wszystkie karty z tej listy do Archiwum",
+ "list-archive-cards-pop": "To usunie wszystkie karty z tej listy z tej tablicy. Aby przejrzeć karty w Archiwum i przywrócić na tablicę, kliknij \"Menu\" > \"Archiwizuj\".",
+ "list-move-cards": "Przenieś wszystkie karty z tej listy",
+ "list-select-cards": "Zaznacz wszystkie karty z tej listy",
+ "set-color-list": "Ustaw kolor",
+ "listActionPopup-title": "Lista akcji",
+ "swimlaneActionPopup-title": "Opcje diagramu czynności",
+ "swimlaneAddPopup-title": "Dodaj diagram czynności poniżej",
+ "listImportCardPopup-title": "Zaimportuj kartę z Trello",
+ "listMorePopup-title": "Więcej",
+ "link-list": "Podepnij do tej listy",
+ "list-delete-pop": "Wszystkie czynności zostaną usunięte z Aktywności i nie będziesz w stanie przywrócić listy. Nie ma możliwości cofnięcia tej operacji.",
+ "list-delete-suggest-archive": "Możesz przenieść listę do Archiwum, a następnie usunąć ją z tablicy i zachować ją w Aktywności.",
+ "lists": "Listy",
+ "swimlanes": "Diagramy czynności",
+ "log-out": "Wyloguj",
+ "log-in": "Zaloguj",
+ "loginPopup-title": "Zaloguj",
+ "memberMenuPopup-title": "Ustawienia członków",
+ "members": "Członkowie",
+ "menu": "Menu",
+ "move-selection": "Przenieś zaznaczone",
+ "moveCardPopup-title": "Przenieś kartę",
+ "moveCardToBottom-title": "Przenieś na dół",
+ "moveCardToTop-title": "Przenieś na górę",
+ "moveSelectionPopup-title": "Przenieś zaznaczone",
+ "multi-selection": "Wielokrotne zaznaczenie",
+ "multi-selection-on": "Wielokrotne zaznaczenie jest włączone",
+ "muted": "Wycisz",
+ "muted-info": "Nie dostaniesz powiadomienia o zmianach w tej tablicy.",
+ "my-boards": "Moje tablice",
+ "name": "Nazwa",
+ "no-archived-cards": "Brak kart w Archiwum.",
+ "no-archived-lists": "Brak list w Archiwum.",
+ "no-archived-swimlanes": "Brak diagramów czynności w Archiwum",
+ "no-results": "Brak wyników",
+ "normal": "Użytkownik standardowy",
+ "normal-desc": "Może widzieć i edytować karty. Nie może zmieniać ustawiań.",
+ "not-accepted-yet": "Zaproszenie jeszcze niezaakceptowane",
+ "notify-participate": "Otrzymuj aktualizacje kart, w których uczestniczysz jako twórca lub członek.",
+ "notify-watch": "Otrzymuj powiadomienia z tablic, list i kart, które obserwujesz",
+ "optional": "opcjonalny",
+ "or": "lub",
+ "page-maybe-private": "Ta strona może być prywatna. Możliwe, że możesz ją zobaczyć po <a href='%s'>zalogowaniu</a>.",
+ "page-not-found": "Strona nie znaleziona.",
+ "password": "Hasło",
+ "paste-or-dragdrop": "wklej lub przeciągnij & upuść (tylko grafika)",
+ "participating": "Uczestniczysz",
+ "preview": "Podgląd",
+ "previewAttachedImagePopup-title": "Podgląd",
+ "previewClipboardImagePopup-title": "Podgląd",
+ "private": "Prywatny",
+ "private-desc": "Ta tablica jest prywatna. Tylko osoby dodane do tej tablicy mogą ją zobaczyć i edytować.",
+ "profile": "Profil",
+ "public": "Publiczny",
+ "public-desc": "Ta tablica jest publiczna. Jest widoczna dla wszystkich, którzy mają do niej odnośnik i będzie wynikiem silników wyszukiwania takich jak Google. Tylko użytkownicy dodani do tablicy mogą ją edytować.",
+ "quick-access-description": "Odznacz tablicę aby dodać skrót na tym pasku.",
+ "remove-cover": "Usuń okładkę",
+ "remove-from-board": "Usuń z tablicy",
+ "remove-label": "Usuń etykietę",
+ "listDeletePopup-title": "Usunąć listę?",
+ "remove-member": "Usuń członka",
+ "remove-member-from-card": "Usuń z karty",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Usunąć członka?",
+ "rename": "Zmień nazwę",
+ "rename-board": "Zmień nazwę tablicy",
+ "restore": "Przywróć",
+ "save": "Zapisz",
+ "search": "Wyszukaj",
+ "rules": "Reguły",
+ "search-cards": "Szukaj spośród tytułów kart oraz opisów na tej tablicy",
+ "search-example": "Czego mam szukać?",
+ "select-color": "Wybierz kolor",
+ "set-wip-limit-value": "Ustaw maksymalny limit zadań na tej liście",
+ "setWipLimitPopup-title": "Ustaw limit kart na liście",
+ "shortcut-assign-self": "Przypisz siebie do obecnej karty",
+ "shortcut-autocomplete-emoji": "Autouzupełnianie emoji",
+ "shortcut-autocomplete-members": "Autouzupełnianie członków",
+ "shortcut-clear-filters": "Usuń wszystkie filtry",
+ "shortcut-close-dialog": "Zamknij okno",
+ "shortcut-filter-my-cards": "Filtruj moje karty",
+ "shortcut-show-shortcuts": "Przypnij do listy skrótów",
+ "shortcut-toggle-filterbar": "Przełącz boczny pasek filtru",
+ "shortcut-toggle-sidebar": "Przełącz boczny pasek tablicy",
+ "show-cards-minimum-count": "Pokaż licznik kart, jeśli lista zawiera więcej niż",
+ "sidebar-open": "Otwórz pasek boczny",
+ "sidebar-close": "Zamknij pasek boczny",
+ "signupPopup-title": "Utwórz konto",
+ "star-board-title": "Kliknij by oznaczyć tę tablicę gwiazdką. Pojawi się wtedy na liście tablic na górze.",
+ "starred-boards": "Odznaczone tablice",
+ "starred-boards-description": "Tablice oznaczone gwiazdką pojawią się na liście na górze.",
+ "subscribe": "Zapisz się",
+ "team": "Zespół",
+ "this-board": "ta tablica",
+ "this-card": "ta karta",
+ "spent-time-hours": "Spędzony czas (w godzinach)",
+ "overtime-hours": "Nadgodziny (czas)",
+ "overtime": "Dodatkowo",
+ "has-overtime-cards": "Ma dodatkowych kart",
+ "has-spenttime-cards": "Ma karty z wykorzystanym czasem",
+ "time": "Czas",
+ "title": "Tytuł",
+ "tracking": "Śledzenie",
+ "tracking-info": "Dostaniesz powiadomienie o zmianach kart, w których bierzesz udział jako twórca lub członek.",
+ "type": "Typ",
+ "unassign-member": "Nieprzypisany członek",
+ "unsaved-description": "Masz niezapisany opis.",
+ "unwatch": "Nie obserwuj",
+ "upload": "Wyślij",
+ "upload-avatar": "Wyślij avatar",
+ "uploaded-avatar": "Wysłany avatar",
+ "username": "Nazwa użytkownika",
+ "view-it": "Zobacz",
+ "warn-list-archived": "Ostrzeżenie: ta karta jest na liście będącej w Archiwum",
+ "watch": "Obserwuj",
+ "watching": "Obserwujesz",
+ "watching-info": "Dostaniesz powiadomienie o każdej zmianie na tej tablicy.",
+ "welcome-board": "Tablica powitalna",
+ "welcome-swimlane": "Kamień milowy 1",
+ "welcome-list1": "Podstawy",
+ "welcome-list2": "Zaawansowane",
+ "card-templates-swimlane": "Utwórz szablony",
+ "list-templates-swimlane": "Wyświetl szablony",
+ "board-templates-swimlane": "Szablony tablic",
+ "what-to-do": "Co chcesz zrobić?",
+ "wipLimitErrorPopup-title": "Nieprawidłowy limit kart na liście",
+ "wipLimitErrorPopup-dialog-pt1": "Aktualna ilość kart na tej liście jest większa niż aktualny zdefiniowany limit kart.",
+ "wipLimitErrorPopup-dialog-pt2": "Proszę przenieś zadania z tej listy lub zmień limit kart na tej liście na wyższy.",
+ "admin-panel": "Panel administracyjny",
+ "settings": "Ustawienia",
+ "people": "Osoby",
+ "registration": "Rejestracja",
+ "disable-self-registration": "Wyłącz samodzielną rejestrację",
+ "invite": "Zaproś",
+ "invite-people": "Zaproś osoby",
+ "to-boards": "Do tablic(y)",
+ "email-addresses": "Adres e-mail",
+ "smtp-host-description": "Adres serwera SMTP, który wysyła Twoje maile.",
+ "smtp-port-description": "Port, który Twój serwer SMTP wykorzystuje do wysyłania emaili.",
+ "smtp-tls-description": "Włącz wsparcie TLS dla serwera SMTP",
+ "smtp-host": "Serwer SMTP",
+ "smtp-port": "Port SMTP",
+ "smtp-username": "Nazwa użytkownika",
+ "smtp-password": "Hasło",
+ "smtp-tls": "Wsparcie dla TLS",
+ "send-from": "Od",
+ "send-smtp-test": "Wyślij wiadomość testową do siebie",
+ "invitation-code": "Kod z zaproszenia",
+ "email-invite-register-subject": "__inviter__ wysłał Ci zaproszenie",
+ "email-invite-register-text": "Drogi __user__,\n\n__inviter__ zaprasza Cię do współpracy na naszej tablicy kanban.\n\nAby kontynuować, wejdź w poniższy link:\n__url__\n\nTwój kod zaproszenia to: __icode__\n\nDziękuję.",
+ "email-smtp-test-subject": "Wiadomość testowa SMTP",
+ "email-smtp-test-text": "Wiadomość testowa została wysłana z powodzeniem.",
+ "error-invitation-code-not-exist": "Kod zaproszenia nie istnieje",
+ "error-notAuthorized": "Nie jesteś uprawniony do przeglądania tej strony.",
+ "outgoing-webhooks": "Wychodzące webhooki",
+ "outgoingWebhooksPopup-title": "Wychodzące webhooki",
+ "boardCardTitlePopup-title": "Filtruj poprzez nazwę karty",
+ "new-outgoing-webhook": "Nowy wychodzący webhook",
+ "no-name": "(nieznany)",
+ "Node_version": "Wersja Node",
+ "OS_Arch": "Architektura systemu",
+ "OS_Cpus": "Ilość rdzeni systemu",
+ "OS_Freemem": "Wolna pamięć RAM",
+ "OS_Loadavg": "Średnie obciążenie systemu",
+ "OS_Platform": "Platforma systemu",
+ "OS_Release": "Wersja jądra",
+ "OS_Totalmem": "Dostępna pamięć RAM",
+ "OS_Type": "Typ systemu",
+ "OS_Uptime": "Czas działania systemu",
+ "days": "dni",
+ "hours": "godzin",
+ "minutes": "minut",
+ "seconds": "sekund",
+ "show-field-on-card": "Pokaż te pole na karcie",
+ "automatically-field-on-card": "Automatycznie stwórz pole dla wszystkich kart",
+ "showLabel-field-on-card": "Pokaż pole etykiety w minikarcie",
+ "yes": "Tak",
+ "no": "Nie",
+ "accounts": "Konto",
+ "accounts-allowEmailChange": "Zezwól na zmianę adresu email",
+ "accounts-allowUserNameChange": "Zezwól na zmianę nazwy użytkownika",
+ "createdAt": "Stworzono o",
+ "verified": "Zweryfikowane",
+ "active": "Aktywny",
+ "card-received": "Odebrano",
+ "card-received-on": "Odebrano",
+ "card-end": "Koniec",
+ "card-end-on": "Kończy się",
+ "editCardReceivedDatePopup-title": "Zmień datę odebrania",
+ "editCardEndDatePopup-title": "Zmień datę ukończenia",
+ "setCardColorPopup-title": "Ustaw kolor",
+ "setCardActionsColorPopup-title": "Wybierz kolor",
+ "setSwimlaneColorPopup-title": "Wybierz kolor",
+ "setListColorPopup-title": "Wybierz kolor",
+ "assigned-by": "Przypisane przez",
+ "requested-by": "Zlecone przez",
+ "board-delete-notice": "Usuwanie jest permanentne. Stracisz wszystkie listy, kart oraz czynności przypisane do tej tablicy.",
+ "delete-board-confirm-popup": "Wszystkie listy, etykiety oraz aktywności zostaną usunięte i nie będziesz w stanie przywrócić zawartości tablicy. Tego nie da się cofnąć.",
+ "boardDeletePopup-title": "Usunąć tablicę?",
+ "delete-board": "Usuń tablicę",
+ "default-subtasks-board": "Podzadania dla tablicy __board__",
+ "default": "Domyślny",
+ "queue": "Kolejka",
+ "subtask-settings": "Ustawienia podzadań",
+ "boardSubtaskSettingsPopup-title": "Ustawienia tablicy podzadań",
+ "show-subtasks-field": "Karty mogą mieć podzadania",
+ "deposit-subtasks-board": "Przechowuj podzadania na tablicy:",
+ "deposit-subtasks-list": "Początkowa lista dla podzadań jest przechowywana w:",
+ "show-parent-in-minicard": "Pokaż rodzica w minikarcie:",
+ "prefix-with-full-path": "Prefix z pełną ścieżką",
+ "prefix-with-parent": "Prefix z rodzicem",
+ "subtext-with-full-path": "Podtekst z pełną ścieżką",
+ "subtext-with-parent": "Podtekst z rodzicem",
+ "change-card-parent": "Zmień rodzica karty",
+ "parent-card": "Karta rodzica",
+ "source-board": "Tablica źródłowa",
+ "no-parent": "Nie pokazuj rodzica",
+ "activity-added-label": "dodał(a) etykietę '%s' z '%s'",
+ "activity-removed-label": "usunął/usunęła etykietę '%s' z '%s'",
+ "activity-delete-attach": "usunął/usunęła załącznik z %s",
+ "activity-added-label-card": "dodał(a) etykietę '%s'",
+ "activity-removed-label-card": "usunął/usunęła etykietę '%s'",
+ "activity-delete-attach-card": "usunął/usunęła załącznik",
+ "activity-set-customfield": "ustawiono niestandardowe pole '%s' do '%s' na '%s'",
+ "activity-unset-customfield": "wyczyszczono niestandardowe pole '%s' na '%s'",
+ "r-rule": "Reguła",
+ "r-add-trigger": "Dodaj przełącznik",
+ "r-add-action": "Dodaj czynność",
+ "r-board-rules": "Reguły tablicy",
+ "r-add-rule": "Dodaj regułę",
+ "r-view-rule": "Zobacz regułę",
+ "r-delete-rule": "Usuń regułę",
+ "r-new-rule-name": "Nowa nazwa reguły",
+ "r-no-rules": "Brak regułę",
+ "r-when-a-card": "Gdy karta",
+ "r-is": "jest",
+ "r-is-moved": "jest przenoszona",
+ "r-added-to": "dodana do",
+ "r-removed-from": "usunął/usunęła z",
+ "r-the-board": "tablicy",
+ "r-list": "lista",
+ "set-filter": "Ustaw filtr",
+ "r-moved-to": "Przeniesiono do",
+ "r-moved-from": "Przeniesiono z",
+ "r-archived": "Przeniesione z Archiwum",
+ "r-unarchived": "Przywrócone z Archiwum",
+ "r-a-card": "karta",
+ "r-when-a-label-is": "Gdy etykieta jest",
+ "r-when-the-label": "Gdy etykieta jest",
+ "r-list-name": "nazwa listy",
+ "r-when-a-member": "Gdy członek jest",
+ "r-when-the-member": "Gdy członek jest",
+ "r-name": "nazwa",
+ "r-when-a-attach": "Gdy załącznik",
+ "r-when-a-checklist": "Gdy lista zadań jest",
+ "r-when-the-checklist": "Gdy lista zadań",
+ "r-completed": "Ukończono",
+ "r-made-incomplete": "Niedokończone",
+ "r-when-a-item": "Gdy lista zadań jest",
+ "r-when-the-item": "Gdy element listy zadań",
+ "r-checked": "Zaznaczony",
+ "r-unchecked": "Odznaczony",
+ "r-move-card-to": "Przenieś kartę do",
+ "r-top-of": "Góra od",
+ "r-bottom-of": "Dół od",
+ "r-its-list": "tej listy",
+ "r-archive": "Przenieś do Archiwum",
+ "r-unarchive": "Przywróć z Archiwum",
+ "r-card": "karta",
+ "r-add": "Dodaj",
+ "r-remove": "Usuń",
+ "r-label": "etykieta",
+ "r-member": "członek",
+ "r-remove-all": "Usuń wszystkich członków tej karty",
+ "r-set-color": "Ustaw kolor na",
+ "r-checklist": "lista zadań",
+ "r-check-all": "Zaznacz wszystkie",
+ "r-uncheck-all": "Odznacz wszystkie",
+ "r-items-check": "elementy listy",
+ "r-check": "Zaznacz",
+ "r-uncheck": "Odznacz",
+ "r-item": "element",
+ "r-of-checklist": "z listy zadań",
+ "r-send-email": "Wyślij wiadomość email",
+ "r-to": "do",
+ "r-subject": "temat",
+ "r-rule-details": "Szczegóły reguł",
+ "r-d-move-to-top-gen": "Przenieś kartę na górę tej listy",
+ "r-d-move-to-top-spec": "Przenieś kartę na górę listy",
+ "r-d-move-to-bottom-gen": "Przenieś kartę na dół tej listy",
+ "r-d-move-to-bottom-spec": "Przenieś kartę na dół listy",
+ "r-d-send-email": "Wyślij wiadomość email",
+ "r-d-send-email-to": "do",
+ "r-d-send-email-subject": "temat",
+ "r-d-send-email-message": "wiadomość",
+ "r-d-archive": "Przenieś kartę z Archiwum",
+ "r-d-unarchive": "Przywróć kartę z Archiwum",
+ "r-d-add-label": "Dodaj etykietę",
+ "r-d-remove-label": "Usuń etykietę",
+ "r-create-card": "Utwórz nową kartę",
+ "r-in-list": "na liście",
+ "r-in-swimlane": "w diagramie zdarzeń",
+ "r-d-add-member": "Dodaj członka",
+ "r-d-remove-member": "Usuń członka",
+ "r-d-remove-all-member": "Usuń wszystkich członków",
+ "r-d-check-all": "Zaznacz wszystkie elementy listy",
+ "r-d-uncheck-all": "Odznacz wszystkie elementy listy",
+ "r-d-check-one": "Zaznacz element",
+ "r-d-uncheck-one": "Odznacz element",
+ "r-d-check-of-list": "z listy zadań",
+ "r-d-add-checklist": "Dodaj listę zadań",
+ "r-d-remove-checklist": "Usuń listę zadań",
+ "r-by": "przez",
+ "r-add-checklist": "Dodaj listę zadań",
+ "r-with-items": "z elementami",
+ "r-items-list": "element1,element2,element3",
+ "r-add-swimlane": "Dodaj diagram zdarzeń",
+ "r-swimlane-name": "Nazwa diagramu",
+ "r-board-note": "Uwaga: pozostaw pole puste, aby każda wartość była brana pod uwagę.",
+ "r-checklist-note": "Uwaga: wartości elementów listy muszą być oddzielone przecinkami.",
+ "r-when-a-card-is-moved": "Gdy karta jest przeniesiona do innej listy",
+ "r-set": "Ustaw",
+ "r-update": "Aktualizuj",
+ "r-datefield": "pole daty",
+ "r-df-start-at": "start",
+ "r-df-due-at": "rozpoczęcie",
+ "r-df-end-at": "zakończenie",
+ "r-df-received-at": "odebrano",
+ "r-to-current-datetime": "o aktualnej dacie/godzinie",
+ "r-remove-value-from": "usunął/usunęła wartość z",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Sposób autoryzacji",
+ "authentication-type": "Typ autoryzacji",
+ "custom-product-name": "Niestandardowa nazwa produktu",
+ "layout": "Układ strony",
+ "hide-logo": "Ukryj logo",
+ "add-custom-html-after-body-start": "Dodaj niestandardowy kod HTML po <body> starcie",
+ "add-custom-html-before-body-end": "Dodaj niestandardowy kod HTML przed </body> końcem",
+ "error-undefined": "Coś poszło nie tak",
+ "error-ldap-login": "Wystąpił błąd w trakcie logowania",
+ "display-authentication-method": "Wyświetl metodę logowania",
+ "default-authentication-method": "Domyślna metoda logowania",
+ "duplicate-board": "Duplikuj tablicę",
+ "people-number": "Liczba użytkowników to:",
+ "swimlaneDeletePopup-title": "Usunąć diagram czynności?",
+ "swimlane-delete-pop": "Wszystkie akcje będą usunięte z widoku aktywności, nie można będzie przywrócić diagramu czynności. Usunięcie jest nieodwracalne.",
+ "restore-all": "Przywróć wszystkie",
+ "delete-all": "Usuń wszystkie",
+ "loading": "Ładowanie, proszę czekać.",
+ "previous_as": "ostatni czas był",
+ "act-a-dueAt": "zmienił(a) czas zakończenia na: __timeValue__ w karcie __card__, poprzedni czas: __timeOldValue__",
+ "act-a-endAt": "zmienił(a) czas zakończenia na __timeValue__ z __timeOldValue__",
+ "act-a-startAt": "zmienił(a) czas rozpoczęcia na __timeValue__ z __timeOldValue__",
+ "act-a-receivedAt": "zmienił(a) czas odebrania zadania na __timeValue__ z __timeOldValue__",
+ "a-dueAt": "zmieniono czas zakończenia na",
+ "a-endAt": "zmieniono czas zakończenia na",
+ "a-startAt": "zmieniono czas startu na",
+ "a-receivedAt": "zmieniono czas odebrania zadania na",
+ "almostdue": "aktualny termin ukończenia %s dobiega końca",
+ "pastdue": "aktualny termin ukończenia %s jest w przeszłości",
+ "duenow": "aktualny termin ukończenia %s jest dzisiaj",
+ "act-withDue": "__card__ ma przypomnienia zakończenia terminu [__board__]",
+ "act-almostdue": "przypomina o zbliżającej się dacie ukończenia (__timeValue__) karty __card__",
+ "act-pastdue": "przypomina o ubiegłej dacie ukończenia (__timeValue__) karty __card__",
+ "act-duenow": "przypomina o ubiegającej teraz dacie ukończenia (__timeValue__) karty __card__",
+ "act-atUserComment": "Zostałeś wspomniany na __board__ (__card__)",
+ "delete-user-confirm-popup": "Czy jesteś pewien, że chcesz usunąć te konto? Nie można tego wycofać.",
+ "accounts-allowUserDelete": "Pozwól użytkownikom na usuwanie własnych kont",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json
index 746baced..c81504d0 100644
--- a/i18n/pt-BR.i18n.json
+++ b/i18n/pt-BR.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Aceitar",
- "act-activity-notify": "Notificação de atividade",
- "act-addAttachment": "adicionado anexo __attachment__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-deleteAttachment": "excluído anexo __attachment__ do cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-addSubtask": "adicionada subtarefa __subtask__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-addLabel": "Adicionada etiqueta __label__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-addedLabel": "Adicionada etiqueta __label__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-removeLabel": "Removida etiqueta __label__ do cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-removedLabel": "Removida etiqueta __label__ do cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-addChecklist": "adicionada lista de verificação __checklist__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-addChecklistItem": "adicionado o item __checklistItem__ a lista de verificação__checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-removeChecklist": "emovida a lista de verificação __checklist__ do cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-removeChecklistItem": "removido item __checklistItem__ da lista de verificação __checkList__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-checkedItem": "marcado __checklistItem__ na lista de verificação __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-uncheckedItem": "desmarcado __checklistItem__ na lista __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-completeChecklist": "completada a lista de verificação __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-uncompleteChecklist": "lista de verificação incompleta __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-addComment": "comentou no cartão __card__: __comment__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-editComment": "editado comentário no cartão __card__: __comment__ da lista __list__ da raia __swimlane__ do quadro __board__",
- "act-deleteComment": "excluído comentário no cartão __card__: __comment__ da lista __list__ da raia __swimlane__ do quadro __board__",
- "act-createBoard": "criado quadro__board__",
- "act-createSwimlane": "criada a raia __swimlane__ no quadro __board__",
- "act-createCard": "criado cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-createCustomField": "criado campo customizado __customField__ do quadro __board__",
- "act-deleteCustomField": "excluído campo customizado __customField__ do quadro __board__",
- "act-setCustomField": "editado campo customizado __customField__: __customFieldValue__ no cartão __card__ da lista __list__ da raia __swimlane__ do quadro __board__",
- "act-createList": "adicionada lista __list__ ao quadro __board__",
- "act-addBoardMember": "adicionado membro __member__ ao quadro __board__",
- "act-archivedBoard": "Quadro __board__ foi Arquivado",
- "act-archivedCard": "Cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__ foi Arquivado",
- "act-archivedList": "Lista __list__ em raia __swimlane__ no quadro __board__ foi Arquivada",
- "act-archivedSwimlane": "Raia __swimlane__ no quadro __board__ foi Arquivada",
- "act-importBoard": "importado quadro __board__",
- "act-importCard": "importado cartão __card__ para lista __list__ em raia __swimlane__ no quadro __board__",
- "act-importList": "importada lista __list__ para raia __swimlane__ no quadro __board__",
- "act-joinMember": "adicionado membro __member__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-moveCard": "movido cartão __card__ do quadro __board__ da raia __oldSwimlane__ da lista __oldList__ para a raia __swimlane__ na lista __list__",
- "act-moveCardToOtherBoard": "movido cartão __card__ da lista __oldList__ em raia __oldSwimlane__ no quadro __oldBoard__ para lista __list__ em raia __swimlane__ no quadro __board__",
- "act-removeBoardMember": "removido membro __member__ do quadro __board__",
- "act-restoredCard": "restaurado cartão __card__ a lista __list__ em raia __swimlane__ no quadro __board__",
- "act-unjoinMember": "removido membro __member__ do cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Ações",
- "activities": "Atividades",
- "activity": "Atividade",
- "activity-added": "adicionou %s a %s",
- "activity-archived": "%s foi Arquivado",
- "activity-attached": "anexou %s a %s",
- "activity-created": "criou %s",
- "activity-customfield-created": "criado campo customizado %s",
- "activity-excluded": "excluiu %s de %s",
- "activity-imported": "importado %s em %s de %s",
- "activity-imported-board": "importado %s de %s",
- "activity-joined": "juntou-se a %s",
- "activity-moved": "moveu %s de %s para %s",
- "activity-on": "em %s",
- "activity-removed": "removeu %s de %s",
- "activity-sent": "enviou %s de %s",
- "activity-unjoined": "saiu de %s",
- "activity-subtask-added": "Adcionar subtarefa à",
- "activity-checked-item": "marcado %s na lista de verificação %s de %s",
- "activity-unchecked-item": "desmarcado %s na lista de verificação %s de %s",
- "activity-checklist-added": "Adicionada lista de verificação a %s",
- "activity-checklist-removed": "removida a lista de verificação de %s",
- "activity-checklist-completed": "completada a lista de verificação __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "activity-checklist-uncompleted": "não-completada a lista de verificação %s de %s",
- "activity-checklist-item-added": "adicionado o item de lista de verificação para '%s' em %s",
- "activity-checklist-item-removed": "removida o item de lista de verificação de '%s' na %s",
- "add": "Novo",
- "activity-checked-item-card": "marcaddo %s na lista de verificação %s",
- "activity-unchecked-item-card": "desmarcado %s na lista de verificação %s",
- "activity-checklist-completed-card": "completada a lista de verificação __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
- "activity-checklist-uncompleted-card": "não-completada a lista de verificação %s",
- "add-attachment": "Adicionar Anexos",
- "add-board": "Adicionar Quadro",
- "add-card": "Adicionar Cartão",
- "add-swimlane": "Adicionar Raia",
- "add-subtask": "Adicionar subtarefa",
- "add-checklist": "Adicionar lista de verificação",
- "add-checklist-item": "Adicionar um item à lista de verificação",
- "add-cover": "Adicionar Capa",
- "add-label": "Adicionar Etiqueta",
- "add-list": "Adicionar Lista",
- "add-members": "Adicionar Membros",
- "added": "Criado",
- "addMemberPopup-title": "Membros",
- "admin": "Administrador",
- "admin-desc": "Pode ver e editar cartões, remover membros e alterar configurações do quadro.",
- "admin-announcement": "Anúncio",
- "admin-announcement-active": "Anúncio ativo em todo o sistema",
- "admin-announcement-title": "Anúncio do Administrador",
- "all-boards": "Todos os quadros",
- "and-n-other-card": "E __count__ outro cartão",
- "and-n-other-card_plural": "E __count__ outros cartões",
- "apply": "Aplicar",
- "app-is-offline": "Carregando, por favor espere. Atualizar a página causará perda de dados. Se a carga não funcionar, por favor verifique se o servidor não caiu.",
- "archive": "Mover para o Arquivo-morto",
- "archive-all": "Mover Tudo para o Arquivo-morto",
- "archive-board": "Mover Quadro para o Arquivo-morto",
- "archive-card": "Mover Cartão para o Arquivo-morto",
- "archive-list": "Mover Lista para o Arquivo-morto",
- "archive-swimlane": "Mover Raia para Arquivo-morto",
- "archive-selection": "Mover seleção para o Arquivo-morto",
- "archiveBoardPopup-title": "Mover Quadro para o Arquivo-morto?",
- "archived-items": "Arquivo-morto",
- "archived-boards": "Quadros no Arquivo-morto",
- "restore-board": "Restaurar Quadro",
- "no-archived-boards": "Sem Quadros no Arquivo-morto.",
- "archives": "Arquivos-morto",
- "template": "Modelo",
- "templates": "Modelos",
- "assign-member": "Atribuir Membro",
- "attached": "anexado",
- "attachment": "Anexo",
- "attachment-delete-pop": "Excluir um anexo é permanente. Não será possível recuperá-lo.",
- "attachmentDeletePopup-title": "Excluir Anexo?",
- "attachments": "Anexos",
- "auto-watch": "Veja automaticamente os boards que são criados",
- "avatar-too-big": "O avatar é muito grande (70KB max)",
- "back": "Voltar",
- "board-change-color": "Alterar cor",
- "board-nb-stars": "%s estrelas",
- "board-not-found": "Quadro não encontrado",
- "board-private-info": "Este quadro será <strong>privado</strong>.",
- "board-public-info": "Este quadro será <strong>público</strong>.",
- "boardChangeColorPopup-title": "Alterar Tela de Fundo",
- "boardChangeTitlePopup-title": "Renomear Quadro",
- "boardChangeVisibilityPopup-title": "Alterar Visibilidade",
- "boardChangeWatchPopup-title": "Alterar observação",
- "boardMenuPopup-title": "Configurações do quadro",
- "boards": "Quadros",
- "board-view": "Visão de quadro",
- "board-view-cal": "Calendário",
- "board-view-swimlanes": "Raias",
- "board-view-lists": "Listas",
- "bucket-example": "\"Bucket List\", por exemplo",
- "cancel": "Cancelar",
- "card-archived": "Este cartão está Arquivado.",
- "board-archived": "Este quadro está Arquivado.",
- "card-comments-title": "Este cartão possui %s comentários.",
- "card-delete-notice": "A exclusão será permanente. Você perderá todas as ações associadas a este cartão.",
- "card-delete-pop": "Todas as ações serão excluidas da lista de Atividades e vocês não poderá re-abrir o cartão. Não há como desfazer.",
- "card-delete-suggest-archive": "Você pode mover um cartão para o Arquivo-morto para removê-lo do quadro e preservar a atividade.",
- "card-due": "Prazo final",
- "card-due-on": "Prazo final em",
- "card-spent": "Tempo Gasto",
- "card-edit-attachments": "Editar anexos",
- "card-edit-custom-fields": "Editar campos customizados",
- "card-edit-labels": "Editar etiquetas",
- "card-edit-members": "Editar membros",
- "card-labels-title": "Alterar etiquetas do cartão.",
- "card-members-title": "Acrescentar ou remover membros do quadro deste cartão.",
- "card-start": "Data início",
- "card-start-on": "Começa em",
- "cardAttachmentsPopup-title": "Anexar a partir de",
- "cardCustomField-datePopup-title": "Mudar data",
- "cardCustomFieldsPopup-title": "Editar campos customizados",
- "cardDeletePopup-title": "Excluir Cartão?",
- "cardDetailsActionsPopup-title": "Ações do cartão",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Membros",
- "cardMorePopup-title": "Mais",
- "cardTemplatePopup-title": "Criar Modelo",
- "cards": "Cartões",
- "cards-count": "Cartões",
- "casSignIn": "Entrar com CAS",
- "cardType-card": "Cartão",
- "cardType-linkedCard": "Cartão ligado",
- "cardType-linkedBoard": "Quadro ligado",
- "change": "Alterar",
- "change-avatar": "Alterar Avatar",
- "change-password": "Alterar Senha",
- "change-permissions": "Alterar permissões",
- "change-settings": "Altera configurações",
- "changeAvatarPopup-title": "Alterar Avatar",
- "changeLanguagePopup-title": "Alterar Idioma",
- "changePasswordPopup-title": "Alterar Senha",
- "changePermissionsPopup-title": "Alterar Permissões",
- "changeSettingsPopup-title": "Altera configurações",
- "subtasks": "Subtarefas",
- "checklists": "Listas de verificação",
- "click-to-star": "Marcar quadro como favorito.",
- "click-to-unstar": "Remover quadro dos favoritos.",
- "clipboard": "Área de Transferência ou arraste e solte",
- "close": "Fechar",
- "close-board": "Fechar Quadro",
- "close-board-pop": "Você será capaz de restaurar o quadro clicando no botão “Arquivo-morto” a partir do cabeçalho do Início.",
- "color-black": "preto",
- "color-blue": "azul",
- "color-crimson": "carmesim",
- "color-darkgreen": "verde escuro",
- "color-gold": "dourado",
- "color-gray": "cinza",
- "color-green": "verde",
- "color-indigo": "azul",
- "color-lime": "verde limão",
- "color-magenta": "magenta",
- "color-mistyrose": "rosa claro",
- "color-navy": "azul marinho",
- "color-orange": "laranja",
- "color-paleturquoise": "azul ciano",
- "color-peachpuff": "pêssego",
- "color-pink": "cor-de-rosa",
- "color-plum": "ameixa",
- "color-purple": "roxo",
- "color-red": "vermelho",
- "color-saddlebrown": "marrom",
- "color-silver": "prateado",
- "color-sky": "azul-celeste",
- "color-slateblue": "azul ardósia",
- "color-white": "branco",
- "color-yellow": "amarelo",
- "unset-color": "Remover",
- "comment": "Comentário",
- "comment-placeholder": "Escrever Comentário",
- "comment-only": "Somente comentários",
- "comment-only-desc": "Pode comentar apenas em cartões.",
- "no-comments": "Sem comentários",
- "no-comments-desc": "Sem visualização de comentários e atividades.",
- "computer": "Computador",
- "confirm-subtask-delete-dialog": "Tem certeza que deseja excluir a subtarefa?",
- "confirm-checklist-delete-dialog": "Tem certeza que quer excluir a lista de verificação?",
- "copy-card-link-to-clipboard": "Copiar link do cartão para a área de transferência",
- "linkCardPopup-title": "Ligar Cartão",
- "searchElementPopup-title": "Buscar",
- "copyCardPopup-title": "Copiar o cartão",
- "copyChecklistToManyCardsPopup-title": "Copiar modelo de lista de verificação para vários cartões",
- "copyChecklistToManyCardsPopup-instructions": "Títulos e descrições do cartão de destino neste formato JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título do primeiro cartão\", \"description\":\"Descrição do primeiro cartão\"}, {\"title\":\"Título do segundo cartão\",\"description\":\"Descrição do segundo cartão\"},{\"title\":\"Título do último cartão\",\"description\":\"Descrição do último cartão\"} ]",
- "create": "Criar",
- "createBoardPopup-title": "Criar Quadro",
- "chooseBoardSourcePopup-title": "Importar quadro",
- "createLabelPopup-title": "Criar Etiqueta",
- "createCustomField": "Criar campo",
- "createCustomFieldPopup-title": "Criar campo",
- "current": "atual",
- "custom-field-delete-pop": "Não existe desfazer. Isso irá excluir o campo customizado de todos os cartões e destruir seu histórico",
- "custom-field-checkbox": "Caixa de seleção",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Lista suspensa",
- "custom-field-dropdown-none": "(nada)",
- "custom-field-dropdown-options": "Lista de opções",
- "custom-field-dropdown-options-placeholder": "Pressione enter para adicionar mais opções",
- "custom-field-dropdown-unknown": "(desconhecido)",
- "custom-field-number": "Número",
- "custom-field-text": "Texto",
- "custom-fields": "Campos customizados",
- "date": "Data",
- "decline": "Rejeitar",
- "default-avatar": "Avatar padrão",
- "delete": "Excluir",
- "deleteCustomFieldPopup-title": "Excluir campo customizado?",
- "deleteLabelPopup-title": "Excluir Etiqueta?",
- "description": "Descrição",
- "disambiguateMultiLabelPopup-title": "Desambiguar ações de etiquetas",
- "disambiguateMultiMemberPopup-title": "Desambiguar ações de membros",
- "discard": "Descartar",
- "done": "Feito",
- "download": "Baixar",
- "edit": "Editar",
- "edit-avatar": "Alterar Avatar",
- "edit-profile": "Editar Perfil",
- "edit-wip-limit": "Editar Limite WIP",
- "soft-wip-limit": "Limite de WIP",
- "editCardStartDatePopup-title": "Altera data de início",
- "editCardDueDatePopup-title": "Altera prazo final",
- "editCustomFieldPopup-title": "Editar campo",
- "editCardSpentTimePopup-title": "Editar tempo gasto",
- "editLabelPopup-title": "Alterar Etiqueta",
- "editNotificationPopup-title": "Editar Notificações",
- "editProfilePopup-title": "Editar Perfil",
- "email": "E-mail",
- "email-enrollAccount-subject": "Uma conta foi criada para você em __siteName__",
- "email-enrollAccount-text": "Olá __user__\npara iniciar utilizando o serviço basta clicar no link abaixo.\n__url__\nMuito Obrigado.",
- "email-fail": "Falhou ao enviar e-mail",
- "email-fail-text": "Erro ao tentar enviar e-mail",
- "email-invalid": "E-mail inválido",
- "email-invite": "Convite via E-mail",
- "email-invite-subject": "__inviter__ lhe enviou um convite",
- "email-invite-text": "Caro __user__\n__inviter__ lhe convidou para ingressar no quadro \"__board__\" como colaborador.\nPor favor prossiga através do link abaixo:\n__url__\nMuito obrigado.",
- "email-resetPassword-subject": "Redefina sua senha em __siteName__",
- "email-resetPassword-text": "Olá __user__\nPara redefinir sua senha, por favor clique no link abaixo.\n__url__\nMuito obrigado.",
- "email-sent": "E-mail enviado",
- "email-verifyEmail-subject": "Verifique seu endereço de e-mail em __siteName__",
- "email-verifyEmail-text": "Olá __user__\nPara verificar sua conta de e-mail, clique no link abaixo.\n__url__\nObrigado.",
- "enable-wip-limit": "Ativar Limite WIP",
- "error-board-doesNotExist": "Este quadro não existe",
- "error-board-notAdmin": "Você precisa ser administrador desse quadro para fazer isto",
- "error-board-notAMember": "Você precisa ser um membro desse quadro para fazer isto",
- "error-json-malformed": "Seu texto não é um JSON válido",
- "error-json-schema": "Seu JSON não inclui as informações no formato correto",
- "error-list-doesNotExist": "Esta lista não existe",
- "error-user-doesNotExist": "Este usuário não existe",
- "error-user-notAllowSelf": "Você não pode convidar a si mesmo",
- "error-user-notCreated": "Este usuário não foi criado",
- "error-username-taken": "Esse username já existe",
- "error-email-taken": "E-mail já está em uso",
- "export-board": "Exportar quadro",
- "filter": "Filtrar",
- "filter-cards": "Filtrar Cartões",
- "filter-clear": "Limpar filtro",
- "filter-no-label": "Sem etiquetas",
- "filter-no-member": "Sem membros",
- "filter-no-custom-fields": "Não há campos customizados",
- "filter-on": "Filtro está ativo",
- "filter-on-desc": "Você está filtrando cartões neste quadro. Clique aqui para editar o filtro.",
- "filter-to-selection": "Filtrar esta seleção",
- "advanced-filter-label": "Filtro avançado",
- "advanced-filter-description": "Filtros avançados permitem escrever uma \"string\" contendo os seguintes operadores: == != <= >= && || (). Um espaco é utilizado como separador entre os operadores. Você pode filtrar para todos os campos personalizados escrevendo os nomes e valores. Exemplo: Campo1 == Valor1. Nota^Se o campo ou valor tiver espaços você precisa encapsular eles em citações sozinhas. Exemplo: Campo1 == Eu\\sou. Também você pode combinar múltiplas condições. Exemplo: C1 == V1 || C1 == V2. Normalmente todos os operadores são interpretados da esquerda para direita. Você pode alterar a ordem colocando parênteses - como ma expressão matemática. Exemplo: C1 == V1 && (C2 == V2 || C2 == V3). Você tamb~em pode pesquisar campos de texto usando regex: C1 == /Tes.*/i",
- "fullname": "Nome Completo",
- "header-logo-title": "Voltar para a lista de quadros.",
- "hide-system-messages": "Esconde mensagens de sistema",
- "headerBarCreateBoardPopup-title": "Criar Quadro",
- "home": "Início",
- "import": "Importar",
- "link": "Ligação",
- "import-board": "importar quadro",
- "import-board-c": "Importar quadro",
- "import-board-title-trello": "Importar quadro do Trello",
- "import-board-title-wekan": "Importar quadro a partir de exportação prévia",
- "import-sandstorm-backup-warning": "Não exclua os dados importados do quadro original exportado ou do Trello antes de verificar se esse item fecha e abre novamente, ou se você receber o erro Quadro não encontrado, que significa perda de dados.",
- "import-sandstorm-warning": "O quadro importado irá excluir todos os dados existentes no quadro e irá sobrescrever com o quadro importado.",
- "from-trello": "Do Trello",
- "from-wekan": "A partir de exportação prévia",
- "import-board-instruction-trello": "No seu quadro do Trello, vá em 'Menu', depois em 'Mais', 'Imprimir e Exportar', 'Exportar JSON', então copie o texto emitido",
- "import-board-instruction-wekan": "Em seu quadro vá para 'Menu', depois 'Exportar quadro' e copie o texto no arquivo baixado.",
- "import-board-instruction-about-errors": "Se você receber erros ao importar o quadro, às vezes a importação ainda funciona e o quadro está na página Todos os Quadros.",
- "import-json-placeholder": "Cole seus dados JSON válidos aqui",
- "import-map-members": "Mapear membros",
- "import-members-map": "Seu quadro importado possui alguns membros. Por favor, mapeie os membros que você deseja importar para seus usuários",
- "import-show-user-mapping": "Revisar mapeamento dos membros",
- "import-user-select": "Escolha um usuário existente que você deseja usar como esse membro",
- "importMapMembersAddPopup-title": "Selecione membro",
- "info": "Versão",
- "initials": "Iniciais",
- "invalid-date": "Data inválida",
- "invalid-time": "Hora inválida",
- "invalid-user": "Usuário inválido",
- "joined": "juntou-se",
- "just-invited": "Você já foi convidado para este quadro",
- "keyboard-shortcuts": "Atalhos do teclado",
- "label-create": "Criar Etiqueta",
- "label-default": "%s etiqueta (padrão)",
- "label-delete-pop": "Não será possível recuperá-la. A etiqueta será excluida de todos os cartões e seu histórico será destruído.",
- "labels": "Etiquetas",
- "language": "Idioma",
- "last-admin-desc": "Você não pode alterar funções porque deve existir pelo menos um administrador.",
- "leave-board": "Sair do Quadro",
- "leave-board-pop": "Tem a certeza de que pretende sair de __boardTitle__? Você será removido de todos os cartões neste quadro.",
- "leaveBoardPopup-title": "Sair do Quadro?",
- "link-card": "Vincular a este cartão",
- "list-archive-cards": "Move todos os cartões nesta lista para o Arquivo-morto",
- "list-archive-cards-pop": "Isto removerá todos os cartões desta lista para o quadro. Para visualizar cartões arquivados e trazê-los de volta para o quadro, clique em “Menu” > “Arquivo-morto”.",
- "list-move-cards": "Mover todos os cartões desta lista",
- "list-select-cards": "Selecionar todos os cartões nesta lista",
- "set-color-list": "Definir Cor",
- "listActionPopup-title": "Listar Ações",
- "swimlaneActionPopup-title": "Ações de Raia",
- "swimlaneAddPopup-title": "Adicionar uma Raia abaixo",
- "listImportCardPopup-title": "Importe um cartão do Trello",
- "listMorePopup-title": "Mais",
- "link-list": "Vincular a esta lista",
- "list-delete-pop": "Todas as ações serão excluidas da lista de atividades e você não poderá recuperar a lista. Não há como desfazer.",
- "list-delete-suggest-archive": "Você pode mover uma lista para o Arquivo-morto para removê-la do quadro e preservar a atividade.",
- "lists": "Listas",
- "swimlanes": "Raias",
- "log-out": "Sair",
- "log-in": "Entrar",
- "loginPopup-title": "Entrar",
- "memberMenuPopup-title": "Configuração de Membros",
- "members": "Membros",
- "menu": "Menu",
- "move-selection": "Mover seleção",
- "moveCardPopup-title": "Mover Cartão",
- "moveCardToBottom-title": "Mover para o final",
- "moveCardToTop-title": "Mover para o topo",
- "moveSelectionPopup-title": "Mover seleção",
- "multi-selection": "Multi-Seleção",
- "multi-selection-on": "Multi-seleção está ativo",
- "muted": "Silenciar",
- "muted-info": "Você nunca receberá qualquer notificação desse board",
- "my-boards": "Meus Quadros",
- "name": "Nome",
- "no-archived-cards": "Sem cartões no Arquivo-morto.",
- "no-archived-lists": "Sem listas no Arquivo-morto.",
- "no-archived-swimlanes": "Sem raias no Arquivo-morto.",
- "no-results": "Nenhum resultado.",
- "normal": "Normal",
- "normal-desc": "Pode ver e editar cartões. Não pode alterar configurações.",
- "not-accepted-yet": "Convite ainda não aceito",
- "notify-participate": "Receber atualizações de qualquer card que você criar ou participar como membro",
- "notify-watch": "Receber atualizações de qualquer board, lista ou cards que você estiver observando",
- "optional": "opcional",
- "or": "ou",
- "page-maybe-private": "Esta página pode ser privada. Você poderá vê-la se estiver <a href='%s'>logado</a>.",
- "page-not-found": "Página não encontrada.",
- "password": "Senha",
- "paste-or-dragdrop": "para colar, ou arraste e solte o arquivo da imagem para cá (somente imagens)",
- "participating": "Participando",
- "preview": "Previsualizar",
- "previewAttachedImagePopup-title": "Previsualizar",
- "previewClipboardImagePopup-title": "Previsualizar",
- "private": "Privado",
- "private-desc": "Este quadro é privado. Apenas seus membros podem acessar e editá-lo.",
- "profile": "Perfil",
- "public": "Público",
- "public-desc": "Este quadro é público. Ele é visível a qualquer pessoa com o link e será exibido em mecanismos de busca como o Google. Apenas seus membros podem editá-lo.",
- "quick-access-description": "Clique na estrela para adicionar um atalho nesta barra.",
- "remove-cover": "Remover Capa",
- "remove-from-board": "Remover do Quadro",
- "remove-label": "Remover Etiqueta",
- "listDeletePopup-title": "Excluir Lista?",
- "remove-member": "Remover Membro",
- "remove-member-from-card": "Remover do Cartão",
- "remove-member-pop": "Remover __name__ (__username__) de __boardTitle__? O membro será removido de todos os cartões neste quadro e será notificado.",
- "removeMemberPopup-title": "Remover Membro?",
- "rename": "Renomear",
- "rename-board": "Renomear Quadro",
- "restore": "Restaurar",
- "save": "Salvar",
- "search": "Buscar",
- "rules": "Regras",
- "search-cards": "Pesquisa em títulos e descrições de cartões neste quadro",
- "search-example": "Texto para procurar",
- "select-color": "Selecionar Cor",
- "set-wip-limit-value": "Defina um limite máximo para o número de tarefas nesta lista",
- "setWipLimitPopup-title": "Definir Limite WIP",
- "shortcut-assign-self": "Atribuir a si o cartão atual",
- "shortcut-autocomplete-emoji": "Autocompletar emoji",
- "shortcut-autocomplete-members": "Preenchimento automático de membros",
- "shortcut-clear-filters": "Limpar todos filtros",
- "shortcut-close-dialog": "Fechar dialogo",
- "shortcut-filter-my-cards": "Filtrar meus cartões",
- "shortcut-show-shortcuts": "Mostrar lista de atalhos",
- "shortcut-toggle-filterbar": "Alternar barra de filtro",
- "shortcut-toggle-sidebar": "Fechar barra lateral.",
- "show-cards-minimum-count": "Mostrar contador de cards se a lista tiver mais de",
- "sidebar-open": "Abrir barra lateral",
- "sidebar-close": "Fechar barra lateral",
- "signupPopup-title": "Criar uma Conta",
- "star-board-title": "Clique para marcar este quadro como favorito. Ele aparecerá no topo na lista dos seus quadros.",
- "starred-boards": "Quadros Favoritos",
- "starred-boards-description": "Quadros favoritos aparecem no topo da lista dos seus quadros.",
- "subscribe": "Acompanhar",
- "team": "Equipe",
- "this-board": "este quadro",
- "this-card": "este cartão",
- "spent-time-hours": "Tempo gasto (Horas)",
- "overtime-hours": "Tempo extras (Horas)",
- "overtime": "Tempo extras",
- "has-overtime-cards": "Tem cartões de horas extras",
- "has-spenttime-cards": "Gastou cartões de tempo",
- "time": "Tempo",
- "title": "Título",
- "tracking": "Rastreamento",
- "tracking-info": "Você será notificado se houver qualquer alteração em cards em que você é o criador ou membro",
- "type": "Tipo",
- "unassign-member": "Membro não associado",
- "unsaved-description": "Você possui uma descrição não salva",
- "unwatch": "Deixar de observar",
- "upload": "Carregar",
- "upload-avatar": "Carregar um avatar",
- "uploaded-avatar": "Avatar carregado",
- "username": "Nome de usuário",
- "view-it": "Visualizar",
- "warn-list-archived": "aviso: este cartão está em uma lista no Arquiv-morto",
- "watch": "Observar",
- "watching": "Observando",
- "watching-info": "Você será notificado de qualquer alteração neste quadro",
- "welcome-board": "Board de Boas Vindas",
- "welcome-swimlane": "Marco 1",
- "welcome-list1": "Básico",
- "welcome-list2": "Avançado",
- "card-templates-swimlane": "Modelos de cartão",
- "list-templates-swimlane": "Modelos de lista",
- "board-templates-swimlane": "Modelos de quadro",
- "what-to-do": "O que você gostaria de fazer?",
- "wipLimitErrorPopup-title": "Limite WIP Inválido",
- "wipLimitErrorPopup-dialog-pt1": "O número de tarefas nesta lista excede o limite WIP definido.",
- "wipLimitErrorPopup-dialog-pt2": "Por favor, mova algumas tarefas para fora desta lista, ou defina um limite WIP mais elevado.",
- "admin-panel": "Painel Administrativo",
- "settings": "Configurações",
- "people": "Pessoas",
- "registration": "Registro",
- "disable-self-registration": "Desabilitar Cadastrar-se",
- "invite": "Convite",
- "invite-people": "Convide Pessoas",
- "to-boards": "Para o/os quadro(s)",
- "email-addresses": "Endereço de E-mail",
- "smtp-host-description": "O endereço do servidor SMTP que envia seus e-mails.",
- "smtp-port-description": "A porta que o servidor SMTP usa para enviar os e-mails.",
- "smtp-tls-description": "Habilitar suporte TLS para servidor SMTP",
- "smtp-host": "Servidor SMTP",
- "smtp-port": "Porta SMTP",
- "smtp-username": "Nome de usuário",
- "smtp-password": "Senha",
- "smtp-tls": "Suporte TLS",
- "send-from": "De",
- "send-smtp-test": "Enviar um e-mail de teste para você mesmo",
- "invitation-code": "Código do Convite",
- "email-invite-register-subject": "__inviter__ lhe enviou um convite",
- "email-invite-register-text": "Caro __user__,\n\n__inviter__ convida você para o quadro Kanban para colaborações.\n\nPor favor, siga o link abaixo:\n__url__ \n\nE seu código de convite é: __icode__\n\nObrigado.",
- "email-smtp-test-subject": "E-mail de teste via SMTP",
- "email-smtp-test-text": "Você enviou um e-mail com sucesso",
- "error-invitation-code-not-exist": "O código do convite não existe",
- "error-notAuthorized": "Você não está autorizado à ver esta página.",
- "outgoing-webhooks": "Webhook de saída",
- "outgoingWebhooksPopup-title": "Webhook de saída",
- "boardCardTitlePopup-title": "Filtro do Título do Cartão",
- "new-outgoing-webhook": "Novo Webhook de saída",
- "no-name": "(Desconhecido)",
- "Node_version": "Versão do Node",
- "OS_Arch": "Arquitetura do SO",
- "OS_Cpus": "Quantidade de CPUS do SO",
- "OS_Freemem": "Memória Disponível do SO",
- "OS_Loadavg": "Carga Média do SO",
- "OS_Platform": "Plataforma do SO",
- "OS_Release": "Versão do SO",
- "OS_Totalmem": "Memória Total do SO",
- "OS_Type": "Tipo do SO",
- "OS_Uptime": "Disponibilidade do SO",
- "days": "dias",
- "hours": "horas",
- "minutes": "minutos",
- "seconds": "segundos",
- "show-field-on-card": "Mostrar este campo no cartão",
- "automatically-field-on-card": "Criar campo automaticamente para todos os cartões",
- "showLabel-field-on-card": "Mostrar etiqueta do campo no minicartão",
- "yes": "Sim",
- "no": "Não",
- "accounts": "Contas",
- "accounts-allowEmailChange": "Permitir Mudança de e-mail",
- "accounts-allowUserNameChange": "Permitir alteração de nome de usuário",
- "createdAt": "Criado em",
- "verified": "Verificado",
- "active": "Ativo",
- "card-received": "Recebido",
- "card-received-on": "Recebido em",
- "card-end": "Concluído",
- "card-end-on": "Concluído em",
- "editCardReceivedDatePopup-title": "Modificar data de recebimento",
- "editCardEndDatePopup-title": "Mudar data de conclusão",
- "setCardColorPopup-title": "Definir cor",
- "setCardActionsColorPopup-title": "Escolha uma cor",
- "setSwimlaneColorPopup-title": "Escolha uma cor",
- "setListColorPopup-title": "Escolha uma cor",
- "assigned-by": "Atribuído por",
- "requested-by": "Solicitado por",
- "board-delete-notice": "Excluir é permanente. Você perderá todas as listas, cartões e ações associados nesse quadro.",
- "delete-board-confirm-popup": "Todas as listas, cartões, etiquetas e atividades serão excluídas e você não poderá recuperar o conteúdo do quadro. Não há como desfazer.",
- "boardDeletePopup-title": "Excluir quadro?",
- "delete-board": "Excluir quadro",
- "default-subtasks-board": "Subtarefas para quadro __board__",
- "default": "Padrão",
- "queue": "Fila",
- "subtask-settings": "Configurações de subtarefas",
- "boardSubtaskSettingsPopup-title": "Configurações das subtarefas do quadro",
- "show-subtasks-field": "Cartões podem ter subtarefas",
- "deposit-subtasks-board": "Inserir subtarefas a este quadro:",
- "deposit-subtasks-list": "Listas de subtarefas inseridas aqui:",
- "show-parent-in-minicard": "Mostrar Pai do mini cartão:",
- "prefix-with-full-path": "Prefixo com caminho completo",
- "prefix-with-parent": "Prefixo com Pai",
- "subtext-with-full-path": "Subtexto com caminho completo",
- "subtext-with-parent": "Subtexto com Pai",
- "change-card-parent": "Mudar Pai do cartão",
- "parent-card": "Pai do cartão",
- "source-board": "Fonte do quadro",
- "no-parent": "Não mostrar Pai",
- "activity-added-label": "adicionada etiqueta '%s' para %s",
- "activity-removed-label": "removida etiqueta '%s' de %s",
- "activity-delete-attach": "excluído um anexo de %s",
- "activity-added-label-card": "adicionada etiqueta '%s'",
- "activity-removed-label-card": "removida etiqueta '%s'",
- "activity-delete-attach-card": "excluído um anexo",
- "activity-set-customfield": "definir campo personalizado '%s' para '%s' em %s",
- "activity-unset-customfield": "redefinir campo personalizado '%s' em %s",
- "r-rule": "Regra",
- "r-add-trigger": "Adicionar gatilho",
- "r-add-action": "Adicionar ação",
- "r-board-rules": "Quadro de regras",
- "r-add-rule": "Adicionar regra",
- "r-view-rule": "Ver regra",
- "r-delete-rule": "Excluir regra",
- "r-new-rule-name": "Título da nova regra",
- "r-no-rules": "Sem regras",
- "r-when-a-card": "Quando um cartão",
- "r-is": "é",
- "r-is-moved": "é movido",
- "r-added-to": "adicionado à",
- "r-removed-from": "Removido de",
- "r-the-board": "o quadro",
- "r-list": "lista",
- "set-filter": "Inserir Filtro",
- "r-moved-to": "Movido para",
- "r-moved-from": "Movido de",
- "r-archived": "Movido para o Arquivo-morto",
- "r-unarchived": "Restaurado do Arquivo-morto",
- "r-a-card": "um cartão",
- "r-when-a-label-is": "Quando uma etiqueta é",
- "r-when-the-label": "Quando a etiqueta é",
- "r-list-name": "listar nome",
- "r-when-a-member": "Quando um membro é",
- "r-when-the-member": "Quando o membro",
- "r-name": "nome",
- "r-when-a-attach": "Quando um anexo",
- "r-when-a-checklist": "Quando a lista de verificação é",
- "r-when-the-checklist": "Quando a lista de verificação",
- "r-completed": "Completado",
- "r-made-incomplete": "Feito incompleto",
- "r-when-a-item": "Quando o item da lista de verificação é",
- "r-when-the-item": "Quando o item da lista de verificação",
- "r-checked": "Marcado",
- "r-unchecked": "Desmarcado",
- "r-move-card-to": "Mover cartão para",
- "r-top-of": "Topo de",
- "r-bottom-of": "Final de",
- "r-its-list": "é lista",
- "r-archive": "Mover para Arquivo-morto",
- "r-unarchive": "Restaurar do Arquivo-morto",
- "r-card": "cartão",
- "r-add": "Novo",
- "r-remove": "Remover",
- "r-label": "etiqueta",
- "r-member": "membro",
- "r-remove-all": "Remover todos os membros do cartão",
- "r-set-color": "Definir cor para",
- "r-checklist": "lista de verificação",
- "r-check-all": "Marcar todos",
- "r-uncheck-all": "Desmarcar todos",
- "r-items-check": "itens da lista de verificação",
- "r-check": "Marcar",
- "r-uncheck": "Desmarcar",
- "r-item": "item",
- "r-of-checklist": "da lista de verificação",
- "r-send-email": "Enviar um e-mail",
- "r-to": "para",
- "r-subject": "assunto",
- "r-rule-details": "Detalhes da regra",
- "r-d-move-to-top-gen": "Mover cartão para o topo da sua lista",
- "r-d-move-to-top-spec": "Mover cartão para o topo da lista",
- "r-d-move-to-bottom-gen": "Mover cartão para o final da sua lista",
- "r-d-move-to-bottom-spec": "Mover cartão para final da lista",
- "r-d-send-email": "Enviar e-mail",
- "r-d-send-email-to": "para",
- "r-d-send-email-subject": "assunto",
- "r-d-send-email-message": "mensagem",
- "r-d-archive": "Mover cartão para Arquivo-morto",
- "r-d-unarchive": "Restaurar cartão do Arquivo-morto",
- "r-d-add-label": "Adicionar etiqueta",
- "r-d-remove-label": "Remover etiqueta",
- "r-create-card": "Criar novo cartão",
- "r-in-list": "na lista",
- "r-in-swimlane": "na raia",
- "r-d-add-member": "Adicionar membro",
- "r-d-remove-member": "Remover membro",
- "r-d-remove-all-member": "Remover todos os membros",
- "r-d-check-all": "Marcar todos os itens de uma lista",
- "r-d-uncheck-all": "Desmarcar todos os itens de uma lista",
- "r-d-check-one": "Marcar item",
- "r-d-uncheck-one": "Desmarcar item",
- "r-d-check-of-list": "da lista de verificação",
- "r-d-add-checklist": "Adicionar lista de verificação",
- "r-d-remove-checklist": "Remover lista de verificação",
- "r-by": "por",
- "r-add-checklist": "Adicionar lista de verificação",
- "r-with-items": "com os itens",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Adicionar raia",
- "r-swimlane-name": "Nome da raia",
- "r-board-note": "Nota: deixe o campo vazio para corresponder à todos os valores possíveis",
- "r-checklist-note": "Nota: itens de Checklists devem ser escritos separados por vírgulas",
- "r-when-a-card-is-moved": "Quando um cartão é movido de outra lista",
- "r-set": "Definir",
- "r-update": "Atualizar",
- "r-datefield": "campo data",
- "r-df-start-at": "início",
- "r-df-due-at": "prazo final",
- "r-df-end-at": "concluído",
- "r-df-received-at": "recebido",
- "r-to-current-datetime": "para data/hora atuais",
- "r-remove-value-from": "Remover valores do",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Método de autenticação",
- "authentication-type": "Tipo de autenticação",
- "custom-product-name": "Nome Customizado do Produto",
- "layout": "Layout",
- "hide-logo": "Esconder Logo",
- "add-custom-html-after-body-start": "Adicionar HTML Customizado depois do início do <body>",
- "add-custom-html-before-body-end": "Adicionar HTML Customizado antes do fim do </body>",
- "error-undefined": "Algo deu errado",
- "error-ldap-login": "Um erro ocorreu enquanto tentava entrar",
- "display-authentication-method": "Mostrar Método de Autenticação",
- "default-authentication-method": "Método de Autenticação Padrão",
- "duplicate-board": "Duplicar Quadro",
- "people-number": "O número de pessoas é:",
- "swimlaneDeletePopup-title": "Excluir Raia?",
- "swimlane-delete-pop": "Todas as ações serão excluídas da lista de atividades e você não poderá recuperar a raia. Não há como desfazer.",
- "restore-all": "Restaurar tudo",
- "delete-all": "Excluir tudo",
- "loading": "Carregando, aguarde por favor.",
- "previous_as": "ultima vez foi",
- "act-a-dueAt": "prazo final modificado para \nQuando: __timeValue__\nOnde: __card__\n prazo final anterior era __timeOldValue__",
- "act-a-endAt": "hora de conclusão modificada de (__timeOldValue__) para __timeValue__ ",
- "act-a-startAt": "hora de início modificada de (__timeOldValue__) para __timeValue__ ",
- "act-a-receivedAt": "hora de recebido modificada de (__timeOldValue__) para __timeValue__ ",
- "a-dueAt": "prazo final modificado para",
- "a-endAt": "hora de conclusão modificada para",
- "a-startAt": "hora de início modificada para",
- "a-receivedAt": "hora de recebido modificada para",
- "almostdue": "prazo final atual %s está próximo",
- "pastdue": "prazo final atual %s venceu",
- "duenow": "prazo final atual %s é hoje",
- "act-withDue": "__card__ lembrete de prazos finais [__board__]",
- "act-almostdue": "está lembrando que o prazo final atual (__timeValue__) do __card__ está próximo",
- "act-pastdue": "está lembrando que o prazo final atual (__timeValue__) do __card__ venceu",
- "act-duenow": "está lembrando que o prazo final (__timeValue__) do __card__ é agora",
- "act-atUserComment": "Você foi mencionado no [__board__] __card__",
- "delete-user-confirm-popup": "Você realmente quer apagar esta conta? Não há como desfazer.",
- "accounts-allowUserDelete": "Permitir que usuários apaguem a própria conta"
-} \ No newline at end of file
+ "accept": "Aceitar",
+ "act-activity-notify": "Notificação de atividade",
+ "act-addAttachment": "adicionado anexo __attachment__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-deleteAttachment": "excluído anexo __attachment__ do cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-addSubtask": "adicionada subtarefa __subtask__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-addLabel": "Adicionada etiqueta __label__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-addedLabel": "Adicionada etiqueta __label__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-removeLabel": "Removida etiqueta __label__ do cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-removedLabel": "Removida etiqueta __label__ do cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-addChecklist": "adicionada lista de verificação __checklist__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-addChecklistItem": "adicionado o item __checklistItem__ a lista de verificação__checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-removeChecklist": "emovida a lista de verificação __checklist__ do cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-removeChecklistItem": "removido item __checklistItem__ da lista de verificação __checkList__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-checkedItem": "marcado __checklistItem__ na lista de verificação __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-uncheckedItem": "desmarcado __checklistItem__ na lista __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-completeChecklist": "completada a lista de verificação __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-uncompleteChecklist": "lista de verificação incompleta __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-addComment": "comentou no cartão __card__: __comment__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-editComment": "editado comentário no cartão __card__: __comment__ da lista __list__ da raia __swimlane__ do quadro __board__",
+ "act-deleteComment": "excluído comentário no cartão __card__: __comment__ da lista __list__ da raia __swimlane__ do quadro __board__",
+ "act-createBoard": "criado quadro__board__",
+ "act-createSwimlane": "criada a raia __swimlane__ no quadro __board__",
+ "act-createCard": "criado cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-createCustomField": "criado campo customizado __customField__ do quadro __board__",
+ "act-deleteCustomField": "excluído campo customizado __customField__ do quadro __board__",
+ "act-setCustomField": "editado campo customizado __customField__: __customFieldValue__ no cartão __card__ da lista __list__ da raia __swimlane__ do quadro __board__",
+ "act-createList": "adicionada lista __list__ ao quadro __board__",
+ "act-addBoardMember": "adicionado membro __member__ ao quadro __board__",
+ "act-archivedBoard": "Quadro __board__ foi Arquivado",
+ "act-archivedCard": "Cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__ foi Arquivado",
+ "act-archivedList": "Lista __list__ em raia __swimlane__ no quadro __board__ foi Arquivada",
+ "act-archivedSwimlane": "Raia __swimlane__ no quadro __board__ foi Arquivada",
+ "act-importBoard": "importado quadro __board__",
+ "act-importCard": "importado cartão __card__ para lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-importList": "importada lista __list__ para raia __swimlane__ no quadro __board__",
+ "act-joinMember": "adicionado membro __member__ ao cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-moveCard": "movido cartão __card__ do quadro __board__ da raia __oldSwimlane__ da lista __oldList__ para a raia __swimlane__ na lista __list__",
+ "act-moveCardToOtherBoard": "movido cartão __card__ da lista __oldList__ em raia __oldSwimlane__ no quadro __oldBoard__ para lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-removeBoardMember": "removido membro __member__ do quadro __board__",
+ "act-restoredCard": "restaurado cartão __card__ a lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-unjoinMember": "removido membro __member__ do cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Ações",
+ "activities": "Atividades",
+ "activity": "Atividade",
+ "activity-added": "adicionou %s a %s",
+ "activity-archived": "%s foi Arquivado",
+ "activity-attached": "anexou %s a %s",
+ "activity-created": "criou %s",
+ "activity-customfield-created": "criado campo customizado %s",
+ "activity-excluded": "excluiu %s de %s",
+ "activity-imported": "importado %s em %s de %s",
+ "activity-imported-board": "importado %s de %s",
+ "activity-joined": "juntou-se a %s",
+ "activity-moved": "moveu %s de %s para %s",
+ "activity-on": "em %s",
+ "activity-removed": "removeu %s de %s",
+ "activity-sent": "enviou %s de %s",
+ "activity-unjoined": "saiu de %s",
+ "activity-subtask-added": "Adcionar subtarefa à",
+ "activity-checked-item": "marcado %s na lista de verificação %s de %s",
+ "activity-unchecked-item": "desmarcado %s na lista de verificação %s de %s",
+ "activity-checklist-added": "Adicionada lista de verificação a %s",
+ "activity-checklist-removed": "removida a lista de verificação de %s",
+ "activity-checklist-completed": "completada a lista de verificação __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "activity-checklist-uncompleted": "não-completada a lista de verificação %s de %s",
+ "activity-checklist-item-added": "adicionado o item de lista de verificação para '%s' em %s",
+ "activity-checklist-item-removed": "removida o item de lista de verificação de '%s' na %s",
+ "add": "Novo",
+ "activity-checked-item-card": "marcaddo %s na lista de verificação %s",
+ "activity-unchecked-item-card": "desmarcado %s na lista de verificação %s",
+ "activity-checklist-completed-card": "completada a lista de verificação __checklist__ no cartão __card__ na lista __list__ em raia __swimlane__ no quadro __board__",
+ "activity-checklist-uncompleted-card": "não-completada a lista de verificação %s",
+ "add-attachment": "Adicionar Anexos",
+ "add-board": "Adicionar Quadro",
+ "add-card": "Adicionar Cartão",
+ "add-swimlane": "Adicionar Raia",
+ "add-subtask": "Adicionar subtarefa",
+ "add-checklist": "Adicionar lista de verificação",
+ "add-checklist-item": "Adicionar um item à lista de verificação",
+ "add-cover": "Adicionar Capa",
+ "add-label": "Adicionar Etiqueta",
+ "add-list": "Adicionar Lista",
+ "add-members": "Adicionar Membros",
+ "added": "Criado",
+ "addMemberPopup-title": "Membros",
+ "admin": "Administrador",
+ "admin-desc": "Pode ver e editar cartões, remover membros e alterar configurações do quadro.",
+ "admin-announcement": "Anúncio",
+ "admin-announcement-active": "Anúncio ativo em todo o sistema",
+ "admin-announcement-title": "Anúncio do Administrador",
+ "all-boards": "Todos os quadros",
+ "and-n-other-card": "E __count__ outro cartão",
+ "and-n-other-card_plural": "E __count__ outros cartões",
+ "apply": "Aplicar",
+ "app-is-offline": "Carregando, por favor espere. Atualizar a página causará perda de dados. Se a carga não funcionar, por favor verifique se o servidor não caiu.",
+ "archive": "Mover para o Arquivo-morto",
+ "archive-all": "Mover Tudo para o Arquivo-morto",
+ "archive-board": "Mover Quadro para o Arquivo-morto",
+ "archive-card": "Mover Cartão para o Arquivo-morto",
+ "archive-list": "Mover Lista para o Arquivo-morto",
+ "archive-swimlane": "Mover Raia para Arquivo-morto",
+ "archive-selection": "Mover seleção para o Arquivo-morto",
+ "archiveBoardPopup-title": "Mover Quadro para o Arquivo-morto?",
+ "archived-items": "Arquivo-morto",
+ "archived-boards": "Quadros no Arquivo-morto",
+ "restore-board": "Restaurar Quadro",
+ "no-archived-boards": "Sem Quadros no Arquivo-morto.",
+ "archives": "Arquivos-morto",
+ "template": "Modelo",
+ "templates": "Modelos",
+ "assign-member": "Atribuir Membro",
+ "attached": "anexado",
+ "attachment": "Anexo",
+ "attachment-delete-pop": "Excluir um anexo é permanente. Não será possível recuperá-lo.",
+ "attachmentDeletePopup-title": "Excluir Anexo?",
+ "attachments": "Anexos",
+ "auto-watch": "Veja automaticamente os boards que são criados",
+ "avatar-too-big": "O avatar é muito grande (70KB max)",
+ "back": "Voltar",
+ "board-change-color": "Alterar cor",
+ "board-nb-stars": "%s estrelas",
+ "board-not-found": "Quadro não encontrado",
+ "board-private-info": "Este quadro será <strong>privado</strong>.",
+ "board-public-info": "Este quadro será <strong>público</strong>.",
+ "boardChangeColorPopup-title": "Alterar Tela de Fundo",
+ "boardChangeTitlePopup-title": "Renomear Quadro",
+ "boardChangeVisibilityPopup-title": "Alterar Visibilidade",
+ "boardChangeWatchPopup-title": "Alterar observação",
+ "boardMenuPopup-title": "Configurações do quadro",
+ "boards": "Quadros",
+ "board-view": "Visão de quadro",
+ "board-view-cal": "Calendário",
+ "board-view-swimlanes": "Raias",
+ "board-view-lists": "Listas",
+ "bucket-example": "\"Bucket List\", por exemplo",
+ "cancel": "Cancelar",
+ "card-archived": "Este cartão está Arquivado.",
+ "board-archived": "Este quadro está Arquivado.",
+ "card-comments-title": "Este cartão possui %s comentários.",
+ "card-delete-notice": "A exclusão será permanente. Você perderá todas as ações associadas a este cartão.",
+ "card-delete-pop": "Todas as ações serão excluidas da lista de Atividades e vocês não poderá re-abrir o cartão. Não há como desfazer.",
+ "card-delete-suggest-archive": "Você pode mover um cartão para o Arquivo-morto para removê-lo do quadro e preservar a atividade.",
+ "card-due": "Prazo final",
+ "card-due-on": "Prazo final em",
+ "card-spent": "Tempo Gasto",
+ "card-edit-attachments": "Editar anexos",
+ "card-edit-custom-fields": "Editar campos customizados",
+ "card-edit-labels": "Editar etiquetas",
+ "card-edit-members": "Editar membros",
+ "card-labels-title": "Alterar etiquetas do cartão.",
+ "card-members-title": "Acrescentar ou remover membros do quadro deste cartão.",
+ "card-start": "Data início",
+ "card-start-on": "Começa em",
+ "cardAttachmentsPopup-title": "Anexar a partir de",
+ "cardCustomField-datePopup-title": "Mudar data",
+ "cardCustomFieldsPopup-title": "Editar campos customizados",
+ "cardDeletePopup-title": "Excluir Cartão?",
+ "cardDetailsActionsPopup-title": "Ações do cartão",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Membros",
+ "cardMorePopup-title": "Mais",
+ "cardTemplatePopup-title": "Criar Modelo",
+ "cards": "Cartões",
+ "cards-count": "Cartões",
+ "casSignIn": "Entrar com CAS",
+ "cardType-card": "Cartão",
+ "cardType-linkedCard": "Cartão ligado",
+ "cardType-linkedBoard": "Quadro ligado",
+ "change": "Alterar",
+ "change-avatar": "Alterar Avatar",
+ "change-password": "Alterar Senha",
+ "change-permissions": "Alterar permissões",
+ "change-settings": "Altera configurações",
+ "changeAvatarPopup-title": "Alterar Avatar",
+ "changeLanguagePopup-title": "Alterar Idioma",
+ "changePasswordPopup-title": "Alterar Senha",
+ "changePermissionsPopup-title": "Alterar Permissões",
+ "changeSettingsPopup-title": "Altera configurações",
+ "subtasks": "Subtarefas",
+ "checklists": "Listas de verificação",
+ "click-to-star": "Marcar quadro como favorito.",
+ "click-to-unstar": "Remover quadro dos favoritos.",
+ "clipboard": "Área de Transferência ou arraste e solte",
+ "close": "Fechar",
+ "close-board": "Fechar Quadro",
+ "close-board-pop": "Você será capaz de restaurar o quadro clicando no botão “Arquivo-morto” a partir do cabeçalho do Início.",
+ "color-black": "preto",
+ "color-blue": "azul",
+ "color-crimson": "carmesim",
+ "color-darkgreen": "verde escuro",
+ "color-gold": "dourado",
+ "color-gray": "cinza",
+ "color-green": "verde",
+ "color-indigo": "azul",
+ "color-lime": "verde limão",
+ "color-magenta": "magenta",
+ "color-mistyrose": "rosa claro",
+ "color-navy": "azul marinho",
+ "color-orange": "laranja",
+ "color-paleturquoise": "azul ciano",
+ "color-peachpuff": "pêssego",
+ "color-pink": "cor-de-rosa",
+ "color-plum": "ameixa",
+ "color-purple": "roxo",
+ "color-red": "vermelho",
+ "color-saddlebrown": "marrom",
+ "color-silver": "prateado",
+ "color-sky": "azul-celeste",
+ "color-slateblue": "azul ardósia",
+ "color-white": "branco",
+ "color-yellow": "amarelo",
+ "unset-color": "Remover",
+ "comment": "Comentário",
+ "comment-placeholder": "Escrever Comentário",
+ "comment-only": "Somente comentários",
+ "comment-only-desc": "Pode comentar apenas em cartões.",
+ "no-comments": "Sem comentários",
+ "no-comments-desc": "Sem visualização de comentários e atividades.",
+ "computer": "Computador",
+ "confirm-subtask-delete-dialog": "Tem certeza que deseja excluir a subtarefa?",
+ "confirm-checklist-delete-dialog": "Tem certeza que quer excluir a lista de verificação?",
+ "copy-card-link-to-clipboard": "Copiar link do cartão para a área de transferência",
+ "linkCardPopup-title": "Ligar Cartão",
+ "searchElementPopup-title": "Buscar",
+ "copyCardPopup-title": "Copiar o cartão",
+ "copyChecklistToManyCardsPopup-title": "Copiar modelo de lista de verificação para vários cartões",
+ "copyChecklistToManyCardsPopup-instructions": "Títulos e descrições do cartão de destino neste formato JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título do primeiro cartão\", \"description\":\"Descrição do primeiro cartão\"}, {\"title\":\"Título do segundo cartão\",\"description\":\"Descrição do segundo cartão\"},{\"title\":\"Título do último cartão\",\"description\":\"Descrição do último cartão\"} ]",
+ "create": "Criar",
+ "createBoardPopup-title": "Criar Quadro",
+ "chooseBoardSourcePopup-title": "Importar quadro",
+ "createLabelPopup-title": "Criar Etiqueta",
+ "createCustomField": "Criar campo",
+ "createCustomFieldPopup-title": "Criar campo",
+ "current": "atual",
+ "custom-field-delete-pop": "Não existe desfazer. Isso irá excluir o campo customizado de todos os cartões e destruir seu histórico",
+ "custom-field-checkbox": "Caixa de seleção",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Lista suspensa",
+ "custom-field-dropdown-none": "(nada)",
+ "custom-field-dropdown-options": "Lista de opções",
+ "custom-field-dropdown-options-placeholder": "Pressione enter para adicionar mais opções",
+ "custom-field-dropdown-unknown": "(desconhecido)",
+ "custom-field-number": "Número",
+ "custom-field-text": "Texto",
+ "custom-fields": "Campos customizados",
+ "date": "Data",
+ "decline": "Rejeitar",
+ "default-avatar": "Avatar padrão",
+ "delete": "Excluir",
+ "deleteCustomFieldPopup-title": "Excluir campo customizado?",
+ "deleteLabelPopup-title": "Excluir Etiqueta?",
+ "description": "Descrição",
+ "disambiguateMultiLabelPopup-title": "Desambiguar ações de etiquetas",
+ "disambiguateMultiMemberPopup-title": "Desambiguar ações de membros",
+ "discard": "Descartar",
+ "done": "Feito",
+ "download": "Baixar",
+ "edit": "Editar",
+ "edit-avatar": "Alterar Avatar",
+ "edit-profile": "Editar Perfil",
+ "edit-wip-limit": "Editar Limite WIP",
+ "soft-wip-limit": "Limite de WIP",
+ "editCardStartDatePopup-title": "Altera data de início",
+ "editCardDueDatePopup-title": "Altera prazo final",
+ "editCustomFieldPopup-title": "Editar campo",
+ "editCardSpentTimePopup-title": "Editar tempo gasto",
+ "editLabelPopup-title": "Alterar Etiqueta",
+ "editNotificationPopup-title": "Editar Notificações",
+ "editProfilePopup-title": "Editar Perfil",
+ "email": "E-mail",
+ "email-enrollAccount-subject": "Uma conta foi criada para você em __siteName__",
+ "email-enrollAccount-text": "Olá __user__\npara iniciar utilizando o serviço basta clicar no link abaixo.\n__url__\nMuito Obrigado.",
+ "email-fail": "Falhou ao enviar e-mail",
+ "email-fail-text": "Erro ao tentar enviar e-mail",
+ "email-invalid": "E-mail inválido",
+ "email-invite": "Convite via E-mail",
+ "email-invite-subject": "__inviter__ lhe enviou um convite",
+ "email-invite-text": "Caro __user__\n__inviter__ lhe convidou para ingressar no quadro \"__board__\" como colaborador.\nPor favor prossiga através do link abaixo:\n__url__\nMuito obrigado.",
+ "email-resetPassword-subject": "Redefina sua senha em __siteName__",
+ "email-resetPassword-text": "Olá __user__\nPara redefinir sua senha, por favor clique no link abaixo.\n__url__\nMuito obrigado.",
+ "email-sent": "E-mail enviado",
+ "email-verifyEmail-subject": "Verifique seu endereço de e-mail em __siteName__",
+ "email-verifyEmail-text": "Olá __user__\nPara verificar sua conta de e-mail, clique no link abaixo.\n__url__\nObrigado.",
+ "enable-wip-limit": "Ativar Limite WIP",
+ "error-board-doesNotExist": "Este quadro não existe",
+ "error-board-notAdmin": "Você precisa ser administrador desse quadro para fazer isto",
+ "error-board-notAMember": "Você precisa ser um membro desse quadro para fazer isto",
+ "error-json-malformed": "Seu texto não é um JSON válido",
+ "error-json-schema": "Seu JSON não inclui as informações no formato correto",
+ "error-list-doesNotExist": "Esta lista não existe",
+ "error-user-doesNotExist": "Este usuário não existe",
+ "error-user-notAllowSelf": "Você não pode convidar a si mesmo",
+ "error-user-notCreated": "Este usuário não foi criado",
+ "error-username-taken": "Esse username já existe",
+ "error-email-taken": "E-mail já está em uso",
+ "export-board": "Exportar quadro",
+ "filter": "Filtrar",
+ "filter-cards": "Filtrar Cartões",
+ "filter-clear": "Limpar filtro",
+ "filter-no-label": "Sem etiquetas",
+ "filter-no-member": "Sem membros",
+ "filter-no-custom-fields": "Não há campos customizados",
+ "filter-on": "Filtro está ativo",
+ "filter-on-desc": "Você está filtrando cartões neste quadro. Clique aqui para editar o filtro.",
+ "filter-to-selection": "Filtrar esta seleção",
+ "advanced-filter-label": "Filtro avançado",
+ "advanced-filter-description": "Filtros avançados permitem escrever uma \"string\" contendo os seguintes operadores: == != <= >= && || (). Um espaco é utilizado como separador entre os operadores. Você pode filtrar para todos os campos personalizados escrevendo os nomes e valores. Exemplo: Campo1 == Valor1. Nota^Se o campo ou valor tiver espaços você precisa encapsular eles em citações sozinhas. Exemplo: Campo1 == Eu\\sou. Também você pode combinar múltiplas condições. Exemplo: C1 == V1 || C1 == V2. Normalmente todos os operadores são interpretados da esquerda para direita. Você pode alterar a ordem colocando parênteses - como ma expressão matemática. Exemplo: C1 == V1 && (C2 == V2 || C2 == V3). Você tamb~em pode pesquisar campos de texto usando regex: C1 == /Tes.*/i",
+ "fullname": "Nome Completo",
+ "header-logo-title": "Voltar para a lista de quadros.",
+ "hide-system-messages": "Esconde mensagens de sistema",
+ "headerBarCreateBoardPopup-title": "Criar Quadro",
+ "home": "Início",
+ "import": "Importar",
+ "link": "Ligação",
+ "import-board": "importar quadro",
+ "import-board-c": "Importar quadro",
+ "import-board-title-trello": "Importar quadro do Trello",
+ "import-board-title-wekan": "Importar quadro a partir de exportação prévia",
+ "import-sandstorm-backup-warning": "Não exclua os dados importados do quadro original exportado ou do Trello antes de verificar se esse item fecha e abre novamente, ou se você receber o erro Quadro não encontrado, que significa perda de dados.",
+ "import-sandstorm-warning": "O quadro importado irá excluir todos os dados existentes no quadro e irá sobrescrever com o quadro importado.",
+ "from-trello": "Do Trello",
+ "from-wekan": "A partir de exportação prévia",
+ "import-board-instruction-trello": "No seu quadro do Trello, vá em 'Menu', depois em 'Mais', 'Imprimir e Exportar', 'Exportar JSON', então copie o texto emitido",
+ "import-board-instruction-wekan": "Em seu quadro vá para 'Menu', depois 'Exportar quadro' e copie o texto no arquivo baixado.",
+ "import-board-instruction-about-errors": "Se você receber erros ao importar o quadro, às vezes a importação ainda funciona e o quadro está na página Todos os Quadros.",
+ "import-json-placeholder": "Cole seus dados JSON válidos aqui",
+ "import-map-members": "Mapear membros",
+ "import-members-map": "Seu quadro importado possui alguns membros. Por favor, mapeie os membros que você deseja importar para seus usuários",
+ "import-show-user-mapping": "Revisar mapeamento dos membros",
+ "import-user-select": "Escolha um usuário existente que você deseja usar como esse membro",
+ "importMapMembersAddPopup-title": "Selecione membro",
+ "info": "Versão",
+ "initials": "Iniciais",
+ "invalid-date": "Data inválida",
+ "invalid-time": "Hora inválida",
+ "invalid-user": "Usuário inválido",
+ "joined": "juntou-se",
+ "just-invited": "Você já foi convidado para este quadro",
+ "keyboard-shortcuts": "Atalhos do teclado",
+ "label-create": "Criar Etiqueta",
+ "label-default": "%s etiqueta (padrão)",
+ "label-delete-pop": "Não será possível recuperá-la. A etiqueta será excluida de todos os cartões e seu histórico será destruído.",
+ "labels": "Etiquetas",
+ "language": "Idioma",
+ "last-admin-desc": "Você não pode alterar funções porque deve existir pelo menos um administrador.",
+ "leave-board": "Sair do Quadro",
+ "leave-board-pop": "Tem a certeza de que pretende sair de __boardTitle__? Você será removido de todos os cartões neste quadro.",
+ "leaveBoardPopup-title": "Sair do Quadro?",
+ "link-card": "Vincular a este cartão",
+ "list-archive-cards": "Move todos os cartões nesta lista para o Arquivo-morto",
+ "list-archive-cards-pop": "Isto removerá todos os cartões desta lista para o quadro. Para visualizar cartões arquivados e trazê-los de volta para o quadro, clique em “Menu” > “Arquivo-morto”.",
+ "list-move-cards": "Mover todos os cartões desta lista",
+ "list-select-cards": "Selecionar todos os cartões nesta lista",
+ "set-color-list": "Definir Cor",
+ "listActionPopup-title": "Listar Ações",
+ "swimlaneActionPopup-title": "Ações de Raia",
+ "swimlaneAddPopup-title": "Adicionar uma Raia abaixo",
+ "listImportCardPopup-title": "Importe um cartão do Trello",
+ "listMorePopup-title": "Mais",
+ "link-list": "Vincular a esta lista",
+ "list-delete-pop": "Todas as ações serão excluidas da lista de atividades e você não poderá recuperar a lista. Não há como desfazer.",
+ "list-delete-suggest-archive": "Você pode mover uma lista para o Arquivo-morto para removê-la do quadro e preservar a atividade.",
+ "lists": "Listas",
+ "swimlanes": "Raias",
+ "log-out": "Sair",
+ "log-in": "Entrar",
+ "loginPopup-title": "Entrar",
+ "memberMenuPopup-title": "Configuração de Membros",
+ "members": "Membros",
+ "menu": "Menu",
+ "move-selection": "Mover seleção",
+ "moveCardPopup-title": "Mover Cartão",
+ "moveCardToBottom-title": "Mover para o final",
+ "moveCardToTop-title": "Mover para o topo",
+ "moveSelectionPopup-title": "Mover seleção",
+ "multi-selection": "Multi-Seleção",
+ "multi-selection-on": "Multi-seleção está ativo",
+ "muted": "Silenciar",
+ "muted-info": "Você nunca receberá qualquer notificação desse board",
+ "my-boards": "Meus Quadros",
+ "name": "Nome",
+ "no-archived-cards": "Sem cartões no Arquivo-morto.",
+ "no-archived-lists": "Sem listas no Arquivo-morto.",
+ "no-archived-swimlanes": "Sem raias no Arquivo-morto.",
+ "no-results": "Nenhum resultado.",
+ "normal": "Normal",
+ "normal-desc": "Pode ver e editar cartões. Não pode alterar configurações.",
+ "not-accepted-yet": "Convite ainda não aceito",
+ "notify-participate": "Receber atualizações de qualquer card que você criar ou participar como membro",
+ "notify-watch": "Receber atualizações de qualquer board, lista ou cards que você estiver observando",
+ "optional": "opcional",
+ "or": "ou",
+ "page-maybe-private": "Esta página pode ser privada. Você poderá vê-la se estiver <a href='%s'>logado</a>.",
+ "page-not-found": "Página não encontrada.",
+ "password": "Senha",
+ "paste-or-dragdrop": "para colar, ou arraste e solte o arquivo da imagem para cá (somente imagens)",
+ "participating": "Participando",
+ "preview": "Previsualizar",
+ "previewAttachedImagePopup-title": "Previsualizar",
+ "previewClipboardImagePopup-title": "Previsualizar",
+ "private": "Privado",
+ "private-desc": "Este quadro é privado. Apenas seus membros podem acessar e editá-lo.",
+ "profile": "Perfil",
+ "public": "Público",
+ "public-desc": "Este quadro é público. Ele é visível a qualquer pessoa com o link e será exibido em mecanismos de busca como o Google. Apenas seus membros podem editá-lo.",
+ "quick-access-description": "Clique na estrela para adicionar um atalho nesta barra.",
+ "remove-cover": "Remover Capa",
+ "remove-from-board": "Remover do Quadro",
+ "remove-label": "Remover Etiqueta",
+ "listDeletePopup-title": "Excluir Lista?",
+ "remove-member": "Remover Membro",
+ "remove-member-from-card": "Remover do Cartão",
+ "remove-member-pop": "Remover __name__ (__username__) de __boardTitle__? O membro será removido de todos os cartões neste quadro e será notificado.",
+ "removeMemberPopup-title": "Remover Membro?",
+ "rename": "Renomear",
+ "rename-board": "Renomear Quadro",
+ "restore": "Restaurar",
+ "save": "Salvar",
+ "search": "Buscar",
+ "rules": "Regras",
+ "search-cards": "Pesquisa em títulos e descrições de cartões neste quadro",
+ "search-example": "Texto para procurar",
+ "select-color": "Selecionar Cor",
+ "set-wip-limit-value": "Defina um limite máximo para o número de tarefas nesta lista",
+ "setWipLimitPopup-title": "Definir Limite WIP",
+ "shortcut-assign-self": "Atribuir a si o cartão atual",
+ "shortcut-autocomplete-emoji": "Autocompletar emoji",
+ "shortcut-autocomplete-members": "Preenchimento automático de membros",
+ "shortcut-clear-filters": "Limpar todos filtros",
+ "shortcut-close-dialog": "Fechar dialogo",
+ "shortcut-filter-my-cards": "Filtrar meus cartões",
+ "shortcut-show-shortcuts": "Mostrar lista de atalhos",
+ "shortcut-toggle-filterbar": "Alternar barra de filtro",
+ "shortcut-toggle-sidebar": "Fechar barra lateral.",
+ "show-cards-minimum-count": "Mostrar contador de cards se a lista tiver mais de",
+ "sidebar-open": "Abrir barra lateral",
+ "sidebar-close": "Fechar barra lateral",
+ "signupPopup-title": "Criar uma Conta",
+ "star-board-title": "Clique para marcar este quadro como favorito. Ele aparecerá no topo na lista dos seus quadros.",
+ "starred-boards": "Quadros Favoritos",
+ "starred-boards-description": "Quadros favoritos aparecem no topo da lista dos seus quadros.",
+ "subscribe": "Acompanhar",
+ "team": "Equipe",
+ "this-board": "este quadro",
+ "this-card": "este cartão",
+ "spent-time-hours": "Tempo gasto (Horas)",
+ "overtime-hours": "Tempo extras (Horas)",
+ "overtime": "Tempo extras",
+ "has-overtime-cards": "Tem cartões de horas extras",
+ "has-spenttime-cards": "Gastou cartões de tempo",
+ "time": "Tempo",
+ "title": "Título",
+ "tracking": "Rastreamento",
+ "tracking-info": "Você será notificado se houver qualquer alteração em cards em que você é o criador ou membro",
+ "type": "Tipo",
+ "unassign-member": "Membro não associado",
+ "unsaved-description": "Você possui uma descrição não salva",
+ "unwatch": "Deixar de observar",
+ "upload": "Carregar",
+ "upload-avatar": "Carregar um avatar",
+ "uploaded-avatar": "Avatar carregado",
+ "username": "Nome de usuário",
+ "view-it": "Visualizar",
+ "warn-list-archived": "aviso: este cartão está em uma lista no Arquiv-morto",
+ "watch": "Observar",
+ "watching": "Observando",
+ "watching-info": "Você será notificado de qualquer alteração neste quadro",
+ "welcome-board": "Board de Boas Vindas",
+ "welcome-swimlane": "Marco 1",
+ "welcome-list1": "Básico",
+ "welcome-list2": "Avançado",
+ "card-templates-swimlane": "Modelos de cartão",
+ "list-templates-swimlane": "Modelos de lista",
+ "board-templates-swimlane": "Modelos de quadro",
+ "what-to-do": "O que você gostaria de fazer?",
+ "wipLimitErrorPopup-title": "Limite WIP Inválido",
+ "wipLimitErrorPopup-dialog-pt1": "O número de tarefas nesta lista excede o limite WIP definido.",
+ "wipLimitErrorPopup-dialog-pt2": "Por favor, mova algumas tarefas para fora desta lista, ou defina um limite WIP mais elevado.",
+ "admin-panel": "Painel Administrativo",
+ "settings": "Configurações",
+ "people": "Pessoas",
+ "registration": "Registro",
+ "disable-self-registration": "Desabilitar Cadastrar-se",
+ "invite": "Convite",
+ "invite-people": "Convide Pessoas",
+ "to-boards": "Para o/os quadro(s)",
+ "email-addresses": "Endereço de E-mail",
+ "smtp-host-description": "O endereço do servidor SMTP que envia seus e-mails.",
+ "smtp-port-description": "A porta que o servidor SMTP usa para enviar os e-mails.",
+ "smtp-tls-description": "Habilitar suporte TLS para servidor SMTP",
+ "smtp-host": "Servidor SMTP",
+ "smtp-port": "Porta SMTP",
+ "smtp-username": "Nome de usuário",
+ "smtp-password": "Senha",
+ "smtp-tls": "Suporte TLS",
+ "send-from": "De",
+ "send-smtp-test": "Enviar um e-mail de teste para você mesmo",
+ "invitation-code": "Código do Convite",
+ "email-invite-register-subject": "__inviter__ lhe enviou um convite",
+ "email-invite-register-text": "Caro __user__,\n\n__inviter__ convida você para o quadro Kanban para colaborações.\n\nPor favor, siga o link abaixo:\n__url__ \n\nE seu código de convite é: __icode__\n\nObrigado.",
+ "email-smtp-test-subject": "E-mail de teste via SMTP",
+ "email-smtp-test-text": "Você enviou um e-mail com sucesso",
+ "error-invitation-code-not-exist": "O código do convite não existe",
+ "error-notAuthorized": "Você não está autorizado à ver esta página.",
+ "outgoing-webhooks": "Webhook de saída",
+ "outgoingWebhooksPopup-title": "Webhook de saída",
+ "boardCardTitlePopup-title": "Filtro do Título do Cartão",
+ "new-outgoing-webhook": "Novo Webhook de saída",
+ "no-name": "(Desconhecido)",
+ "Node_version": "Versão do Node",
+ "OS_Arch": "Arquitetura do SO",
+ "OS_Cpus": "Quantidade de CPUS do SO",
+ "OS_Freemem": "Memória Disponível do SO",
+ "OS_Loadavg": "Carga Média do SO",
+ "OS_Platform": "Plataforma do SO",
+ "OS_Release": "Versão do SO",
+ "OS_Totalmem": "Memória Total do SO",
+ "OS_Type": "Tipo do SO",
+ "OS_Uptime": "Disponibilidade do SO",
+ "days": "dias",
+ "hours": "horas",
+ "minutes": "minutos",
+ "seconds": "segundos",
+ "show-field-on-card": "Mostrar este campo no cartão",
+ "automatically-field-on-card": "Criar campo automaticamente para todos os cartões",
+ "showLabel-field-on-card": "Mostrar etiqueta do campo no minicartão",
+ "yes": "Sim",
+ "no": "Não",
+ "accounts": "Contas",
+ "accounts-allowEmailChange": "Permitir Mudança de e-mail",
+ "accounts-allowUserNameChange": "Permitir alteração de nome de usuário",
+ "createdAt": "Criado em",
+ "verified": "Verificado",
+ "active": "Ativo",
+ "card-received": "Recebido",
+ "card-received-on": "Recebido em",
+ "card-end": "Concluído",
+ "card-end-on": "Concluído em",
+ "editCardReceivedDatePopup-title": "Modificar data de recebimento",
+ "editCardEndDatePopup-title": "Mudar data de conclusão",
+ "setCardColorPopup-title": "Definir cor",
+ "setCardActionsColorPopup-title": "Escolha uma cor",
+ "setSwimlaneColorPopup-title": "Escolha uma cor",
+ "setListColorPopup-title": "Escolha uma cor",
+ "assigned-by": "Atribuído por",
+ "requested-by": "Solicitado por",
+ "board-delete-notice": "Excluir é permanente. Você perderá todas as listas, cartões e ações associados nesse quadro.",
+ "delete-board-confirm-popup": "Todas as listas, cartões, etiquetas e atividades serão excluídas e você não poderá recuperar o conteúdo do quadro. Não há como desfazer.",
+ "boardDeletePopup-title": "Excluir quadro?",
+ "delete-board": "Excluir quadro",
+ "default-subtasks-board": "Subtarefas para quadro __board__",
+ "default": "Padrão",
+ "queue": "Fila",
+ "subtask-settings": "Configurações de subtarefas",
+ "boardSubtaskSettingsPopup-title": "Configurações das subtarefas do quadro",
+ "show-subtasks-field": "Cartões podem ter subtarefas",
+ "deposit-subtasks-board": "Inserir subtarefas a este quadro:",
+ "deposit-subtasks-list": "Listas de subtarefas inseridas aqui:",
+ "show-parent-in-minicard": "Mostrar Pai do mini cartão:",
+ "prefix-with-full-path": "Prefixo com caminho completo",
+ "prefix-with-parent": "Prefixo com Pai",
+ "subtext-with-full-path": "Subtexto com caminho completo",
+ "subtext-with-parent": "Subtexto com Pai",
+ "change-card-parent": "Mudar Pai do cartão",
+ "parent-card": "Pai do cartão",
+ "source-board": "Fonte do quadro",
+ "no-parent": "Não mostrar Pai",
+ "activity-added-label": "adicionada etiqueta '%s' para %s",
+ "activity-removed-label": "removida etiqueta '%s' de %s",
+ "activity-delete-attach": "excluído um anexo de %s",
+ "activity-added-label-card": "adicionada etiqueta '%s'",
+ "activity-removed-label-card": "removida etiqueta '%s'",
+ "activity-delete-attach-card": "excluído um anexo",
+ "activity-set-customfield": "definir campo personalizado '%s' para '%s' em %s",
+ "activity-unset-customfield": "redefinir campo personalizado '%s' em %s",
+ "r-rule": "Regra",
+ "r-add-trigger": "Adicionar gatilho",
+ "r-add-action": "Adicionar ação",
+ "r-board-rules": "Quadro de regras",
+ "r-add-rule": "Adicionar regra",
+ "r-view-rule": "Ver regra",
+ "r-delete-rule": "Excluir regra",
+ "r-new-rule-name": "Título da nova regra",
+ "r-no-rules": "Sem regras",
+ "r-when-a-card": "Quando um cartão",
+ "r-is": "é",
+ "r-is-moved": "é movido",
+ "r-added-to": "adicionado à",
+ "r-removed-from": "Removido de",
+ "r-the-board": "o quadro",
+ "r-list": "lista",
+ "set-filter": "Inserir Filtro",
+ "r-moved-to": "Movido para",
+ "r-moved-from": "Movido de",
+ "r-archived": "Movido para o Arquivo-morto",
+ "r-unarchived": "Restaurado do Arquivo-morto",
+ "r-a-card": "um cartão",
+ "r-when-a-label-is": "Quando uma etiqueta é",
+ "r-when-the-label": "Quando a etiqueta é",
+ "r-list-name": "listar nome",
+ "r-when-a-member": "Quando um membro é",
+ "r-when-the-member": "Quando o membro",
+ "r-name": "nome",
+ "r-when-a-attach": "Quando um anexo",
+ "r-when-a-checklist": "Quando a lista de verificação é",
+ "r-when-the-checklist": "Quando a lista de verificação",
+ "r-completed": "Completado",
+ "r-made-incomplete": "Feito incompleto",
+ "r-when-a-item": "Quando o item da lista de verificação é",
+ "r-when-the-item": "Quando o item da lista de verificação",
+ "r-checked": "Marcado",
+ "r-unchecked": "Desmarcado",
+ "r-move-card-to": "Mover cartão para",
+ "r-top-of": "Topo de",
+ "r-bottom-of": "Final de",
+ "r-its-list": "é lista",
+ "r-archive": "Mover para Arquivo-morto",
+ "r-unarchive": "Restaurar do Arquivo-morto",
+ "r-card": "cartão",
+ "r-add": "Novo",
+ "r-remove": "Remover",
+ "r-label": "etiqueta",
+ "r-member": "membro",
+ "r-remove-all": "Remover todos os membros do cartão",
+ "r-set-color": "Definir cor para",
+ "r-checklist": "lista de verificação",
+ "r-check-all": "Marcar todos",
+ "r-uncheck-all": "Desmarcar todos",
+ "r-items-check": "itens da lista de verificação",
+ "r-check": "Marcar",
+ "r-uncheck": "Desmarcar",
+ "r-item": "item",
+ "r-of-checklist": "da lista de verificação",
+ "r-send-email": "Enviar um e-mail",
+ "r-to": "para",
+ "r-subject": "assunto",
+ "r-rule-details": "Detalhes da regra",
+ "r-d-move-to-top-gen": "Mover cartão para o topo da sua lista",
+ "r-d-move-to-top-spec": "Mover cartão para o topo da lista",
+ "r-d-move-to-bottom-gen": "Mover cartão para o final da sua lista",
+ "r-d-move-to-bottom-spec": "Mover cartão para final da lista",
+ "r-d-send-email": "Enviar e-mail",
+ "r-d-send-email-to": "para",
+ "r-d-send-email-subject": "assunto",
+ "r-d-send-email-message": "mensagem",
+ "r-d-archive": "Mover cartão para Arquivo-morto",
+ "r-d-unarchive": "Restaurar cartão do Arquivo-morto",
+ "r-d-add-label": "Adicionar etiqueta",
+ "r-d-remove-label": "Remover etiqueta",
+ "r-create-card": "Criar novo cartão",
+ "r-in-list": "na lista",
+ "r-in-swimlane": "na raia",
+ "r-d-add-member": "Adicionar membro",
+ "r-d-remove-member": "Remover membro",
+ "r-d-remove-all-member": "Remover todos os membros",
+ "r-d-check-all": "Marcar todos os itens de uma lista",
+ "r-d-uncheck-all": "Desmarcar todos os itens de uma lista",
+ "r-d-check-one": "Marcar item",
+ "r-d-uncheck-one": "Desmarcar item",
+ "r-d-check-of-list": "da lista de verificação",
+ "r-d-add-checklist": "Adicionar lista de verificação",
+ "r-d-remove-checklist": "Remover lista de verificação",
+ "r-by": "por",
+ "r-add-checklist": "Adicionar lista de verificação",
+ "r-with-items": "com os itens",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Adicionar raia",
+ "r-swimlane-name": "Nome da raia",
+ "r-board-note": "Nota: deixe o campo vazio para corresponder à todos os valores possíveis",
+ "r-checklist-note": "Nota: itens de Checklists devem ser escritos separados por vírgulas",
+ "r-when-a-card-is-moved": "Quando um cartão é movido de outra lista",
+ "r-set": "Definir",
+ "r-update": "Atualizar",
+ "r-datefield": "campo data",
+ "r-df-start-at": "início",
+ "r-df-due-at": "prazo final",
+ "r-df-end-at": "concluído",
+ "r-df-received-at": "recebido",
+ "r-to-current-datetime": "para data/hora atuais",
+ "r-remove-value-from": "Remover valores do",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Método de autenticação",
+ "authentication-type": "Tipo de autenticação",
+ "custom-product-name": "Nome Customizado do Produto",
+ "layout": "Layout",
+ "hide-logo": "Esconder Logo",
+ "add-custom-html-after-body-start": "Adicionar HTML Customizado depois do início do <body>",
+ "add-custom-html-before-body-end": "Adicionar HTML Customizado antes do fim do </body>",
+ "error-undefined": "Algo deu errado",
+ "error-ldap-login": "Um erro ocorreu enquanto tentava entrar",
+ "display-authentication-method": "Mostrar Método de Autenticação",
+ "default-authentication-method": "Método de Autenticação Padrão",
+ "duplicate-board": "Duplicar Quadro",
+ "people-number": "O número de pessoas é:",
+ "swimlaneDeletePopup-title": "Excluir Raia?",
+ "swimlane-delete-pop": "Todas as ações serão excluídas da lista de atividades e você não poderá recuperar a raia. Não há como desfazer.",
+ "restore-all": "Restaurar tudo",
+ "delete-all": "Excluir tudo",
+ "loading": "Carregando, aguarde por favor.",
+ "previous_as": "ultima vez foi",
+ "act-a-dueAt": "prazo final modificado para \nQuando: __timeValue__\nOnde: __card__\n prazo final anterior era __timeOldValue__",
+ "act-a-endAt": "hora de conclusão modificada de (__timeOldValue__) para __timeValue__ ",
+ "act-a-startAt": "hora de início modificada de (__timeOldValue__) para __timeValue__ ",
+ "act-a-receivedAt": "hora de recebido modificada de (__timeOldValue__) para __timeValue__ ",
+ "a-dueAt": "prazo final modificado para",
+ "a-endAt": "hora de conclusão modificada para",
+ "a-startAt": "hora de início modificada para",
+ "a-receivedAt": "hora de recebido modificada para",
+ "almostdue": "prazo final atual %s está próximo",
+ "pastdue": "prazo final atual %s venceu",
+ "duenow": "prazo final atual %s é hoje",
+ "act-withDue": "__card__ lembrete de prazos finais [__board__]",
+ "act-almostdue": "está lembrando que o prazo final atual (__timeValue__) do __card__ está próximo",
+ "act-pastdue": "está lembrando que o prazo final atual (__timeValue__) do __card__ venceu",
+ "act-duenow": "está lembrando que o prazo final (__timeValue__) do __card__ é agora",
+ "act-atUserComment": "Você foi mencionado no [__board__] __card__",
+ "delete-user-confirm-popup": "Você realmente quer apagar esta conta? Não há como desfazer.",
+ "accounts-allowUserDelete": "Permitir que usuários apaguem a própria conta",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/pt.i18n.json b/i18n/pt.i18n.json
index 6955af36..7f784dc3 100644
--- a/i18n/pt.i18n.json
+++ b/i18n/pt.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Aceitar",
- "act-activity-notify": "Notificação de Actividade",
- "act-addAttachment": "adicionou o anexo __attachment__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-deleteAttachment": "apagou o anexo __attachment__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addSubtask": "adicionou a sub-tarefa __subtask__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addLabel": "Adicionou a etiqueta __label__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addedLabel": "Adicionou a etiqueta __label__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-removeLabel": "Removeu a etiqueta __label__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-removedLabel": "Removeu a etiqueta __label__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addChecklist": "adicionoua lista de verificação __checklist__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addChecklistItem": "adicionou o item __checklistItem__ à lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-removeChecklist": "removeu a lista de verificação __checklist__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-removeChecklistItem": "removeu o item __checklistItem__ da lista de verificação __checkList__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-checkedItem": "marcou __checklistItem__ na lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-uncheckedItem": "desmarcou __checklistItem__ na lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-completeChecklist": "completou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-uncompleteChecklist": "descompletou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-addComment": "comentou no cartão __card__: __comment__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "criou o quadro __board__",
- "act-createSwimlane": "criou a pista __swimlane__ no quadro __board__",
- "act-createCard": "criou o cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "adicionou a lista __list__ ao quadro __board__",
- "act-addBoardMember": "adicionou o membro __member__ ao quadro __board__",
- "act-archivedBoard": "O quadro __board__ foi movido para o Arquivo",
- "act-archivedCard": "O cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__ foi movido para o Arquivo",
- "act-archivedList": "A lista __list__ na pista __swimlane__ no quadro __board__ foi movida para o Arquivo",
- "act-archivedSwimlane": "A pista __swimlane__ no quadro __board__ foi movida para o Arquivo",
- "act-importBoard": "importou o quadro __board__",
- "act-importCard": "importou o cartão __card__ para a lista __list__ na pista __swimlane__ no quadro __board__",
- "act-importList": "importou a lista __list__ para pista __swimlane__ no quadro __board__",
- "act-joinMember": "adicionou o membro __member__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-moveCard": "moveu o cartão __card__ do quadro __board__ da pista __oldSwimlane__ da lista __oldList__ para a pista __swimlane__ na lista __list__",
- "act-moveCardToOtherBoard": "moveuo cartão __card__ da lista __oldList__ na pista __oldSwimlane__ no quadro __oldBoard__ para a lista __list__ na pista __swimlane__ no quadro __board__",
- "act-removeBoardMember": "removeuo membro __member__ do quadro __board__",
- "act-restoredCard": "restaurou o cartão __card__ para a lista __list__ na pista __swimlane__ no quadro __board__",
- "act-unjoinMember": "removeu o membro __member__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Acções",
- "activities": "Actividades",
- "activity": "Actividade",
- "activity-added": "adicionou %s a %s",
- "activity-archived": "%s foi movido para o Arquivo",
- "activity-attached": "anexou %s a %s",
- "activity-created": "criou %s",
- "activity-customfield-created": "criado o campo personalizado %s",
- "activity-excluded": "excluiu %s de %s",
- "activity-imported": "importou %s para %s de %s",
- "activity-imported-board": "importou %s de %s",
- "activity-joined": "juntou-se a %s",
- "activity-moved": "moveu %s de %s para %s",
- "activity-on": "em %s",
- "activity-removed": "removeu %s de %s",
- "activity-sent": "enviou %s para %s",
- "activity-unjoined": "saiu de %s",
- "activity-subtask-added": "adicionou a sub-tarefa a",
- "activity-checked-item": "marcou %s na lista de verificação %s de %s",
- "activity-unchecked-item": "desmarcou %s na lista de verificação %s de %s",
- "activity-checklist-added": "adicionou a lista de verificação a %s",
- "activity-checklist-removed": "removeu a lista de verificação de %s",
- "activity-checklist-completed": "completou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "activity-checklist-uncompleted": "descompletou a lista de verificação %s de %s",
- "activity-checklist-item-added": "adicionou o item a '%s' em %s",
- "activity-checklist-item-removed": "removeu o item de '%s' na %s",
- "add": "Adicionar",
- "activity-checked-item-card": "marcou %s na lista de verificação %s",
- "activity-unchecked-item-card": "desmarcou %s na lista de verificação %s",
- "activity-checklist-completed-card": "completou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
- "activity-checklist-uncompleted-card": "descompletou a lista de verificação %s",
- "add-attachment": "Adicionar Anexo",
- "add-board": "Adicionar Quadro",
- "add-card": "Adicionar Cartão",
- "add-swimlane": "Adicionar Pista",
- "add-subtask": "Adicionar Sub-tarefa",
- "add-checklist": "Adicionar Lista de Verificação",
- "add-checklist-item": "Adicionar um item à lista de verificação",
- "add-cover": "Adicionar Capa",
- "add-label": "Adicionar Etiqueta",
- "add-list": "Adicionar Lista",
- "add-members": "Adicionar Membros",
- "added": "Adicionado",
- "addMemberPopup-title": "Membros",
- "admin": "Administrador",
- "admin-desc": "Pode ver e editar cartões, remover membros e alterar configurações do quadro.",
- "admin-announcement": "Anúncio",
- "admin-announcement-active": "Anúncio Activo em Todo o Sistema",
- "admin-announcement-title": "Anúncio do Administrador",
- "all-boards": "Todos os quadros",
- "and-n-other-card": "E __count__ outro cartão",
- "and-n-other-card_plural": "E __count__ outros cartões",
- "apply": "Aplicar",
- "app-is-offline": "A carregar, por favor aguarde. Actualizar a página causará perda de dados. Se o carregamento não funcionar, por favor verifique se o servidor não parou.",
- "archive": "Mover para o Arquivo",
- "archive-all": "Mover Tudo para o Arquivo",
- "archive-board": "Mover o Quadro para o Arquivo",
- "archive-card": "Mover o Cartão para o Arquivo",
- "archive-list": "Mover a Lista para o Arquivo",
- "archive-swimlane": "Mover a Pista para o Arquivo",
- "archive-selection": "Mover a selecção para o Arquivo",
- "archiveBoardPopup-title": "Mover o Quadro para o Arquivo?",
- "archived-items": "Arquivo",
- "archived-boards": "Quadros no Arquivo",
- "restore-board": "Restaurar Quadro",
- "no-archived-boards": "Sem Quadros no Arquivo.",
- "archives": "Arquivo",
- "template": "Modelo",
- "templates": "Modelos",
- "assign-member": "Atribuir Membro",
- "attached": "anexado",
- "attachment": "Anexo",
- "attachment-delete-pop": "Apagar um anexo é permanente. Não será possível recuperá-lo.",
- "attachmentDeletePopup-title": "Apagar Anexo?",
- "attachments": "Anexos",
- "auto-watch": "Observar automaticamente os quadros quando são criados",
- "avatar-too-big": "O avatar é muito grande (70KB máx)",
- "back": "Voltar",
- "board-change-color": "Alterar cor",
- "board-nb-stars": "%s estrelas",
- "board-not-found": "Quadro não encontrado",
- "board-private-info": "Este quadro será <strong>privado</strong>.",
- "board-public-info": "Este quadro será <strong>público</strong>.",
- "boardChangeColorPopup-title": "Alterar Imagem de Fundo do Quadro",
- "boardChangeTitlePopup-title": "Renomear Quadro",
- "boardChangeVisibilityPopup-title": "Alterar Visibilidade",
- "boardChangeWatchPopup-title": "Alterar Observação",
- "boardMenuPopup-title": "Configurações do Quadro",
- "boards": "Quadros",
- "board-view": "Visão do Quadro",
- "board-view-cal": "Calendário",
- "board-view-swimlanes": "Pistas",
- "board-view-lists": "Listas",
- "bucket-example": "\"Lista de Desejos\", por exemplo",
- "cancel": "Cancelar",
- "card-archived": "Este cartão no Arquivo.",
- "board-archived": "Este quadro está no Arquivo.",
- "card-comments-title": "Este cartão possui %s comentário.",
- "card-delete-notice": "A remoção será permanente. Perderá todas as acções associadas a este cartão.",
- "card-delete-pop": "Todas as acções serão removidas do feed de Actividade e não poderá reabrir o cartão. Não há como desfazer.",
- "card-delete-suggest-archive": "Pode mover um cartão para o Arquivo para removê-lo do quadro e preservar a atividade.",
- "card-due": "Data limite",
- "card-due-on": "Data limite em",
- "card-spent": "Tempo Gasto",
- "card-edit-attachments": "Editar anexos",
- "card-edit-custom-fields": "Editar campos personalizados",
- "card-edit-labels": "Editar etiquetas",
- "card-edit-members": "Editar membros",
- "card-labels-title": "Alterar as etiquetas do cartão.",
- "card-members-title": "Acrescentar ou remover membros do quadro deste cartão.",
- "card-start": "Data de início",
- "card-start-on": "Inicia em",
- "cardAttachmentsPopup-title": "Anexar a partir de",
- "cardCustomField-datePopup-title": "Alterar a data",
- "cardCustomFieldsPopup-title": "Editar campos personalizados",
- "cardDeletePopup-title": "Apagar Cartão?",
- "cardDetailsActionsPopup-title": "Acções do Cartão",
- "cardLabelsPopup-title": "Etiquetas",
- "cardMembersPopup-title": "Membros",
- "cardMorePopup-title": "Mais",
- "cardTemplatePopup-title": "Criar Modelo",
- "cards": "Cartões",
- "cards-count": "Cartões",
- "casSignIn": "Entrar com CAS",
- "cardType-card": "Cartão",
- "cardType-linkedCard": "Cartão Ligado",
- "cardType-linkedBoard": "Quadro Ligado",
- "change": "Alterar",
- "change-avatar": "Alterar o Avatar",
- "change-password": "Alterar a Senha",
- "change-permissions": "Alterar as permissões",
- "change-settings": "Alterar as Configurações",
- "changeAvatarPopup-title": "Alterar o Avatar",
- "changeLanguagePopup-title": "Alterar o Idioma",
- "changePasswordPopup-title": "Alterar a Senha",
- "changePermissionsPopup-title": "Alterar as Permissões",
- "changeSettingsPopup-title": "Alterar as Configurações",
- "subtasks": "Sub-tarefas",
- "checklists": "Listas de verificação",
- "click-to-star": "Clique para marcar este quadro como favorito.",
- "click-to-unstar": "Clique para remover este quadro dos favoritos.",
- "clipboard": "Área de Transferência ou arraste e solte",
- "close": "Fechar",
- "close-board": "Fechar o Quadro",
- "close-board-pop": "Poderá restaurar o quadro clicando no botão “Arquivo” a partir do cabeçalho do Início.",
- "color-black": "preto",
- "color-blue": "azul",
- "color-crimson": "carmesim",
- "color-darkgreen": "verde escuro",
- "color-gold": "dourado",
- "color-gray": "cinza",
- "color-green": "verde",
- "color-indigo": "azul",
- "color-lime": "verde limão",
- "color-magenta": "magenta",
- "color-mistyrose": "rosa claro",
- "color-navy": "azul marinho",
- "color-orange": "laranja",
- "color-paleturquoise": "azul ciano",
- "color-peachpuff": "pêssego",
- "color-pink": "cor-de-rosa",
- "color-plum": "ameixa",
- "color-purple": "roxo",
- "color-red": "vermelho",
- "color-saddlebrown": "marrom",
- "color-silver": "prateado",
- "color-sky": "azul-celeste",
- "color-slateblue": "azul ardósia",
- "color-white": "branco",
- "color-yellow": "amarelo",
- "unset-color": "Remover",
- "comment": "Comentar",
- "comment-placeholder": "Escrever o Comentário",
- "comment-only": "Apenas comentários",
- "comment-only-desc": "Pode comentar apenas em cartões.",
- "no-comments": "Sem comentários",
- "no-comments-desc": "Não pode ver comentários nem actividades.",
- "computer": "Computador",
- "confirm-subtask-delete-dialog": "Tem certeza que deseja apagar a sub-tarefa?",
- "confirm-checklist-delete-dialog": "Tem certeza que quer apagar a lista de verificação?",
- "copy-card-link-to-clipboard": "Copiar a ligação do cartão para a área de transferência",
- "linkCardPopup-title": "Ligar Cartão",
- "searchElementPopup-title": "Procurar",
- "copyCardPopup-title": "Copiar o cartão",
- "copyChecklistToManyCardsPopup-title": "Copiar o Modelo de Lista de Verificação para Vários Cartões",
- "copyChecklistToManyCardsPopup-instructions": "Títulos e Descrições de Cartões de Destino neste formato JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título do primeiro cartão\", \"description\":\"Descrição do primeiro cartão\"}, {\"title\":\"Título do segundo cartão\",\"description\":\"Descrição do segundo cartão\"},{\"title\":\"Título do último cartão\",\"description\":\"Descrição do último cartão\"} ]",
- "create": "Criar",
- "createBoardPopup-title": "Criar Quadro",
- "chooseBoardSourcePopup-title": "Importar quadro",
- "createLabelPopup-title": "Criar Etiqueta",
- "createCustomField": "Criar Campo",
- "createCustomFieldPopup-title": "Criar Campo",
- "current": "actual",
- "custom-field-delete-pop": "Não existe desfazer. Isto irá remover este campo personalizado de todos os cartões e destruir o seu histórico",
- "custom-field-checkbox": "Caixa de selecção",
- "custom-field-date": "Data",
- "custom-field-dropdown": "Lista Suspensa",
- "custom-field-dropdown-none": "(nada)",
- "custom-field-dropdown-options": "Opções da Lista",
- "custom-field-dropdown-options-placeholder": "Pressione enter para adicionar mais opções",
- "custom-field-dropdown-unknown": "(desconhecido)",
- "custom-field-number": "Número",
- "custom-field-text": "Texto",
- "custom-fields": "Campos Personalizados",
- "date": "Data",
- "decline": "Rejeitar",
- "default-avatar": "Avatar por omissão",
- "delete": "Apagar",
- "deleteCustomFieldPopup-title": "Apagar o Campo Personalizado?",
- "deleteLabelPopup-title": "Apagar a Etiqueta?",
- "description": "Descrição",
- "disambiguateMultiLabelPopup-title": "Desambiguar Acção da Etiqueta",
- "disambiguateMultiMemberPopup-title": "Desambiguar Acção do Membro",
- "discard": "Descartar",
- "done": "Feito",
- "download": "Descarregar",
- "edit": "Editar",
- "edit-avatar": "Alterar o Avatar",
- "edit-profile": "Editar o Perfil",
- "edit-wip-limit": "Editar o Limite WIP",
- "soft-wip-limit": "Limite Suave de WIP",
- "editCardStartDatePopup-title": "Alterar a data de início",
- "editCardDueDatePopup-title": "Alterar a data limite",
- "editCustomFieldPopup-title": "Editar Campo",
- "editCardSpentTimePopup-title": "Alterar o tempo gasto",
- "editLabelPopup-title": "Alterar a Etiqueta",
- "editNotificationPopup-title": "Editar a Notificação",
- "editProfilePopup-title": "Editar o Perfil",
- "email": "E-mail",
- "email-enrollAccount-subject": "Uma conta foi criada para si em __siteName__",
- "email-enrollAccount-text": "Olá __user__\nPara começar a utilizar o serviço, basta clicar na ligação abaixo.\n__url__\nObrigado.",
- "email-fail": "Falhou a enviar o e-mail",
- "email-fail-text": "Erro a tentar enviar o e-mail",
- "email-invalid": "E-mail inválido",
- "email-invite": "Convidar via E-mail",
- "email-invite-subject": "__inviter__ enviou-lhe um convite",
- "email-invite-text": "Caro __user__\n__inviter__ convidou-o para se juntar ao quadro \"__board__\" para colaborar.\nPor favor prossiga através da ligação abaixo:\n__url__\nObrigado.",
- "email-resetPassword-subject": "Redefina sua senha em __siteName__",
- "email-resetPassword-text": "Olá __user__\nPara redefinir a sua senha, por favor clique na ligação abaixo.\n__url__\nObrigado.",
- "email-sent": "E-mail enviado",
- "email-verifyEmail-subject": "Verifique o seu endereço de e-mail em __siteName__",
- "email-verifyEmail-text": "Olá __user__\nPara verificar a sua conta de e-mail, clique na ligação abaixo.\n__url__\nObrigado.",
- "enable-wip-limit": "Ativar Limite WIP",
- "error-board-doesNotExist": "Este quadro não existe",
- "error-board-notAdmin": "Precisa de ser administrador deste quadro para fazer isso",
- "error-board-notAMember": "Precisa de ser um membro deste quadro para fazer isso",
- "error-json-malformed": "O seu texto não é um JSON válido",
- "error-json-schema": "O seu JSON não inclui as informações apropriadas no formato correto",
- "error-list-doesNotExist": "Esta lista não existe",
- "error-user-doesNotExist": "Este utilizador não existe",
- "error-user-notAllowSelf": "Não se pode convidar a si mesmo",
- "error-user-notCreated": "Este utilizador não foi criado",
- "error-username-taken": "Esse nome de utilizador já existe",
- "error-email-taken": "Endereço de e-mail já está em uso",
- "export-board": "Exportar quadro",
- "filter": "Filtrar",
- "filter-cards": "Filtrar Cartões",
- "filter-clear": "Limpar filtro",
- "filter-no-label": "Sem etiquetas",
- "filter-no-member": "Sem membros",
- "filter-no-custom-fields": "Sem Campos Personalizados",
- "filter-on": "Filtro está activo",
- "filter-on-desc": "Está a filtrar cartões neste quadro. Clique aqui para editar o filtro.",
- "filter-to-selection": "Filtrar esta selecção",
- "advanced-filter-label": "Filtro Avançado",
- "advanced-filter-description": "Filtro Avançado permite escrever uma \"string\" contendo os seguintes operadores: == != <= >= && || ( ). Um espaço é usado como separador entre Operadores. Pode filtrar em todos os Campos Personalizados escreventos os seus nomes e valores. Por Exemplo: Campo1 == Valor1. Nota: Se os campos ou valores contiverem espaços, tem de os encapsular em apóstrofes. Por Exemplo: 'Campo 1' == 'Valor 1'. Para que caracteres de controlo únicos (' \\/) sejam ignorados, pode usar \\. Por exemplo: Campo1 == I\\'m. Pode também combinar múltiplas condições. Por Exemplo: F1 == V1 || F1 == V2. Normalmente todos os operadores são interpretados da esquerda para a direita. Pode alterar a ordem inserindo parênteses. Por Exemplo: F1 == V1 && ( F2 == V2 || F2 == V3 ). Pode também procurar em campos de texto utilizando uma expressão regular: F1 == /Tes.*/i",
- "fullname": "Nome Completo",
- "header-logo-title": "Voltar para a sua lista de quadros.",
- "hide-system-messages": "Esconder mensagens de sistema",
- "headerBarCreateBoardPopup-title": "Criar Quadro",
- "home": "Início",
- "import": "Importar",
- "link": "Ligação",
- "import-board": "importar quadro",
- "import-board-c": "Importar quadro",
- "import-board-title-trello": "Importar quadro do Trello",
- "import-board-title-wekan": "Importar quadro a partir de exportação prévia",
- "import-sandstorm-backup-warning": "Não apague os dados importados do quadro original exportado ou do Trello antes de verificar se esse item fecha e abre novamente, ou se receber o erro Quadro não encontrado, que significa perda de dados.",
- "import-sandstorm-warning": "O quadro importado irá apagar todos os dados existentes no quadro e irá sobrescrever com o quadro importado.",
- "from-trello": "Do Trello",
- "from-wekan": "A partir de exportação prévia",
- "import-board-instruction-trello": "No seu quadro do Trello, vá em 'Menu', depois em 'Mais', 'Imprimir e Exportar', 'Exportar JSON', e copie o texto resultante.",
- "import-board-instruction-wekan": "No seu quadro vá para 'Menu', depois 'Exportar quadro' e copie o texto no ficheiro descarregado.",
- "import-board-instruction-about-errors": "Se receber erros ao importar o quadro, às vezes a importação ainda funciona e o quadro está na página Todos os Quadros.",
- "import-json-placeholder": "Cole seus dados JSON válidos aqui",
- "import-map-members": "Mapear membros",
- "import-members-map": "O seu quadro importado possui alguns membros. Por favor, mapeie os membros que deseja importar para seus utilizadores",
- "import-show-user-mapping": "Rever mapeamento dos membros",
- "import-user-select": "Escolha um utilizador existente que deseja usar como esse membro",
- "importMapMembersAddPopup-title": "Seleccione membro",
- "info": "Versão",
- "initials": "Iniciais",
- "invalid-date": "Data inválida",
- "invalid-time": "Hora inválida",
- "invalid-user": "Utilizador inválido",
- "joined": "juntou-se",
- "just-invited": "Acabou de ser convidado para este quadro",
- "keyboard-shortcuts": "Atalhos do teclado",
- "label-create": "Criar Etiqueta",
- "label-default": "%s etiqueta (omissão)",
- "label-delete-pop": "Não há como desfazer. A etiqueta será apagada de todos os cartões e o seu histórico será destruído.",
- "labels": "Etiquetas",
- "language": "Idioma",
- "last-admin-desc": "Não pode alterar funções porque deve existir pelo menos um administrador.",
- "leave-board": "Sair do Quadro",
- "leave-board-pop": "Tem a certeza de que pretende sair de __boardTitle__? Será removido de todos os cartões neste quadro.",
- "leaveBoardPopup-title": "Sair do Quadro ?",
- "link-card": "Ligar a este cartão",
- "list-archive-cards": "Move todos os cartões nesta lista para o Arquivo",
- "list-archive-cards-pop": "Isto irá remover todos os cartões nesta lista do quadro. Para ver os cartões no Arquivo e trazê-los de volta para o quadro, clique em “Menu” > “Arquivo”.",
- "list-move-cards": "Mover todos os cartões nesta lista",
- "list-select-cards": "Seleccionar todos os cartões nesta lista",
- "set-color-list": "Definir Cor",
- "listActionPopup-title": "Listar Ações",
- "swimlaneActionPopup-title": "Acções de Pista",
- "swimlaneAddPopup-title": "Adicionar uma Pista abaixo",
- "listImportCardPopup-title": "Importe um cartão do Trello",
- "listMorePopup-title": "Mais",
- "link-list": "Ligar a esta lista",
- "list-delete-pop": "Todas as acções serão removidas do feed de actividade e não poderá recuperar a lista. Não há como desfazer.",
- "list-delete-suggest-archive": "Pode mover uma lista para o Arquivo para a remover do quadro e preservar a actividade.",
- "lists": "Listas",
- "swimlanes": "Pistas",
- "log-out": "Terminar a Sessão",
- "log-in": "Entrar",
- "loginPopup-title": "Entrar",
- "memberMenuPopup-title": "Configuração dos Membros",
- "members": "Membros",
- "menu": "Menu",
- "move-selection": "Mover a selecção",
- "moveCardPopup-title": "Mover o Cartão",
- "moveCardToBottom-title": "Mover para o Fundo",
- "moveCardToTop-title": "Mover para o Topo",
- "moveSelectionPopup-title": "Mover a selecção",
- "multi-selection": "Selecção Múltipla",
- "multi-selection-on": "Selecção Múltipla está activa",
- "muted": "Silenciado",
- "muted-info": "Nunca será notificado de quaisquer alterações neste quadro",
- "my-boards": "Meus Quadros",
- "name": "Nome",
- "no-archived-cards": "Sem cartões no Arquivo.",
- "no-archived-lists": "Sem listas no Arquivo.",
- "no-archived-swimlanes": "Sem pistas no Arquivo.",
- "no-results": "Nenhum resultado.",
- "normal": "Normal",
- "normal-desc": "Pode ver e editar cartões. Não pode alterar configurações.",
- "not-accepted-yet": "Convite ainda não aceite",
- "notify-participate": "Receber actualizações de qualquer cartão que criar ou participar como membro",
- "notify-watch": "Receber actualizações de qualquer quadro, lista ou cartões que estiver a observar",
- "optional": "opcional",
- "or": "ou",
- "page-maybe-private": "Esta página pode ser privada. Poderá vê-la se <a href='%s'>iniciar a sessão</a>.",
- "page-not-found": "Página não encontrada.",
- "password": "Senha",
- "paste-or-dragdrop": "para colar, ou arrastar e soltar o ficheiro da imagem para lá (somente imagens)",
- "participating": "Participando",
- "preview": "Pré-visualizar",
- "previewAttachedImagePopup-title": "Pré-visualizar",
- "previewClipboardImagePopup-title": "Pré-visualizar",
- "private": "Privado",
- "private-desc": "Este quadro é privado. Apenas o membros do quadro o podem visualizar e editar.",
- "profile": "Perfil",
- "public": "Público",
- "public-desc": "Este quadro é público. Está visível para qualquer pessoa com a ligação e será exibido em motores de busca como o Google. Apenas os membros do quadro o podem editar.",
- "quick-access-description": "Clique na estrela de um quadro para adicionar um atalho nesta barra.",
- "remove-cover": "Remover Capa",
- "remove-from-board": "Remover do Quadro",
- "remove-label": "Remover Etiqueta",
- "listDeletePopup-title": "Apagar Lista ?",
- "remove-member": "Remover Membro",
- "remove-member-from-card": "Remover do Cartão",
- "remove-member-pop": "Remover __name__ (__username__) de __boardTitle__? O membro será removido de todos os cartões neste quadro e será notificado.",
- "removeMemberPopup-title": "Remover Membro?",
- "rename": "Renomear",
- "rename-board": "Renomear Quadro",
- "restore": "Restaurar",
- "save": "Guardar",
- "search": "Procurar",
- "rules": "Regras",
- "search-cards": "Pesquisar nos títulos e descrições dos cartões deste quadro",
- "search-example": "Texto a procurar?",
- "select-color": "Seleccionar Cor",
- "set-wip-limit-value": "Defina um limite máximo para o número de tarefas nesta lista",
- "setWipLimitPopup-title": "Definir Limite WIP",
- "shortcut-assign-self": "Atribuir a si o cartão actual",
- "shortcut-autocomplete-emoji": "Autocompletar emoji",
- "shortcut-autocomplete-members": "Autocompletar membros",
- "shortcut-clear-filters": "Limpar todos os filtros",
- "shortcut-close-dialog": "Fechar Caixa de Dialogo",
- "shortcut-filter-my-cards": "Filtrar os meus cartões",
- "shortcut-show-shortcuts": "Mostrar esta lista de atalhos",
- "shortcut-toggle-filterbar": "Alternar a Barra Lateral de Filtros",
- "shortcut-toggle-sidebar": "Alternar a Barra Lateral do Quadro",
- "show-cards-minimum-count": "Mostrar contagem de cartões se a lista tiver mais de",
- "sidebar-open": "Abrir a Barra Lateral",
- "sidebar-close": "Fechar a Barra Lateral",
- "signupPopup-title": "Criar uma Conta",
- "star-board-title": "Clique para marcar este quadro como favorito. O quadro irá aparecer no topo da sua lista de quadros.",
- "starred-boards": "Quadros Favoritos",
- "starred-boards-description": "Os quadros favoritos aparecem no topo da sua lista de quadros.",
- "subscribe": "Subscrever",
- "team": "Equipa",
- "this-board": "este quadro",
- "this-card": "este cartão",
- "spent-time-hours": "Tempo gasto (horas)",
- "overtime-hours": "Horas extra (horas)",
- "overtime": "Horas extra",
- "has-overtime-cards": "Tem cartões com horas extra",
- "has-spenttime-cards": "Tem cartões com tempo gasto",
- "time": "Tempo",
- "title": "Título",
- "tracking": "A seguir",
- "tracking-info": "Será notificado de quaisquer alterações em cartões em que é o criador ou membro.",
- "type": "Tipo",
- "unassign-member": "Desatribuir membro",
- "unsaved-description": "Possui uma descrição não guardada.",
- "unwatch": "Deixar de observar",
- "upload": "Enviar",
- "upload-avatar": "Enviar um avatar",
- "uploaded-avatar": "Enviado um avatar",
- "username": "Nome de utilizador",
- "view-it": "Visualizá-lo",
- "warn-list-archived": "aviso: este cartão está numa lista no Arquivo",
- "watch": "Observar",
- "watching": "Observando",
- "watching-info": "Será notificado de quaisquer alterações neste quadro",
- "welcome-board": "Quadro de Boas Vindas",
- "welcome-swimlane": "Marco 1",
- "welcome-list1": "Básico",
- "welcome-list2": "Avançado",
- "card-templates-swimlane": "Modelos de Cartão",
- "list-templates-swimlane": "Modelos de Lista",
- "board-templates-swimlane": "Modelos de Quadro",
- "what-to-do": "O que gostaria de fazer?",
- "wipLimitErrorPopup-title": "Limite WIP Inválido",
- "wipLimitErrorPopup-dialog-pt1": "O número de tarefas nesta lista excede o limite WIP definido.",
- "wipLimitErrorPopup-dialog-pt2": "Por favor, mova algumas tarefas para fora desta lista, ou defina um limite WIP mais elevado.",
- "admin-panel": "Painel Administrativo",
- "settings": "Configurações",
- "people": "Pessoas",
- "registration": "Registo",
- "disable-self-registration": "Desabilitar Auto-Registo",
- "invite": "Convidar",
- "invite-people": "Convidar Pessoas",
- "to-boards": "Para o(s) quadro(s)",
- "email-addresses": "Endereços de E-mail",
- "smtp-host-description": "O endereço do servidor SMTP que envia os seus e-mails.",
- "smtp-port-description": "A porta que o servidor SMTP usa para enviar os e-mails.",
- "smtp-tls-description": "Habilitar suporte TLS para o servidor SMTP",
- "smtp-host": "Servidor SMTP",
- "smtp-port": "Porta SMTP",
- "smtp-username": "Nome de utilizador",
- "smtp-password": "Senha",
- "smtp-tls": "Suporte TLS",
- "send-from": "De",
- "send-smtp-test": "Enviar um e-mail de teste para si mesmo",
- "invitation-code": "Código do Convite",
- "email-invite-register-subject": "__inviter__ enviou-lhe um convite",
- "email-invite-register-text": "Caro __user__,\n\n__inviter__ convida-o para o quadro Kanban para colaborações.\n\nPor favor, siga a ligação abaixo:\n__url__ \n\nE seu código de convite é: __icode__\n\nObrigado.",
- "email-smtp-test-subject": "E-mail de Teste de SMTP",
- "email-smtp-test-text": "Enviou um e-mail com sucesso",
- "error-invitation-code-not-exist": "O código do convite não existe",
- "error-notAuthorized": "Não tem autorização para ver esta página.",
- "outgoing-webhooks": "Webhooks de saída",
- "outgoingWebhooksPopup-title": "Webhooks de saída",
- "boardCardTitlePopup-title": "Filtro do Título do Cartão",
- "new-outgoing-webhook": "Novo Webhook de saída",
- "no-name": "(Desconhecido)",
- "Node_version": "Versão do Node",
- "OS_Arch": "Arquitectura do SO",
- "OS_Cpus": "Quantidade de CPUs do SO",
- "OS_Freemem": "Memória Disponível do SO",
- "OS_Loadavg": "Carga Média do SO",
- "OS_Platform": "Plataforma do SO",
- "OS_Release": "Versão do SO",
- "OS_Totalmem": "Memória Total do SO",
- "OS_Type": "Tipo do SO",
- "OS_Uptime": "Disponibilidade do SO",
- "days": "dias",
- "hours": "horas",
- "minutes": "minutos",
- "seconds": "segundos",
- "show-field-on-card": "Mostrar este campo no cartão",
- "automatically-field-on-card": "Criar campo automaticamente para todos os cartões",
- "showLabel-field-on-card": "Mostrar etiqueta do campo no mini-cartão",
- "yes": "Sim",
- "no": "Não",
- "accounts": "Contas",
- "accounts-allowEmailChange": "Permitir Alteração do E-mail",
- "accounts-allowUserNameChange": "Permitir Alteração de Nome de Utilizador",
- "createdAt": "Criado em",
- "verified": "Verificado",
- "active": "Activo",
- "card-received": "Recebido",
- "card-received-on": "Recebido em",
- "card-end": "Fim",
- "card-end-on": "Termina em",
- "editCardReceivedDatePopup-title": "Alterar data de recebimento",
- "editCardEndDatePopup-title": "Alterar data de fim",
- "setCardColorPopup-title": "Definir cor",
- "setCardActionsColorPopup-title": "Escolha uma cor",
- "setSwimlaneColorPopup-title": "Escolha uma cor",
- "setListColorPopup-title": "Escolha uma cor",
- "assigned-by": "Atribuído Por",
- "requested-by": "Solicitado Por",
- "board-delete-notice": "Apagar é permanente. Irá perder todas as listas, cartões e acções associadas a este quadro.",
- "delete-board-confirm-popup": "Todas as listas, cartões, etiquetas e actividades serão apagadas e não poderá recuperar o conteúdo do quadro. Não há como desfazer.",
- "boardDeletePopup-title": "Apagar Quadro?",
- "delete-board": "Apagar Quadro",
- "default-subtasks-board": "Sub-tarefas para o quadro __board__",
- "default": "Omissão",
- "queue": "Fila",
- "subtask-settings": "Configurações de Sub-tarefas",
- "boardSubtaskSettingsPopup-title": "Configurações das Sub-tarefas do Quadro",
- "show-subtasks-field": "Cartões podem ter sub-tarefas",
- "deposit-subtasks-board": "Depositar sub-tarefas neste quadro:",
- "deposit-subtasks-list": "Lista de destino para sub-tarefas depositadas aqui:",
- "show-parent-in-minicard": "Mostrar pai no mini-cartão:",
- "prefix-with-full-path": "Prefixar com o caminho completo",
- "prefix-with-parent": "Prefixar com o pai",
- "subtext-with-full-path": "Sub-texto com o caminho completo",
- "subtext-with-parent": "Sub-texto com o pai",
- "change-card-parent": "Alterar o pai do cartão",
- "parent-card": "Pai do cartão",
- "source-board": "Quadro fonte",
- "no-parent": "Não mostrar o pai",
- "activity-added-label": "adicionou a etiqueta '%s' a %s",
- "activity-removed-label": "removeu a etiqueta '%s' de %s",
- "activity-delete-attach": "apagou um anexo de %s",
- "activity-added-label-card": "adicionou a etiqueta '%s'",
- "activity-removed-label-card": "removeu a etiqueta '%s'",
- "activity-delete-attach-card": "apagou um anexo",
- "activity-set-customfield": "definiu o campo personalizado '%s' para '%s' em %s",
- "activity-unset-customfield": "removeu o campo personalizado '%s' de %s",
- "r-rule": "Regra",
- "r-add-trigger": "Adicionar gatilho",
- "r-add-action": "Adicionar acção",
- "r-board-rules": "Regras do quadro",
- "r-add-rule": "Adicionar regra",
- "r-view-rule": "Ver regra",
- "r-delete-rule": "Apagar regra",
- "r-new-rule-name": "Título da nova regra",
- "r-no-rules": "Sem regras",
- "r-when-a-card": "Quando um cartão",
- "r-is": "é",
- "r-is-moved": "é movido",
- "r-added-to": "adicionado a",
- "r-removed-from": "Removido de",
- "r-the-board": "o quadro",
- "r-list": "lista",
- "set-filter": "Definir Filtro",
- "r-moved-to": "Movido para",
- "r-moved-from": "Movido de",
- "r-archived": "Movido para o Arquivo",
- "r-unarchived": "Restaurado do Arquivo",
- "r-a-card": "um cartão",
- "r-when-a-label-is": "Quando uma etiqueta é",
- "r-when-the-label": "Quando a etiqueta é",
- "r-list-name": "listar o nome",
- "r-when-a-member": "Quando um membro é",
- "r-when-the-member": "Quando o membro",
- "r-name": "nome",
- "r-when-a-attach": "Quando um anexo",
- "r-when-a-checklist": "Quando a lista de verificação é",
- "r-when-the-checklist": "Quando a lista de verificação",
- "r-completed": "Completada",
- "r-made-incomplete": "Tornado incompleta",
- "r-when-a-item": "Quando um item de uma lista de verificação é",
- "r-when-the-item": "Quando o item da lista de verificação",
- "r-checked": "Marcado",
- "r-unchecked": "Desmarcado",
- "r-move-card-to": "Mover cartão para",
- "r-top-of": "Topo de",
- "r-bottom-of": "Fundo de",
- "r-its-list": "a sua lista",
- "r-archive": "Mover para o Arquivo",
- "r-unarchive": "Restaurar do Arquivo",
- "r-card": "cartão",
- "r-add": "Novo",
- "r-remove": "Remover",
- "r-label": "etiqueta",
- "r-member": "membro",
- "r-remove-all": "Remover todos os membros do cartão",
- "r-set-color": "Definir a cor para",
- "r-checklist": "lista de verificação",
- "r-check-all": "Marcar todos",
- "r-uncheck-all": "Desmarcar todos",
- "r-items-check": "itens da lista de verificação",
- "r-check": "Marcar",
- "r-uncheck": "Desmarcar",
- "r-item": "item",
- "r-of-checklist": "da lista de verificação",
- "r-send-email": "Enviar um e-mail",
- "r-to": "para",
- "r-subject": "assunto",
- "r-rule-details": "Detalhes da regra",
- "r-d-move-to-top-gen": "Mover cartão para o topo da sua lista",
- "r-d-move-to-top-spec": "Mover cartão para o topo da lista",
- "r-d-move-to-bottom-gen": "Mover cartão para o fundo da sua lista",
- "r-d-move-to-bottom-spec": "Mover cartão para fundo da lista",
- "r-d-send-email": "Enviar e-mail",
- "r-d-send-email-to": "para",
- "r-d-send-email-subject": "assunto",
- "r-d-send-email-message": "mensagem",
- "r-d-archive": "Mover cartão para o Arquivo",
- "r-d-unarchive": "Restaurar cartão do Arquivo",
- "r-d-add-label": "Adicionar etiqueta",
- "r-d-remove-label": "Remover etiqueta",
- "r-create-card": "Criar novo cartão",
- "r-in-list": "na lista",
- "r-in-swimlane": "na pista",
- "r-d-add-member": "Adicionar membro",
- "r-d-remove-member": "Remover membro",
- "r-d-remove-all-member": "Remover todos os membros",
- "r-d-check-all": "Marcar todos os itens de uma lista",
- "r-d-uncheck-all": "Desmarcar todos os itens de uma lista",
- "r-d-check-one": "Marcar item",
- "r-d-uncheck-one": "Desmarcar item",
- "r-d-check-of-list": "da lista de verificação",
- "r-d-add-checklist": "Adicionar lista de verificação",
- "r-d-remove-checklist": "Remover lista de verificação",
- "r-by": "por",
- "r-add-checklist": "Adicionar lista de verificação",
- "r-with-items": "com os itens",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Adicionar pista",
- "r-swimlane-name": "nome da pista",
- "r-board-note": "Nota: deixe o campo vazio para corresponder a todos os valores possíveis.",
- "r-checklist-note": "Nota: itens de listas de verificação devem ser escritos separados por vírgulas.",
- "r-when-a-card-is-moved": "Quando um cartão é movido de outra lista",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Método de autenticação",
- "authentication-type": "Tipo de autenticação",
- "custom-product-name": "Nome Personalizado do Produto",
- "layout": "Layout",
- "hide-logo": "Esconder Logo",
- "add-custom-html-after-body-start": "Adicionar HTML Personalizado depois do início do <body>",
- "add-custom-html-before-body-end": "Adicionar HTML Personalizado antes do fim do </body>",
- "error-undefined": "Ocorreu um erro",
- "error-ldap-login": "Ocorreu um erro ocorreu enquanto tentava entrar",
- "display-authentication-method": "Mostrar Método de Autenticação",
- "default-authentication-method": "Método de Autenticação por Omissão",
- "duplicate-board": "Duplicar Quadro",
- "people-number": "O número de pessoas é:",
- "swimlaneDeletePopup-title": "Apagar Pista ?",
- "swimlane-delete-pop": "Todas as acções serão removidas do feed de actividade e não será possível recuperar a pista. Não há como desfazer.",
- "restore-all": "Restaurar todos",
- "delete-all": "Apagar todos",
- "loading": "A carregar, por favor aguarde.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Aceitar",
+ "act-activity-notify": "Notificação de Actividade",
+ "act-addAttachment": "adicionou o anexo __attachment__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-deleteAttachment": "apagou o anexo __attachment__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addSubtask": "adicionou a sub-tarefa __subtask__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addLabel": "Adicionou a etiqueta __label__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addedLabel": "Adicionou a etiqueta __label__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-removeLabel": "Removeu a etiqueta __label__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-removedLabel": "Removeu a etiqueta __label__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addChecklist": "adicionoua lista de verificação __checklist__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addChecklistItem": "adicionou o item __checklistItem__ à lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-removeChecklist": "removeu a lista de verificação __checklist__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-removeChecklistItem": "removeu o item __checklistItem__ da lista de verificação __checkList__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-checkedItem": "marcou __checklistItem__ na lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-uncheckedItem": "desmarcou __checklistItem__ na lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-completeChecklist": "completou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-uncompleteChecklist": "descompletou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-addComment": "comentou no cartão __card__: __comment__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "criou o quadro __board__",
+ "act-createSwimlane": "criou a pista __swimlane__ no quadro __board__",
+ "act-createCard": "criou o cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "adicionou a lista __list__ ao quadro __board__",
+ "act-addBoardMember": "adicionou o membro __member__ ao quadro __board__",
+ "act-archivedBoard": "O quadro __board__ foi movido para o Arquivo",
+ "act-archivedCard": "O cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__ foi movido para o Arquivo",
+ "act-archivedList": "A lista __list__ na pista __swimlane__ no quadro __board__ foi movida para o Arquivo",
+ "act-archivedSwimlane": "A pista __swimlane__ no quadro __board__ foi movida para o Arquivo",
+ "act-importBoard": "importou o quadro __board__",
+ "act-importCard": "importou o cartão __card__ para a lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-importList": "importou a lista __list__ para pista __swimlane__ no quadro __board__",
+ "act-joinMember": "adicionou o membro __member__ ao cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-moveCard": "moveu o cartão __card__ do quadro __board__ da pista __oldSwimlane__ da lista __oldList__ para a pista __swimlane__ na lista __list__",
+ "act-moveCardToOtherBoard": "moveuo cartão __card__ da lista __oldList__ na pista __oldSwimlane__ no quadro __oldBoard__ para a lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-removeBoardMember": "removeuo membro __member__ do quadro __board__",
+ "act-restoredCard": "restaurou o cartão __card__ para a lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-unjoinMember": "removeu o membro __member__ do cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Acções",
+ "activities": "Actividades",
+ "activity": "Actividade",
+ "activity-added": "adicionou %s a %s",
+ "activity-archived": "%s foi movido para o Arquivo",
+ "activity-attached": "anexou %s a %s",
+ "activity-created": "criou %s",
+ "activity-customfield-created": "criado o campo personalizado %s",
+ "activity-excluded": "excluiu %s de %s",
+ "activity-imported": "importou %s para %s de %s",
+ "activity-imported-board": "importou %s de %s",
+ "activity-joined": "juntou-se a %s",
+ "activity-moved": "moveu %s de %s para %s",
+ "activity-on": "em %s",
+ "activity-removed": "removeu %s de %s",
+ "activity-sent": "enviou %s para %s",
+ "activity-unjoined": "saiu de %s",
+ "activity-subtask-added": "adicionou a sub-tarefa a",
+ "activity-checked-item": "marcou %s na lista de verificação %s de %s",
+ "activity-unchecked-item": "desmarcou %s na lista de verificação %s de %s",
+ "activity-checklist-added": "adicionou a lista de verificação a %s",
+ "activity-checklist-removed": "removeu a lista de verificação de %s",
+ "activity-checklist-completed": "completou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "activity-checklist-uncompleted": "descompletou a lista de verificação %s de %s",
+ "activity-checklist-item-added": "adicionou o item a '%s' em %s",
+ "activity-checklist-item-removed": "removeu o item de '%s' na %s",
+ "add": "Adicionar",
+ "activity-checked-item-card": "marcou %s na lista de verificação %s",
+ "activity-unchecked-item-card": "desmarcou %s na lista de verificação %s",
+ "activity-checklist-completed-card": "completou a lista de verificação __checklist__ no cartão __card__ na lista __list__ na pista __swimlane__ no quadro __board__",
+ "activity-checklist-uncompleted-card": "descompletou a lista de verificação %s",
+ "add-attachment": "Adicionar Anexo",
+ "add-board": "Adicionar Quadro",
+ "add-card": "Adicionar Cartão",
+ "add-swimlane": "Adicionar Pista",
+ "add-subtask": "Adicionar Sub-tarefa",
+ "add-checklist": "Adicionar Lista de Verificação",
+ "add-checklist-item": "Adicionar um item à lista de verificação",
+ "add-cover": "Adicionar Capa",
+ "add-label": "Adicionar Etiqueta",
+ "add-list": "Adicionar Lista",
+ "add-members": "Adicionar Membros",
+ "added": "Adicionado",
+ "addMemberPopup-title": "Membros",
+ "admin": "Administrador",
+ "admin-desc": "Pode ver e editar cartões, remover membros e alterar configurações do quadro.",
+ "admin-announcement": "Anúncio",
+ "admin-announcement-active": "Anúncio Activo em Todo o Sistema",
+ "admin-announcement-title": "Anúncio do Administrador",
+ "all-boards": "Todos os quadros",
+ "and-n-other-card": "E __count__ outro cartão",
+ "and-n-other-card_plural": "E __count__ outros cartões",
+ "apply": "Aplicar",
+ "app-is-offline": "A carregar, por favor aguarde. Actualizar a página causará perda de dados. Se o carregamento não funcionar, por favor verifique se o servidor não parou.",
+ "archive": "Mover para o Arquivo",
+ "archive-all": "Mover Tudo para o Arquivo",
+ "archive-board": "Mover o Quadro para o Arquivo",
+ "archive-card": "Mover o Cartão para o Arquivo",
+ "archive-list": "Mover a Lista para o Arquivo",
+ "archive-swimlane": "Mover a Pista para o Arquivo",
+ "archive-selection": "Mover a selecção para o Arquivo",
+ "archiveBoardPopup-title": "Mover o Quadro para o Arquivo?",
+ "archived-items": "Arquivo",
+ "archived-boards": "Quadros no Arquivo",
+ "restore-board": "Restaurar Quadro",
+ "no-archived-boards": "Sem Quadros no Arquivo.",
+ "archives": "Arquivo",
+ "template": "Modelo",
+ "templates": "Modelos",
+ "assign-member": "Atribuir Membro",
+ "attached": "anexado",
+ "attachment": "Anexo",
+ "attachment-delete-pop": "Apagar um anexo é permanente. Não será possível recuperá-lo.",
+ "attachmentDeletePopup-title": "Apagar Anexo?",
+ "attachments": "Anexos",
+ "auto-watch": "Observar automaticamente os quadros quando são criados",
+ "avatar-too-big": "O avatar é muito grande (70KB máx)",
+ "back": "Voltar",
+ "board-change-color": "Alterar cor",
+ "board-nb-stars": "%s estrelas",
+ "board-not-found": "Quadro não encontrado",
+ "board-private-info": "Este quadro será <strong>privado</strong>.",
+ "board-public-info": "Este quadro será <strong>público</strong>.",
+ "boardChangeColorPopup-title": "Alterar Imagem de Fundo do Quadro",
+ "boardChangeTitlePopup-title": "Renomear Quadro",
+ "boardChangeVisibilityPopup-title": "Alterar Visibilidade",
+ "boardChangeWatchPopup-title": "Alterar Observação",
+ "boardMenuPopup-title": "Configurações do Quadro",
+ "boards": "Quadros",
+ "board-view": "Visão do Quadro",
+ "board-view-cal": "Calendário",
+ "board-view-swimlanes": "Pistas",
+ "board-view-lists": "Listas",
+ "bucket-example": "\"Lista de Desejos\", por exemplo",
+ "cancel": "Cancelar",
+ "card-archived": "Este cartão no Arquivo.",
+ "board-archived": "Este quadro está no Arquivo.",
+ "card-comments-title": "Este cartão possui %s comentário.",
+ "card-delete-notice": "A remoção será permanente. Perderá todas as acções associadas a este cartão.",
+ "card-delete-pop": "Todas as acções serão removidas do feed de Actividade e não poderá reabrir o cartão. Não há como desfazer.",
+ "card-delete-suggest-archive": "Pode mover um cartão para o Arquivo para removê-lo do quadro e preservar a atividade.",
+ "card-due": "Data limite",
+ "card-due-on": "Data limite em",
+ "card-spent": "Tempo Gasto",
+ "card-edit-attachments": "Editar anexos",
+ "card-edit-custom-fields": "Editar campos personalizados",
+ "card-edit-labels": "Editar etiquetas",
+ "card-edit-members": "Editar membros",
+ "card-labels-title": "Alterar as etiquetas do cartão.",
+ "card-members-title": "Acrescentar ou remover membros do quadro deste cartão.",
+ "card-start": "Data de início",
+ "card-start-on": "Inicia em",
+ "cardAttachmentsPopup-title": "Anexar a partir de",
+ "cardCustomField-datePopup-title": "Alterar a data",
+ "cardCustomFieldsPopup-title": "Editar campos personalizados",
+ "cardDeletePopup-title": "Apagar Cartão?",
+ "cardDetailsActionsPopup-title": "Acções do Cartão",
+ "cardLabelsPopup-title": "Etiquetas",
+ "cardMembersPopup-title": "Membros",
+ "cardMorePopup-title": "Mais",
+ "cardTemplatePopup-title": "Criar Modelo",
+ "cards": "Cartões",
+ "cards-count": "Cartões",
+ "casSignIn": "Entrar com CAS",
+ "cardType-card": "Cartão",
+ "cardType-linkedCard": "Cartão Ligado",
+ "cardType-linkedBoard": "Quadro Ligado",
+ "change": "Alterar",
+ "change-avatar": "Alterar o Avatar",
+ "change-password": "Alterar a Senha",
+ "change-permissions": "Alterar as permissões",
+ "change-settings": "Alterar as Configurações",
+ "changeAvatarPopup-title": "Alterar o Avatar",
+ "changeLanguagePopup-title": "Alterar o Idioma",
+ "changePasswordPopup-title": "Alterar a Senha",
+ "changePermissionsPopup-title": "Alterar as Permissões",
+ "changeSettingsPopup-title": "Alterar as Configurações",
+ "subtasks": "Sub-tarefas",
+ "checklists": "Listas de verificação",
+ "click-to-star": "Clique para marcar este quadro como favorito.",
+ "click-to-unstar": "Clique para remover este quadro dos favoritos.",
+ "clipboard": "Área de Transferência ou arraste e solte",
+ "close": "Fechar",
+ "close-board": "Fechar o Quadro",
+ "close-board-pop": "Poderá restaurar o quadro clicando no botão “Arquivo” a partir do cabeçalho do Início.",
+ "color-black": "preto",
+ "color-blue": "azul",
+ "color-crimson": "carmesim",
+ "color-darkgreen": "verde escuro",
+ "color-gold": "dourado",
+ "color-gray": "cinza",
+ "color-green": "verde",
+ "color-indigo": "azul",
+ "color-lime": "verde limão",
+ "color-magenta": "magenta",
+ "color-mistyrose": "rosa claro",
+ "color-navy": "azul marinho",
+ "color-orange": "laranja",
+ "color-paleturquoise": "azul ciano",
+ "color-peachpuff": "pêssego",
+ "color-pink": "cor-de-rosa",
+ "color-plum": "ameixa",
+ "color-purple": "roxo",
+ "color-red": "vermelho",
+ "color-saddlebrown": "marrom",
+ "color-silver": "prateado",
+ "color-sky": "azul-celeste",
+ "color-slateblue": "azul ardósia",
+ "color-white": "branco",
+ "color-yellow": "amarelo",
+ "unset-color": "Remover",
+ "comment": "Comentar",
+ "comment-placeholder": "Escrever o Comentário",
+ "comment-only": "Apenas comentários",
+ "comment-only-desc": "Pode comentar apenas em cartões.",
+ "no-comments": "Sem comentários",
+ "no-comments-desc": "Não pode ver comentários nem actividades.",
+ "computer": "Computador",
+ "confirm-subtask-delete-dialog": "Tem certeza que deseja apagar a sub-tarefa?",
+ "confirm-checklist-delete-dialog": "Tem certeza que quer apagar a lista de verificação?",
+ "copy-card-link-to-clipboard": "Copiar a ligação do cartão para a área de transferência",
+ "linkCardPopup-title": "Ligar Cartão",
+ "searchElementPopup-title": "Procurar",
+ "copyCardPopup-title": "Copiar o cartão",
+ "copyChecklistToManyCardsPopup-title": "Copiar o Modelo de Lista de Verificação para Vários Cartões",
+ "copyChecklistToManyCardsPopup-instructions": "Títulos e Descrições de Cartões de Destino neste formato JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Título do primeiro cartão\", \"description\":\"Descrição do primeiro cartão\"}, {\"title\":\"Título do segundo cartão\",\"description\":\"Descrição do segundo cartão\"},{\"title\":\"Título do último cartão\",\"description\":\"Descrição do último cartão\"} ]",
+ "create": "Criar",
+ "createBoardPopup-title": "Criar Quadro",
+ "chooseBoardSourcePopup-title": "Importar quadro",
+ "createLabelPopup-title": "Criar Etiqueta",
+ "createCustomField": "Criar Campo",
+ "createCustomFieldPopup-title": "Criar Campo",
+ "current": "actual",
+ "custom-field-delete-pop": "Não existe desfazer. Isto irá remover este campo personalizado de todos os cartões e destruir o seu histórico",
+ "custom-field-checkbox": "Caixa de selecção",
+ "custom-field-date": "Data",
+ "custom-field-dropdown": "Lista Suspensa",
+ "custom-field-dropdown-none": "(nada)",
+ "custom-field-dropdown-options": "Opções da Lista",
+ "custom-field-dropdown-options-placeholder": "Pressione enter para adicionar mais opções",
+ "custom-field-dropdown-unknown": "(desconhecido)",
+ "custom-field-number": "Número",
+ "custom-field-text": "Texto",
+ "custom-fields": "Campos Personalizados",
+ "date": "Data",
+ "decline": "Rejeitar",
+ "default-avatar": "Avatar por omissão",
+ "delete": "Apagar",
+ "deleteCustomFieldPopup-title": "Apagar o Campo Personalizado?",
+ "deleteLabelPopup-title": "Apagar a Etiqueta?",
+ "description": "Descrição",
+ "disambiguateMultiLabelPopup-title": "Desambiguar Acção da Etiqueta",
+ "disambiguateMultiMemberPopup-title": "Desambiguar Acção do Membro",
+ "discard": "Descartar",
+ "done": "Feito",
+ "download": "Descarregar",
+ "edit": "Editar",
+ "edit-avatar": "Alterar o Avatar",
+ "edit-profile": "Editar o Perfil",
+ "edit-wip-limit": "Editar o Limite WIP",
+ "soft-wip-limit": "Limite Suave de WIP",
+ "editCardStartDatePopup-title": "Alterar a data de início",
+ "editCardDueDatePopup-title": "Alterar a data limite",
+ "editCustomFieldPopup-title": "Editar Campo",
+ "editCardSpentTimePopup-title": "Alterar o tempo gasto",
+ "editLabelPopup-title": "Alterar a Etiqueta",
+ "editNotificationPopup-title": "Editar a Notificação",
+ "editProfilePopup-title": "Editar o Perfil",
+ "email": "E-mail",
+ "email-enrollAccount-subject": "Uma conta foi criada para si em __siteName__",
+ "email-enrollAccount-text": "Olá __user__\nPara começar a utilizar o serviço, basta clicar na ligação abaixo.\n__url__\nObrigado.",
+ "email-fail": "Falhou a enviar o e-mail",
+ "email-fail-text": "Erro a tentar enviar o e-mail",
+ "email-invalid": "E-mail inválido",
+ "email-invite": "Convidar via E-mail",
+ "email-invite-subject": "__inviter__ enviou-lhe um convite",
+ "email-invite-text": "Caro __user__\n__inviter__ convidou-o para se juntar ao quadro \"__board__\" para colaborar.\nPor favor prossiga através da ligação abaixo:\n__url__\nObrigado.",
+ "email-resetPassword-subject": "Redefina sua senha em __siteName__",
+ "email-resetPassword-text": "Olá __user__\nPara redefinir a sua senha, por favor clique na ligação abaixo.\n__url__\nObrigado.",
+ "email-sent": "E-mail enviado",
+ "email-verifyEmail-subject": "Verifique o seu endereço de e-mail em __siteName__",
+ "email-verifyEmail-text": "Olá __user__\nPara verificar a sua conta de e-mail, clique na ligação abaixo.\n__url__\nObrigado.",
+ "enable-wip-limit": "Ativar Limite WIP",
+ "error-board-doesNotExist": "Este quadro não existe",
+ "error-board-notAdmin": "Precisa de ser administrador deste quadro para fazer isso",
+ "error-board-notAMember": "Precisa de ser um membro deste quadro para fazer isso",
+ "error-json-malformed": "O seu texto não é um JSON válido",
+ "error-json-schema": "O seu JSON não inclui as informações apropriadas no formato correto",
+ "error-list-doesNotExist": "Esta lista não existe",
+ "error-user-doesNotExist": "Este utilizador não existe",
+ "error-user-notAllowSelf": "Não se pode convidar a si mesmo",
+ "error-user-notCreated": "Este utilizador não foi criado",
+ "error-username-taken": "Esse nome de utilizador já existe",
+ "error-email-taken": "Endereço de e-mail já está em uso",
+ "export-board": "Exportar quadro",
+ "filter": "Filtrar",
+ "filter-cards": "Filtrar Cartões",
+ "filter-clear": "Limpar filtro",
+ "filter-no-label": "Sem etiquetas",
+ "filter-no-member": "Sem membros",
+ "filter-no-custom-fields": "Sem Campos Personalizados",
+ "filter-on": "Filtro está activo",
+ "filter-on-desc": "Está a filtrar cartões neste quadro. Clique aqui para editar o filtro.",
+ "filter-to-selection": "Filtrar esta selecção",
+ "advanced-filter-label": "Filtro Avançado",
+ "advanced-filter-description": "Filtro Avançado permite escrever uma \"string\" contendo os seguintes operadores: == != <= >= && || ( ). Um espaço é usado como separador entre Operadores. Pode filtrar em todos os Campos Personalizados escreventos os seus nomes e valores. Por Exemplo: Campo1 == Valor1. Nota: Se os campos ou valores contiverem espaços, tem de os encapsular em apóstrofes. Por Exemplo: 'Campo 1' == 'Valor 1'. Para que caracteres de controlo únicos (' \\/) sejam ignorados, pode usar \\. Por exemplo: Campo1 == I\\'m. Pode também combinar múltiplas condições. Por Exemplo: F1 == V1 || F1 == V2. Normalmente todos os operadores são interpretados da esquerda para a direita. Pode alterar a ordem inserindo parênteses. Por Exemplo: F1 == V1 && ( F2 == V2 || F2 == V3 ). Pode também procurar em campos de texto utilizando uma expressão regular: F1 == /Tes.*/i",
+ "fullname": "Nome Completo",
+ "header-logo-title": "Voltar para a sua lista de quadros.",
+ "hide-system-messages": "Esconder mensagens de sistema",
+ "headerBarCreateBoardPopup-title": "Criar Quadro",
+ "home": "Início",
+ "import": "Importar",
+ "link": "Ligação",
+ "import-board": "importar quadro",
+ "import-board-c": "Importar quadro",
+ "import-board-title-trello": "Importar quadro do Trello",
+ "import-board-title-wekan": "Importar quadro a partir de exportação prévia",
+ "import-sandstorm-backup-warning": "Não apague os dados importados do quadro original exportado ou do Trello antes de verificar se esse item fecha e abre novamente, ou se receber o erro Quadro não encontrado, que significa perda de dados.",
+ "import-sandstorm-warning": "O quadro importado irá apagar todos os dados existentes no quadro e irá sobrescrever com o quadro importado.",
+ "from-trello": "Do Trello",
+ "from-wekan": "A partir de exportação prévia",
+ "import-board-instruction-trello": "No seu quadro do Trello, vá em 'Menu', depois em 'Mais', 'Imprimir e Exportar', 'Exportar JSON', e copie o texto resultante.",
+ "import-board-instruction-wekan": "No seu quadro vá para 'Menu', depois 'Exportar quadro' e copie o texto no ficheiro descarregado.",
+ "import-board-instruction-about-errors": "Se receber erros ao importar o quadro, às vezes a importação ainda funciona e o quadro está na página Todos os Quadros.",
+ "import-json-placeholder": "Cole seus dados JSON válidos aqui",
+ "import-map-members": "Mapear membros",
+ "import-members-map": "O seu quadro importado possui alguns membros. Por favor, mapeie os membros que deseja importar para seus utilizadores",
+ "import-show-user-mapping": "Rever mapeamento dos membros",
+ "import-user-select": "Escolha um utilizador existente que deseja usar como esse membro",
+ "importMapMembersAddPopup-title": "Seleccione membro",
+ "info": "Versão",
+ "initials": "Iniciais",
+ "invalid-date": "Data inválida",
+ "invalid-time": "Hora inválida",
+ "invalid-user": "Utilizador inválido",
+ "joined": "juntou-se",
+ "just-invited": "Acabou de ser convidado para este quadro",
+ "keyboard-shortcuts": "Atalhos do teclado",
+ "label-create": "Criar Etiqueta",
+ "label-default": "%s etiqueta (omissão)",
+ "label-delete-pop": "Não há como desfazer. A etiqueta será apagada de todos os cartões e o seu histórico será destruído.",
+ "labels": "Etiquetas",
+ "language": "Idioma",
+ "last-admin-desc": "Não pode alterar funções porque deve existir pelo menos um administrador.",
+ "leave-board": "Sair do Quadro",
+ "leave-board-pop": "Tem a certeza de que pretende sair de __boardTitle__? Será removido de todos os cartões neste quadro.",
+ "leaveBoardPopup-title": "Sair do Quadro ?",
+ "link-card": "Ligar a este cartão",
+ "list-archive-cards": "Move todos os cartões nesta lista para o Arquivo",
+ "list-archive-cards-pop": "Isto irá remover todos os cartões nesta lista do quadro. Para ver os cartões no Arquivo e trazê-los de volta para o quadro, clique em “Menu” > “Arquivo”.",
+ "list-move-cards": "Mover todos os cartões nesta lista",
+ "list-select-cards": "Seleccionar todos os cartões nesta lista",
+ "set-color-list": "Definir Cor",
+ "listActionPopup-title": "Listar Ações",
+ "swimlaneActionPopup-title": "Acções de Pista",
+ "swimlaneAddPopup-title": "Adicionar uma Pista abaixo",
+ "listImportCardPopup-title": "Importe um cartão do Trello",
+ "listMorePopup-title": "Mais",
+ "link-list": "Ligar a esta lista",
+ "list-delete-pop": "Todas as acções serão removidas do feed de actividade e não poderá recuperar a lista. Não há como desfazer.",
+ "list-delete-suggest-archive": "Pode mover uma lista para o Arquivo para a remover do quadro e preservar a actividade.",
+ "lists": "Listas",
+ "swimlanes": "Pistas",
+ "log-out": "Terminar a Sessão",
+ "log-in": "Entrar",
+ "loginPopup-title": "Entrar",
+ "memberMenuPopup-title": "Configuração dos Membros",
+ "members": "Membros",
+ "menu": "Menu",
+ "move-selection": "Mover a selecção",
+ "moveCardPopup-title": "Mover o Cartão",
+ "moveCardToBottom-title": "Mover para o Fundo",
+ "moveCardToTop-title": "Mover para o Topo",
+ "moveSelectionPopup-title": "Mover a selecção",
+ "multi-selection": "Selecção Múltipla",
+ "multi-selection-on": "Selecção Múltipla está activa",
+ "muted": "Silenciado",
+ "muted-info": "Nunca será notificado de quaisquer alterações neste quadro",
+ "my-boards": "Meus Quadros",
+ "name": "Nome",
+ "no-archived-cards": "Sem cartões no Arquivo.",
+ "no-archived-lists": "Sem listas no Arquivo.",
+ "no-archived-swimlanes": "Sem pistas no Arquivo.",
+ "no-results": "Nenhum resultado.",
+ "normal": "Normal",
+ "normal-desc": "Pode ver e editar cartões. Não pode alterar configurações.",
+ "not-accepted-yet": "Convite ainda não aceite",
+ "notify-participate": "Receber actualizações de qualquer cartão que criar ou participar como membro",
+ "notify-watch": "Receber actualizações de qualquer quadro, lista ou cartões que estiver a observar",
+ "optional": "opcional",
+ "or": "ou",
+ "page-maybe-private": "Esta página pode ser privada. Poderá vê-la se <a href='%s'>iniciar a sessão</a>.",
+ "page-not-found": "Página não encontrada.",
+ "password": "Senha",
+ "paste-or-dragdrop": "para colar, ou arrastar e soltar o ficheiro da imagem para lá (somente imagens)",
+ "participating": "Participando",
+ "preview": "Pré-visualizar",
+ "previewAttachedImagePopup-title": "Pré-visualizar",
+ "previewClipboardImagePopup-title": "Pré-visualizar",
+ "private": "Privado",
+ "private-desc": "Este quadro é privado. Apenas o membros do quadro o podem visualizar e editar.",
+ "profile": "Perfil",
+ "public": "Público",
+ "public-desc": "Este quadro é público. Está visível para qualquer pessoa com a ligação e será exibido em motores de busca como o Google. Apenas os membros do quadro o podem editar.",
+ "quick-access-description": "Clique na estrela de um quadro para adicionar um atalho nesta barra.",
+ "remove-cover": "Remover Capa",
+ "remove-from-board": "Remover do Quadro",
+ "remove-label": "Remover Etiqueta",
+ "listDeletePopup-title": "Apagar Lista ?",
+ "remove-member": "Remover Membro",
+ "remove-member-from-card": "Remover do Cartão",
+ "remove-member-pop": "Remover __name__ (__username__) de __boardTitle__? O membro será removido de todos os cartões neste quadro e será notificado.",
+ "removeMemberPopup-title": "Remover Membro?",
+ "rename": "Renomear",
+ "rename-board": "Renomear Quadro",
+ "restore": "Restaurar",
+ "save": "Guardar",
+ "search": "Procurar",
+ "rules": "Regras",
+ "search-cards": "Pesquisar nos títulos e descrições dos cartões deste quadro",
+ "search-example": "Texto a procurar?",
+ "select-color": "Seleccionar Cor",
+ "set-wip-limit-value": "Defina um limite máximo para o número de tarefas nesta lista",
+ "setWipLimitPopup-title": "Definir Limite WIP",
+ "shortcut-assign-self": "Atribuir a si o cartão actual",
+ "shortcut-autocomplete-emoji": "Autocompletar emoji",
+ "shortcut-autocomplete-members": "Autocompletar membros",
+ "shortcut-clear-filters": "Limpar todos os filtros",
+ "shortcut-close-dialog": "Fechar Caixa de Dialogo",
+ "shortcut-filter-my-cards": "Filtrar os meus cartões",
+ "shortcut-show-shortcuts": "Mostrar esta lista de atalhos",
+ "shortcut-toggle-filterbar": "Alternar a Barra Lateral de Filtros",
+ "shortcut-toggle-sidebar": "Alternar a Barra Lateral do Quadro",
+ "show-cards-minimum-count": "Mostrar contagem de cartões se a lista tiver mais de",
+ "sidebar-open": "Abrir a Barra Lateral",
+ "sidebar-close": "Fechar a Barra Lateral",
+ "signupPopup-title": "Criar uma Conta",
+ "star-board-title": "Clique para marcar este quadro como favorito. O quadro irá aparecer no topo da sua lista de quadros.",
+ "starred-boards": "Quadros Favoritos",
+ "starred-boards-description": "Os quadros favoritos aparecem no topo da sua lista de quadros.",
+ "subscribe": "Subscrever",
+ "team": "Equipa",
+ "this-board": "este quadro",
+ "this-card": "este cartão",
+ "spent-time-hours": "Tempo gasto (horas)",
+ "overtime-hours": "Horas extra (horas)",
+ "overtime": "Horas extra",
+ "has-overtime-cards": "Tem cartões com horas extra",
+ "has-spenttime-cards": "Tem cartões com tempo gasto",
+ "time": "Tempo",
+ "title": "Título",
+ "tracking": "A seguir",
+ "tracking-info": "Será notificado de quaisquer alterações em cartões em que é o criador ou membro.",
+ "type": "Tipo",
+ "unassign-member": "Desatribuir membro",
+ "unsaved-description": "Possui uma descrição não guardada.",
+ "unwatch": "Deixar de observar",
+ "upload": "Enviar",
+ "upload-avatar": "Enviar um avatar",
+ "uploaded-avatar": "Enviado um avatar",
+ "username": "Nome de utilizador",
+ "view-it": "Visualizá-lo",
+ "warn-list-archived": "aviso: este cartão está numa lista no Arquivo",
+ "watch": "Observar",
+ "watching": "Observando",
+ "watching-info": "Será notificado de quaisquer alterações neste quadro",
+ "welcome-board": "Quadro de Boas Vindas",
+ "welcome-swimlane": "Marco 1",
+ "welcome-list1": "Básico",
+ "welcome-list2": "Avançado",
+ "card-templates-swimlane": "Modelos de Cartão",
+ "list-templates-swimlane": "Modelos de Lista",
+ "board-templates-swimlane": "Modelos de Quadro",
+ "what-to-do": "O que gostaria de fazer?",
+ "wipLimitErrorPopup-title": "Limite WIP Inválido",
+ "wipLimitErrorPopup-dialog-pt1": "O número de tarefas nesta lista excede o limite WIP definido.",
+ "wipLimitErrorPopup-dialog-pt2": "Por favor, mova algumas tarefas para fora desta lista, ou defina um limite WIP mais elevado.",
+ "admin-panel": "Painel Administrativo",
+ "settings": "Configurações",
+ "people": "Pessoas",
+ "registration": "Registo",
+ "disable-self-registration": "Desabilitar Auto-Registo",
+ "invite": "Convidar",
+ "invite-people": "Convidar Pessoas",
+ "to-boards": "Para o(s) quadro(s)",
+ "email-addresses": "Endereços de E-mail",
+ "smtp-host-description": "O endereço do servidor SMTP que envia os seus e-mails.",
+ "smtp-port-description": "A porta que o servidor SMTP usa para enviar os e-mails.",
+ "smtp-tls-description": "Habilitar suporte TLS para o servidor SMTP",
+ "smtp-host": "Servidor SMTP",
+ "smtp-port": "Porta SMTP",
+ "smtp-username": "Nome de utilizador",
+ "smtp-password": "Senha",
+ "smtp-tls": "Suporte TLS",
+ "send-from": "De",
+ "send-smtp-test": "Enviar um e-mail de teste para si mesmo",
+ "invitation-code": "Código do Convite",
+ "email-invite-register-subject": "__inviter__ enviou-lhe um convite",
+ "email-invite-register-text": "Caro __user__,\n\n__inviter__ convida-o para o quadro Kanban para colaborações.\n\nPor favor, siga a ligação abaixo:\n__url__ \n\nE seu código de convite é: __icode__\n\nObrigado.",
+ "email-smtp-test-subject": "E-mail de Teste de SMTP",
+ "email-smtp-test-text": "Enviou um e-mail com sucesso",
+ "error-invitation-code-not-exist": "O código do convite não existe",
+ "error-notAuthorized": "Não tem autorização para ver esta página.",
+ "outgoing-webhooks": "Webhooks de saída",
+ "outgoingWebhooksPopup-title": "Webhooks de saída",
+ "boardCardTitlePopup-title": "Filtro do Título do Cartão",
+ "new-outgoing-webhook": "Novo Webhook de saída",
+ "no-name": "(Desconhecido)",
+ "Node_version": "Versão do Node",
+ "OS_Arch": "Arquitectura do SO",
+ "OS_Cpus": "Quantidade de CPUs do SO",
+ "OS_Freemem": "Memória Disponível do SO",
+ "OS_Loadavg": "Carga Média do SO",
+ "OS_Platform": "Plataforma do SO",
+ "OS_Release": "Versão do SO",
+ "OS_Totalmem": "Memória Total do SO",
+ "OS_Type": "Tipo do SO",
+ "OS_Uptime": "Disponibilidade do SO",
+ "days": "dias",
+ "hours": "horas",
+ "minutes": "minutos",
+ "seconds": "segundos",
+ "show-field-on-card": "Mostrar este campo no cartão",
+ "automatically-field-on-card": "Criar campo automaticamente para todos os cartões",
+ "showLabel-field-on-card": "Mostrar etiqueta do campo no mini-cartão",
+ "yes": "Sim",
+ "no": "Não",
+ "accounts": "Contas",
+ "accounts-allowEmailChange": "Permitir Alteração do E-mail",
+ "accounts-allowUserNameChange": "Permitir Alteração de Nome de Utilizador",
+ "createdAt": "Criado em",
+ "verified": "Verificado",
+ "active": "Activo",
+ "card-received": "Recebido",
+ "card-received-on": "Recebido em",
+ "card-end": "Fim",
+ "card-end-on": "Termina em",
+ "editCardReceivedDatePopup-title": "Alterar data de recebimento",
+ "editCardEndDatePopup-title": "Alterar data de fim",
+ "setCardColorPopup-title": "Definir cor",
+ "setCardActionsColorPopup-title": "Escolha uma cor",
+ "setSwimlaneColorPopup-title": "Escolha uma cor",
+ "setListColorPopup-title": "Escolha uma cor",
+ "assigned-by": "Atribuído Por",
+ "requested-by": "Solicitado Por",
+ "board-delete-notice": "Apagar é permanente. Irá perder todas as listas, cartões e acções associadas a este quadro.",
+ "delete-board-confirm-popup": "Todas as listas, cartões, etiquetas e actividades serão apagadas e não poderá recuperar o conteúdo do quadro. Não há como desfazer.",
+ "boardDeletePopup-title": "Apagar Quadro?",
+ "delete-board": "Apagar Quadro",
+ "default-subtasks-board": "Sub-tarefas para o quadro __board__",
+ "default": "Omissão",
+ "queue": "Fila",
+ "subtask-settings": "Configurações de Sub-tarefas",
+ "boardSubtaskSettingsPopup-title": "Configurações das Sub-tarefas do Quadro",
+ "show-subtasks-field": "Cartões podem ter sub-tarefas",
+ "deposit-subtasks-board": "Depositar sub-tarefas neste quadro:",
+ "deposit-subtasks-list": "Lista de destino para sub-tarefas depositadas aqui:",
+ "show-parent-in-minicard": "Mostrar pai no mini-cartão:",
+ "prefix-with-full-path": "Prefixar com o caminho completo",
+ "prefix-with-parent": "Prefixar com o pai",
+ "subtext-with-full-path": "Sub-texto com o caminho completo",
+ "subtext-with-parent": "Sub-texto com o pai",
+ "change-card-parent": "Alterar o pai do cartão",
+ "parent-card": "Pai do cartão",
+ "source-board": "Quadro fonte",
+ "no-parent": "Não mostrar o pai",
+ "activity-added-label": "adicionou a etiqueta '%s' a %s",
+ "activity-removed-label": "removeu a etiqueta '%s' de %s",
+ "activity-delete-attach": "apagou um anexo de %s",
+ "activity-added-label-card": "adicionou a etiqueta '%s'",
+ "activity-removed-label-card": "removeu a etiqueta '%s'",
+ "activity-delete-attach-card": "apagou um anexo",
+ "activity-set-customfield": "definiu o campo personalizado '%s' para '%s' em %s",
+ "activity-unset-customfield": "removeu o campo personalizado '%s' de %s",
+ "r-rule": "Regra",
+ "r-add-trigger": "Adicionar gatilho",
+ "r-add-action": "Adicionar acção",
+ "r-board-rules": "Regras do quadro",
+ "r-add-rule": "Adicionar regra",
+ "r-view-rule": "Ver regra",
+ "r-delete-rule": "Apagar regra",
+ "r-new-rule-name": "Título da nova regra",
+ "r-no-rules": "Sem regras",
+ "r-when-a-card": "Quando um cartão",
+ "r-is": "é",
+ "r-is-moved": "é movido",
+ "r-added-to": "adicionado a",
+ "r-removed-from": "Removido de",
+ "r-the-board": "o quadro",
+ "r-list": "lista",
+ "set-filter": "Definir Filtro",
+ "r-moved-to": "Movido para",
+ "r-moved-from": "Movido de",
+ "r-archived": "Movido para o Arquivo",
+ "r-unarchived": "Restaurado do Arquivo",
+ "r-a-card": "um cartão",
+ "r-when-a-label-is": "Quando uma etiqueta é",
+ "r-when-the-label": "Quando a etiqueta é",
+ "r-list-name": "listar o nome",
+ "r-when-a-member": "Quando um membro é",
+ "r-when-the-member": "Quando o membro",
+ "r-name": "nome",
+ "r-when-a-attach": "Quando um anexo",
+ "r-when-a-checklist": "Quando a lista de verificação é",
+ "r-when-the-checklist": "Quando a lista de verificação",
+ "r-completed": "Completada",
+ "r-made-incomplete": "Tornado incompleta",
+ "r-when-a-item": "Quando um item de uma lista de verificação é",
+ "r-when-the-item": "Quando o item da lista de verificação",
+ "r-checked": "Marcado",
+ "r-unchecked": "Desmarcado",
+ "r-move-card-to": "Mover cartão para",
+ "r-top-of": "Topo de",
+ "r-bottom-of": "Fundo de",
+ "r-its-list": "a sua lista",
+ "r-archive": "Mover para o Arquivo",
+ "r-unarchive": "Restaurar do Arquivo",
+ "r-card": "cartão",
+ "r-add": "Novo",
+ "r-remove": "Remover",
+ "r-label": "etiqueta",
+ "r-member": "membro",
+ "r-remove-all": "Remover todos os membros do cartão",
+ "r-set-color": "Definir a cor para",
+ "r-checklist": "lista de verificação",
+ "r-check-all": "Marcar todos",
+ "r-uncheck-all": "Desmarcar todos",
+ "r-items-check": "itens da lista de verificação",
+ "r-check": "Marcar",
+ "r-uncheck": "Desmarcar",
+ "r-item": "item",
+ "r-of-checklist": "da lista de verificação",
+ "r-send-email": "Enviar um e-mail",
+ "r-to": "para",
+ "r-subject": "assunto",
+ "r-rule-details": "Detalhes da regra",
+ "r-d-move-to-top-gen": "Mover cartão para o topo da sua lista",
+ "r-d-move-to-top-spec": "Mover cartão para o topo da lista",
+ "r-d-move-to-bottom-gen": "Mover cartão para o fundo da sua lista",
+ "r-d-move-to-bottom-spec": "Mover cartão para fundo da lista",
+ "r-d-send-email": "Enviar e-mail",
+ "r-d-send-email-to": "para",
+ "r-d-send-email-subject": "assunto",
+ "r-d-send-email-message": "mensagem",
+ "r-d-archive": "Mover cartão para o Arquivo",
+ "r-d-unarchive": "Restaurar cartão do Arquivo",
+ "r-d-add-label": "Adicionar etiqueta",
+ "r-d-remove-label": "Remover etiqueta",
+ "r-create-card": "Criar novo cartão",
+ "r-in-list": "na lista",
+ "r-in-swimlane": "na pista",
+ "r-d-add-member": "Adicionar membro",
+ "r-d-remove-member": "Remover membro",
+ "r-d-remove-all-member": "Remover todos os membros",
+ "r-d-check-all": "Marcar todos os itens de uma lista",
+ "r-d-uncheck-all": "Desmarcar todos os itens de uma lista",
+ "r-d-check-one": "Marcar item",
+ "r-d-uncheck-one": "Desmarcar item",
+ "r-d-check-of-list": "da lista de verificação",
+ "r-d-add-checklist": "Adicionar lista de verificação",
+ "r-d-remove-checklist": "Remover lista de verificação",
+ "r-by": "por",
+ "r-add-checklist": "Adicionar lista de verificação",
+ "r-with-items": "com os itens",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Adicionar pista",
+ "r-swimlane-name": "nome da pista",
+ "r-board-note": "Nota: deixe o campo vazio para corresponder a todos os valores possíveis.",
+ "r-checklist-note": "Nota: itens de listas de verificação devem ser escritos separados por vírgulas.",
+ "r-when-a-card-is-moved": "Quando um cartão é movido de outra lista",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Método de autenticação",
+ "authentication-type": "Tipo de autenticação",
+ "custom-product-name": "Nome Personalizado do Produto",
+ "layout": "Layout",
+ "hide-logo": "Esconder Logo",
+ "add-custom-html-after-body-start": "Adicionar HTML Personalizado depois do início do <body>",
+ "add-custom-html-before-body-end": "Adicionar HTML Personalizado antes do fim do </body>",
+ "error-undefined": "Ocorreu um erro",
+ "error-ldap-login": "Ocorreu um erro ocorreu enquanto tentava entrar",
+ "display-authentication-method": "Mostrar Método de Autenticação",
+ "default-authentication-method": "Método de Autenticação por Omissão",
+ "duplicate-board": "Duplicar Quadro",
+ "people-number": "O número de pessoas é:",
+ "swimlaneDeletePopup-title": "Apagar Pista ?",
+ "swimlane-delete-pop": "Todas as acções serão removidas do feed de actividade e não será possível recuperar a pista. Não há como desfazer.",
+ "restore-all": "Restaurar todos",
+ "delete-all": "Apagar todos",
+ "loading": "A carregar, por favor aguarde.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json
index 73683006..5d237199 100644
--- a/i18n/ro.i18n.json
+++ b/i18n/ro.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Accept",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Ataşament",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Ataşamente",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Înapoi",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Liste",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Închide",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Caută",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Iniţiale",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Liste",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Meniu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Nume",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Parolă",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Privat",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profil",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Salvează",
- "search": "Caută",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Titlu",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Ce ai vrea sa faci?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Parolă",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Accept",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Ataşament",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Ataşamente",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Înapoi",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Liste",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Închide",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Caută",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Iniţiale",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Liste",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Meniu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Nume",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Parolă",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Privat",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profil",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Salvează",
+ "search": "Caută",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Titlu",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Ce ai vrea sa faci?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Parolă",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json
index 3515d832..279b9b65 100644
--- a/i18n/ru.i18n.json
+++ b/i18n/ru.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Принять",
- "act-activity-notify": "Уведомление о действиях участников",
- "act-addAttachment": "прикрепил вложение __attachment__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-deleteAttachment": "удалил вложение __attachment__ из карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-addSubtask": "добавил подзадачу __subtask__ для карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-addLabel": "добавил метку __label__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-addedLabel": "Добавлена метка __label__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-removeLabel": "Снята метка __label__ с карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-removedLabel": "Снята метка __label__ с карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-addChecklist": "добавил контрольный список __checklist__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-addChecklistItem": "добавил пункт __checklistItem__ в контрольный список __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-removeChecklist": "удалил контрольный список __checklist__ из карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-removeChecklistItem": "удалил пункт __checklistItem__ из контрольного списка __checkList__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-checkedItem": "отметил __checklistItem__ в контрольном списке __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-uncheckedItem": "снял __checklistItem__ в контрольном списке __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-completeChecklist": "завершил контрольный список __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-uncompleteChecklist": "вновь открыл контрольный список __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-addComment": "написал в карточке __card__: __comment__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-editComment": "изменил комментарий в карточке __card__: __comment__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-deleteComment": "удалил комментарий из карточки __card__: __comment__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-createBoard": "создал доску __board__",
- "act-createSwimlane": "создал дорожку __swimlane__ на доске __board__",
- "act-createCard": "создал карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-createCustomField": "создал новое поле __customField__ на доске __board__\n",
- "act-deleteCustomField": "удалил поле __customField__ с доски __board__",
- "act-setCustomField": "изменил значение поля __customField__: __customFieldValue__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-createList": "добавил список __list__ на доску __board__",
- "act-addBoardMember": "добавил участника __member__ на доску __board__",
- "act-archivedBoard": "Доска __board__ перемещена в Архив",
- "act-archivedCard": "Карточка __card__ из списка __list__ с дорожки __swimlane__ доски __board__ перемещена в Архив",
- "act-archivedList": "Список __list__ на дорожке __swimlane__ доски __board__ перемещен в Архив",
- "act-archivedSwimlane": "Дорожка __swimlane__ на доске __board__ перемещена в Архив",
- "act-importBoard": "импортировал доску __board__",
- "act-importCard": "импортировал карточку __card__ в список __list__ на дорожку __swimlane__ доски __board__",
- "act-importList": "импортировал список __list__ на дорожку __swimlane__ доски __board__",
- "act-joinMember": "добавил участника __member__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-moveCard": "переместил карточку __card__ на доске __board__ из списка __oldList__ с дорожки __oldSwimlane__ в список __list__ на дорожку __swimlane__",
- "act-moveCardToOtherBoard": "переместил карточку __card__ из списка __oldList__ с дорожки __oldSwimlane__ доски __oldBoard__ в список __list__ на дорожку __swimlane__ доски __board__",
- "act-removeBoardMember": "удалил участника __member__ с доски __board__",
- "act-restoredCard": "восстановил карточку __card__ в список __list__ на дорожку __swimlane__ доски __board__",
- "act-unjoinMember": "удалил участника __member__ из карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Действия",
- "activities": "История действий",
- "activity": "Действия участников",
- "activity-added": "добавил %s на %s",
- "activity-archived": "%s теперь в Архиве",
- "activity-attached": "прикрепил %s к %s",
- "activity-created": "создал %s",
- "activity-customfield-created": "создал настраиваемое поле %s",
- "activity-excluded": "исключил %s из %s",
- "activity-imported": "импортировал %s в %s из %s",
- "activity-imported-board": "импортировал %s из %s",
- "activity-joined": "присоединился к %s",
- "activity-moved": "переместил %s из %s в %s",
- "activity-on": "%s",
- "activity-removed": "удалил %s из %s",
- "activity-sent": "отправил %s в %s",
- "activity-unjoined": "вышел из %s",
- "activity-subtask-added": "добавил подзадачу в %s",
- "activity-checked-item": "отметил %s в контрольном списке %s в %s",
- "activity-unchecked-item": "снял %s в контрольном списке %s в %s",
- "activity-checklist-added": "добавил контрольный список в %s",
- "activity-checklist-removed": "удалил контрольный список из %s",
- "activity-checklist-completed": "завершил контрольный список __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "activity-checklist-uncompleted": "вновь открыл контрольный список %s в %s",
- "activity-checklist-item-added": "добавил пункт в контрольный список '%s' в карточке %s",
- "activity-checklist-item-removed": "удалил пункт из контрольного списка '%s' в карточке %s",
- "add": "Создать",
- "activity-checked-item-card": "отметил %s в контрольном списке %s",
- "activity-unchecked-item-card": "снял %s в контрольном списке %s",
- "activity-checklist-completed-card": "завершил контрольный список __checklist__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
- "activity-checklist-uncompleted-card": "вновь открыл контрольный список %s",
- "add-attachment": "Добавить вложение",
- "add-board": "Добавить доску",
- "add-card": "Добавить карточку",
- "add-swimlane": "Добавить дорожку",
- "add-subtask": "Добавить подзадачу",
- "add-checklist": "Добавить контрольный список",
- "add-checklist-item": "Добавить пункт в контрольный список",
- "add-cover": "Прикрепить",
- "add-label": "Добавить метку",
- "add-list": "Добавить простой список",
- "add-members": "Добавить участника",
- "added": "Добавлено",
- "addMemberPopup-title": "Участники",
- "admin": "Администратор",
- "admin-desc": "Может просматривать и редактировать карточки, удалять участников и управлять настройками доски.",
- "admin-announcement": "Объявление",
- "admin-announcement-active": "Действующее общесистемное объявление",
- "admin-announcement-title": "Объявление от Администратора",
- "all-boards": "Все доски",
- "and-n-other-card": "И __count__ другая карточка",
- "and-n-other-card_plural": "И __count__ другие карточки",
- "apply": "Применить",
- "app-is-offline": "Идет загрузка, подождите. Обновление страницы приведет к потере данных. Если загрузка не происходит, проверьте работоспособность сервера.",
- "archive": "Переместить в архив",
- "archive-all": "Переместить всё в архив",
- "archive-board": "Переместить доску в архив",
- "archive-card": "Переместить карточку в архив",
- "archive-list": "Переместить список в архив",
- "archive-swimlane": "Переместить дорожку в архив",
- "archive-selection": "Переместить выбранное в архив",
- "archiveBoardPopup-title": "Переместить доску в архив?",
- "archived-items": "Архив",
- "archived-boards": "Доски в архиве",
- "restore-board": "Востановить доску",
- "no-archived-boards": "Нет досок в архиве.",
- "archives": "Архив",
- "template": "Шаблон",
- "templates": "Шаблоны",
- "assign-member": "Назначить участника",
- "attached": "прикреплено",
- "attachment": "Вложение",
- "attachment-delete-pop": "Если удалить вложение, его нельзя будет восстановить.",
- "attachmentDeletePopup-title": "Удалить вложение?",
- "attachments": "Вложения",
- "auto-watch": "Автоматически следить за созданными досками",
- "avatar-too-big": "Аватар слишком большой (максимум 70КБ)",
- "back": "Назад",
- "board-change-color": "Изменить цвет",
- "board-nb-stars": "%s избранное",
- "board-not-found": "Доска не найдена",
- "board-private-info": "Это доска будет <strong>частной</strong>.",
- "board-public-info": "Эта доска будет <strong>доступной всем</strong>.",
- "boardChangeColorPopup-title": "Изменить фон доски",
- "boardChangeTitlePopup-title": "Переименовать доску",
- "boardChangeVisibilityPopup-title": "Изменить настройки видимости",
- "boardChangeWatchPopup-title": "Режимы оповещения",
- "boardMenuPopup-title": "Настройки доски",
- "boards": "Доски",
- "board-view": "Вид доски",
- "board-view-cal": "Календарь",
- "board-view-swimlanes": "Дорожки",
- "board-view-lists": "Списки",
- "bucket-example": "Например “Список дел”",
- "cancel": "Отмена",
- "card-archived": "Эта карточка перемещена в архив",
- "board-archived": "Эта доска перемещена в архив.",
- "card-comments-title": "Комментарии (%s)",
- "card-delete-notice": "Это действие невозможно будет отменить. Все изменения, которые вы вносили в карточку будут потеряны.",
- "card-delete-pop": "Все действия будут удалены из ленты активности участников, и вы не сможете заново открыть карточку. Действие необратимо",
- "card-delete-suggest-archive": "Вы можете переместить карточку в архив, чтобы убрать ее с доски, сохранив всю историю действий участников.",
- "card-due": "Выполнить к",
- "card-due-on": "Выполнить до",
- "card-spent": "Затраченное время",
- "card-edit-attachments": "Изменить вложения",
- "card-edit-custom-fields": "Редактировать настраиваемые поля",
- "card-edit-labels": "Изменить метку",
- "card-edit-members": "Изменить участников",
- "card-labels-title": "Изменить метки для этой карточки.",
- "card-members-title": "Добавить или удалить с карточки участников доски.",
- "card-start": "В работе с",
- "card-start-on": "Начнётся с",
- "cardAttachmentsPopup-title": "Прикрепить из",
- "cardCustomField-datePopup-title": "Изменить дату",
- "cardCustomFieldsPopup-title": "редактировать настраиваемые поля",
- "cardDeletePopup-title": "Удалить карточку?",
- "cardDetailsActionsPopup-title": "Действия в карточке",
- "cardLabelsPopup-title": "Метки",
- "cardMembersPopup-title": "Участники",
- "cardMorePopup-title": "Поделиться",
- "cardTemplatePopup-title": "Создать шаблон",
- "cards": "Карточки",
- "cards-count": "Карточки",
- "casSignIn": "Войти через CAS",
- "cardType-card": "Карточка",
- "cardType-linkedCard": "Связанная карточка",
- "cardType-linkedBoard": "Связанная доска",
- "change": "Изменить",
- "change-avatar": "Изменить аватар",
- "change-password": "Изменить пароль",
- "change-permissions": "Изменить права доступа",
- "change-settings": "Изменить настройки",
- "changeAvatarPopup-title": "Изменить аватар",
- "changeLanguagePopup-title": "Сменить язык",
- "changePasswordPopup-title": "Изменить пароль",
- "changePermissionsPopup-title": "Изменить настройки доступа",
- "changeSettingsPopup-title": "Изменить Настройки",
- "subtasks": "Подзадачи",
- "checklists": "Контрольные списки",
- "click-to-star": "Добавить в «Избранное»",
- "click-to-unstar": "Удалить из «Избранного»",
- "clipboard": "Буфер обмена или drag & drop",
- "close": "Закрыть",
- "close-board": "Закрыть доску",
- "close-board-pop": "Вы сможете восстановить доску, нажав \"Архив\" в заголовке домашней страницы.",
- "color-black": "черный",
- "color-blue": "синий",
- "color-crimson": "малиновый",
- "color-darkgreen": "темно-зеленый",
- "color-gold": "золотой",
- "color-gray": "серый",
- "color-green": "зеленый",
- "color-indigo": "индиго",
- "color-lime": "лимоновый",
- "color-magenta": "маджента",
- "color-mistyrose": "тускло-розовый",
- "color-navy": "темно-синий",
- "color-orange": "оранжевый",
- "color-paleturquoise": "бледно-бирюзовый",
- "color-peachpuff": "персиковый",
- "color-pink": "розовый",
- "color-plum": "сливовый",
- "color-purple": "фиолетовый",
- "color-red": "красный",
- "color-saddlebrown": "кожано-коричневый",
- "color-silver": "серебристый",
- "color-sky": "голубой",
- "color-slateblue": "серо-голубой",
- "color-white": "белый",
- "color-yellow": "желтый",
- "unset-color": "Убрать",
- "comment": "Добавить комментарий",
- "comment-placeholder": "Написать комментарий",
- "comment-only": "Только комментирование",
- "comment-only-desc": "Может комментировать только карточки.",
- "no-comments": "Без комментариев",
- "no-comments-desc": "Не видит комментарии и историю действий.",
- "computer": "Загрузить с компьютера",
- "confirm-subtask-delete-dialog": "Вы уверены, что хотите удалить подзадачу?",
- "confirm-checklist-delete-dialog": "Вы уверены, что хотите удалить контрольный список?",
- "copy-card-link-to-clipboard": "Копировать ссылку на карточку в буфер обмена",
- "linkCardPopup-title": "Карточка-ссылка",
- "searchElementPopup-title": "Поиск",
- "copyCardPopup-title": "Копировать карточку",
- "copyChecklistToManyCardsPopup-title": "Копировать шаблон контрольного списка в несколько карточек",
- "copyChecklistToManyCardsPopup-instructions": "Названия и описания целевых карт в формате JSON",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Название первой карточки\", \"description\":\"Описание первой карточки\"}, {\"title\":\"Название второй карточки\",\"description\":\"Описание второй карточки\"},{\"title\":\"Название последней карточки\",\"description\":\"Описание последней карточки\"} ]",
- "create": "Создать",
- "createBoardPopup-title": "Создать доску",
- "chooseBoardSourcePopup-title": "Импортировать доску",
- "createLabelPopup-title": "Создать метку",
- "createCustomField": "Создать поле",
- "createCustomFieldPopup-title": "Создать поле",
- "current": "текущий",
- "custom-field-delete-pop": "Отменить нельзя. Это удалит настраиваемое поле со всех карт и уничтожит его историю.",
- "custom-field-checkbox": "Галочка",
- "custom-field-date": "Дата",
- "custom-field-dropdown": "Выпадающий список",
- "custom-field-dropdown-none": "(нет)",
- "custom-field-dropdown-options": "Параметры списка",
- "custom-field-dropdown-options-placeholder": "Нажмите «Ввод», чтобы добавить дополнительные параметры.",
- "custom-field-dropdown-unknown": "(неизвестно)",
- "custom-field-number": "Номер",
- "custom-field-text": "Текст",
- "custom-fields": "Настраиваемые поля",
- "date": "Дата",
- "decline": "Отклонить",
- "default-avatar": "Аватар по умолчанию",
- "delete": "Удалить",
- "deleteCustomFieldPopup-title": "Удалить настраиваемые поля?",
- "deleteLabelPopup-title": "Удалить метку?",
- "description": "Описание",
- "disambiguateMultiLabelPopup-title": "Разрешить конфликт меток",
- "disambiguateMultiMemberPopup-title": "Разрешить конфликт участников",
- "discard": "Отказать",
- "done": "Готово",
- "download": "Скачать",
- "edit": "Редактировать",
- "edit-avatar": "Изменить аватар",
- "edit-profile": "Изменить профиль",
- "edit-wip-limit": "Изменить лимит на кол-во задач",
- "soft-wip-limit": "Мягкий лимит",
- "editCardStartDatePopup-title": "Изменить дату начала",
- "editCardDueDatePopup-title": "Изменить дату выполнения",
- "editCustomFieldPopup-title": "Редактировать поле",
- "editCardSpentTimePopup-title": "Изменить затраченное время",
- "editLabelPopup-title": "Изменить метки",
- "editNotificationPopup-title": "Редактировать уведомления",
- "editProfilePopup-title": "Редактировать профиль",
- "email": "Эл.почта",
- "email-enrollAccount-subject": "Аккаунт создан для вас здесь __url__",
- "email-enrollAccount-text": "Привет __user__,\n\nДля того, чтобы начать использовать сервис, просто нажми на ссылку ниже.\n\n__url__\n\nСпасибо.",
- "email-fail": "Отправка письма на EMail не удалась",
- "email-fail-text": "Ошибка при попытке отправить письмо",
- "email-invalid": "Неверный адрес электронной почты",
- "email-invite": "Пригласить по электронной почте",
- "email-invite-subject": "__inviter__ прислал вам приглашение",
- "email-invite-text": "Дорогой __user__,\n\n__inviter__ пригласил вас присоединиться к доске \"__board__\" для сотрудничества.\n\nПожалуйста проследуйте по ссылке ниже:\n\n__url__\n\nСпасибо.",
- "email-resetPassword-subject": "Перейдите по ссылке, чтобы сбросить пароль __url__",
- "email-resetPassword-text": "Привет __user__,\n\nДля сброса пароля перейдите по ссылке ниже.\n\n__url__\n\nThanks.",
- "email-sent": "Письмо отправлено",
- "email-verifyEmail-subject": "Подтвердите вашу эл.почту перейдя по ссылке __url__",
- "email-verifyEmail-text": "Привет __user__,\n\nДля подтверждения вашей электронной почты перейдите по ссылке ниже.\n\n__url__\n\nСпасибо.",
- "enable-wip-limit": "Включить лимит на кол-во задач",
- "error-board-doesNotExist": "Доска не найдена",
- "error-board-notAdmin": "Вы должны обладать правами администратора этой доски, чтобы сделать это",
- "error-board-notAMember": "Вы должны быть участником доски, чтобы сделать это",
- "error-json-malformed": "Ваше текст не является правильным JSON",
- "error-json-schema": "Содержимое вашего JSON не содержит информацию в корректном формате",
- "error-list-doesNotExist": "Список не найден",
- "error-user-doesNotExist": "Пользователь не найден",
- "error-user-notAllowSelf": "Вы не можете пригласить себя",
- "error-user-notCreated": "Пользователь не создан",
- "error-username-taken": "Это имя пользователя уже занято",
- "error-email-taken": "Этот адрес уже занят",
- "export-board": "Экспортировать доску",
- "filter": "Фильтр",
- "filter-cards": "Фильтр карточек",
- "filter-clear": "Очистить фильтр",
- "filter-no-label": "Нет метки",
- "filter-no-member": "Нет участников",
- "filter-no-custom-fields": "Нет настраиваемых полей",
- "filter-on": "Включен фильтр",
- "filter-on-desc": "Показываются карточки, соответствующие настройкам фильтра. Нажмите для редактирования.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Расширенный фильтр",
- "advanced-filter-description": "Расширенный фильтр позволяет написать строку, содержащую следующие операторы: == != <= >= && || ( ) Пробел используется как разделитель между операторами. Можно фильтровать все настраиваемые поля, вводя их имена и значения. Например: Поле1 == Значение1. Примечание. Если поля или значения содержат пробелы, нужно взять их в одинарные кавычки. Например: 'Поле 1' == 'Значение 1'. Для одиночных управляющих символов (' \\/), которые нужно пропустить, следует использовать \\. Например: Field1 = I\\'m. Также можно комбинировать несколько условий. Например: F1 == V1 || F1 == V2. Обычно все операторы интерпретируются слева направо, но можно изменить порядок, разместив скобки. Например: F1 == V1 && (F2 == V2 || F2 == V3). Также можно искать текстовые поля с помощью регулярных выражений: F1 == /Tes.*/i",
- "fullname": "Полное имя",
- "header-logo-title": "Вернуться к доскам.",
- "hide-system-messages": "Скрыть системные сообщения",
- "headerBarCreateBoardPopup-title": "Создать доску",
- "home": "Главная",
- "import": "Импорт",
- "link": "Ссылка",
- "import-board": "импортировать доску",
- "import-board-c": "Импортировать доску",
- "import-board-title-trello": "Импортировать доску из Trello",
- "import-board-title-wekan": "Импортировать доску, сохраненную ранее.",
- "import-sandstorm-backup-warning": "Не удаляйте импортируемые данные из ранее сохраненной доски или Trello, пока не убедитесь, что импорт завершился успешно – удается закрыть и снова открыть доску, и не появляется ошибка «Доска не найдена», что означает потерю данных.",
- "import-sandstorm-warning": "Импортированная доска удалит все существующие данные на текущей доске и заменит её импортированной доской.",
- "from-trello": "Из Trello",
- "from-wekan": "Сохраненную ранее",
- "import-board-instruction-trello": "На вашей Trello доске нажмите “Menu” - “More” - “Print and export - “Export JSON” и скопируйте полученный текст",
- "import-board-instruction-wekan": "На вашей доске перейдите в “Меню”, далее “Экспортировать доску” и скопируйте текст из скачаного файла",
- "import-board-instruction-about-errors": "Даже если при импорте возникли ошибки, иногда импортирование проходит успешно – тогда доска появится на странице «Все доски».",
- "import-json-placeholder": "Вставьте JSON сюда",
- "import-map-members": "Составить карту участников",
- "import-members-map": "Вы импортировали доску с участниками. Пожалуйста, отметьте участников, которых вы хотите импортировать в качестве пользователей",
- "import-show-user-mapping": "Проверить карту участников",
- "import-user-select": "Выберите существующего пользователя, которого вы хотите использовать в качестве участника",
- "importMapMembersAddPopup-title": "Выбрать участника",
- "info": "Версия",
- "initials": "Инициалы",
- "invalid-date": "Неверная дата",
- "invalid-time": "Некорректное время",
- "invalid-user": "Неверный пользователь",
- "joined": "вступил",
- "just-invited": "Вас только что пригласили на эту доску",
- "keyboard-shortcuts": "Сочетания клавиш",
- "label-create": "Создать метку",
- "label-default": "%s (по умолчанию)",
- "label-delete-pop": "Это действие невозможно будет отменить. Эта метка будут удалена во всех карточках. Также будет удалена вся история этой метки.",
- "labels": "Метки",
- "language": "Язык",
- "last-admin-desc": "Вы не можете изменять роли, для этого требуются права администратора.",
- "leave-board": "Покинуть доску",
- "leave-board-pop": "Вы уверенны, что хотите покинуть __boardTitle__? Вы будете удалены из всех карточек на этой доске.",
- "leaveBoardPopup-title": "Покинуть доску?",
- "link-card": "Доступна по ссылке",
- "list-archive-cards": "Переместить все карточки в этом списке в Архив",
- "list-archive-cards-pop": "Это действие удалит все карточки из этого списка с доски. Чтобы просмотреть карточки в Архиве и вернуть их на доску, нажмите “Меню” > “Архив”.",
- "list-move-cards": "Переместить все карточки в этом списке",
- "list-select-cards": "Выбрать все карточки в этом списке",
- "set-color-list": "Задать цвет",
- "listActionPopup-title": "Список действий",
- "swimlaneActionPopup-title": "Действия с дорожкой",
- "swimlaneAddPopup-title": "Добавить дорожку ниже",
- "listImportCardPopup-title": "Импортировать Trello карточку",
- "listMorePopup-title": "Поделиться",
- "link-list": "Ссылка на список",
- "list-delete-pop": "Все действия будут удалены из ленты активности участников, и вы не сможете восстановить список. Данное действие необратимо.",
- "list-delete-suggest-archive": "Вы можете отправить список в Архив, чтобы убрать его с доски и при этом сохранить результаты.",
- "lists": "Списки",
- "swimlanes": "Дорожки",
- "log-out": "Выйти",
- "log-in": "Войти",
- "loginPopup-title": "Войти",
- "memberMenuPopup-title": "Настройки участника",
- "members": "Участники",
- "menu": "Меню",
- "move-selection": "Переместить выделение",
- "moveCardPopup-title": "Переместить карточку",
- "moveCardToBottom-title": "Переместить вниз",
- "moveCardToTop-title": "Переместить вверх",
- "moveSelectionPopup-title": "Переместить выделение",
- "multi-selection": "Выбрать несколько",
- "multi-selection-on": "Выбрать несколько из",
- "muted": "Не беспокоить",
- "muted-info": "Вы НИКОГДА не будете уведомлены ни о каких изменениях в этой доске.",
- "my-boards": "Мои доски",
- "name": "Имя",
- "no-archived-cards": "Нет карточек в Архиве",
- "no-archived-lists": "Нет списков в Архиве",
- "no-archived-swimlanes": "Нет дорожек в Архиве",
- "no-results": "Ничего не найдено",
- "normal": "Обычный",
- "normal-desc": "Может редактировать карточки. Не может управлять настройками.",
- "not-accepted-yet": "Приглашение еще не принято",
- "notify-participate": "Получать обновления по любым карточкам, которые вы создавали или участником которых являетесь.",
- "notify-watch": "Получать обновления по любым доскам, спискам и карточкам, на которые вы подписаны как наблюдатель.",
- "optional": "не обязательно",
- "or": "или",
- "page-maybe-private": "Возможно, эта страница скрыта от незарегистрированных пользователей. Попробуйте <a href='%s'>войти на сайт</a>.",
- "page-not-found": "Страница не найдена.",
- "password": "Пароль",
- "paste-or-dragdrop": "вставьте, или перетащите файл с изображением сюда (только графический файл)",
- "participating": "Участвую",
- "preview": "Предпросмотр",
- "previewAttachedImagePopup-title": "Предпросмотр",
- "previewClipboardImagePopup-title": "Предпросмотр",
- "private": "Закрытая",
- "private-desc": "Эта доска с ограниченным доступом. Только участники могут работать с ней.",
- "profile": "Профиль",
- "public": "Открытая",
- "public-desc": "Эта доска может быть видна всем у кого есть ссылка. Также может быть проиндексирована поисковыми системами. Вносить изменения могут только участники.",
- "quick-access-description": "Нажмите на звезду, что добавить ярлык доски на панель.",
- "remove-cover": "Открепить",
- "remove-from-board": "Удалить с доски",
- "remove-label": "Удалить метку",
- "listDeletePopup-title": "Удалить список?",
- "remove-member": "Удалить участника",
- "remove-member-from-card": "Удалить из карточки",
- "remove-member-pop": "Удалить участника __name__ (__username__) из доски __boardTitle__? Участник будет удален из всех карточек на этой доске. Также он получит уведомление о совершаемом действии.",
- "removeMemberPopup-title": "Удалить участника?",
- "rename": "Переименовать",
- "rename-board": "Переименовать доску",
- "restore": "Восстановить",
- "save": "Сохранить",
- "search": "Поиск",
- "rules": "Правила",
- "search-cards": "Искать в названиях и описаниях карточек на этой доске",
- "search-example": "Искать текст?",
- "select-color": "Выбрать цвет",
- "set-wip-limit-value": "Устанавливает ограничение на максимальное количество задач в этом списке",
- "setWipLimitPopup-title": "Задать лимит на кол-во задач",
- "shortcut-assign-self": "Связать себя с текущей карточкой",
- "shortcut-autocomplete-emoji": "Автозаполнение emoji",
- "shortcut-autocomplete-members": "Автозаполнение участников",
- "shortcut-clear-filters": "Сбросить все фильтры",
- "shortcut-close-dialog": "Закрыть диалог",
- "shortcut-filter-my-cards": "Показать мои карточки",
- "shortcut-show-shortcuts": "Поднять список ярлыков",
- "shortcut-toggle-filterbar": "Переместить фильтр на бововую панель",
- "shortcut-toggle-sidebar": "Переместить доску на боковую панель",
- "show-cards-minimum-count": "Показывать количество карточек если их больше",
- "sidebar-open": "Открыть Панель",
- "sidebar-close": "Скрыть Панель",
- "signupPopup-title": "Создать учетную запись",
- "star-board-title": "Добавить в «Избранное». Эта доска будет всегда на виду.",
- "starred-boards": "Добавленные в «Избранное»",
- "starred-boards-description": "Избранные доски будут всегда вверху списка.",
- "subscribe": "Подписаться",
- "team": "Участники",
- "this-board": "эту доску",
- "this-card": "текущая карточка",
- "spent-time-hours": "Затраченное время (в часах)",
- "overtime-hours": "Переработка (в часах)",
- "overtime": "Переработка",
- "has-overtime-cards": "Имеются карточки с переработкой",
- "has-spenttime-cards": "Имеются карточки с учетом затраченного времени",
- "time": "Время",
- "title": "Название",
- "tracking": "Отслеживание",
- "tracking-info": "Вы будете уведомлены о любых изменениях в тех карточках, в которых вы являетесь создателем или участником.",
- "type": "Тип",
- "unassign-member": "Отменить назначение участника",
- "unsaved-description": "У вас есть несохраненное описание.",
- "unwatch": "Перестать следить",
- "upload": "Загрузить",
- "upload-avatar": "Загрузить аватар",
- "uploaded-avatar": "Загруженный аватар",
- "username": "Имя пользователя",
- "view-it": "Просмотреть",
- "warn-list-archived": "внимание: эта карточка из списка, который находится в Архиве",
- "watch": "Следить",
- "watching": "Полный контроль",
- "watching-info": "Вы будете уведомлены об любых изменениях в этой доске.",
- "welcome-board": "Приветственная Доска",
- "welcome-swimlane": "Этап 1",
- "welcome-list1": "Основы",
- "welcome-list2": "Расширенно",
- "card-templates-swimlane": "Шаблоны карточек",
- "list-templates-swimlane": "Шаблоны списков",
- "board-templates-swimlane": "Шаблоны досок",
- "what-to-do": "Что вы хотите сделать?",
- "wipLimitErrorPopup-title": "Некорректный лимит на кол-во задач",
- "wipLimitErrorPopup-dialog-pt1": "Количество задач в этом списке превышает установленный вами лимит",
- "wipLimitErrorPopup-dialog-pt2": "Пожалуйста, перенесите некоторые задачи из этого списка или увеличьте лимит на кол-во задач",
- "admin-panel": "Административная Панель",
- "settings": "Настройки",
- "people": "Люди",
- "registration": "Регистрация",
- "disable-self-registration": "Отключить самостоятельную регистрацию",
- "invite": "Пригласить",
- "invite-people": "Пригласить людей",
- "to-boards": "В Доску(и)",
- "email-addresses": "Email адрес",
- "smtp-host-description": "Адрес SMTP сервера, который отправляет ваши электронные письма.",
- "smtp-port-description": "Порт который SMTP-сервер использует для исходящих сообщений.",
- "smtp-tls-description": "Включить поддержку TLS для SMTP сервера",
- "smtp-host": "SMTP Хост",
- "smtp-port": "SMTP Порт",
- "smtp-username": "Имя пользователя",
- "smtp-password": "Пароль",
- "smtp-tls": "поддержка TLS",
- "send-from": "От",
- "send-smtp-test": "Отправьте тестовое письмо себе",
- "invitation-code": "Код приглашения",
- "email-invite-register-subject": "__inviter__ прислал вам приглашение",
- "email-invite-register-text": "Уважаемый __user__,\n\n__inviter__ приглашает вас использовать канбан-доску для совместной работы.\n\nПожалуйста, проследуйте по ссылке:\n__url__\n\nКод вашего приглашения: __icode__\n\nСпасибо.",
- "email-smtp-test-subject": "Тестовое письмо SMTP",
- "email-smtp-test-text": "Вы успешно отправили письмо",
- "error-invitation-code-not-exist": "Код приглашения не существует",
- "error-notAuthorized": "У вас нет доступа на просмотр этой страницы.",
- "outgoing-webhooks": "Исходящие Веб-хуки",
- "outgoingWebhooksPopup-title": "Исходящие Веб-хуки",
- "boardCardTitlePopup-title": "Фильтр названий карточек",
- "new-outgoing-webhook": "Новый исходящий Веб-хук",
- "no-name": "(Неизвестный)",
- "Node_version": "Версия NodeJS",
- "OS_Arch": "Архитектура",
- "OS_Cpus": "Количество процессоров",
- "OS_Freemem": "Свободная память",
- "OS_Loadavg": "Средняя загрузка",
- "OS_Platform": "Платформа",
- "OS_Release": "Версия ядра",
- "OS_Totalmem": "Общая память",
- "OS_Type": "Тип ОС",
- "OS_Uptime": "Время работы",
- "days": "дней",
- "hours": "часы",
- "minutes": "минуты",
- "seconds": "секунды",
- "show-field-on-card": "Показать это поле на карточке",
- "automatically-field-on-card": "Cоздавать поле во всех новых карточках",
- "showLabel-field-on-card": "Показать имя поля на карточке",
- "yes": "Да",
- "no": "Нет",
- "accounts": "Учетные записи",
- "accounts-allowEmailChange": "Разрешить изменение электронной почты",
- "accounts-allowUserNameChange": "Разрешить изменение имени пользователя",
- "createdAt": "Создан",
- "verified": "Подтвержден",
- "active": "Действующий",
- "card-received": "Получено",
- "card-received-on": "Получено с",
- "card-end": "Завершено",
- "card-end-on": "Завершится до",
- "editCardReceivedDatePopup-title": "Изменить дату получения",
- "editCardEndDatePopup-title": "Изменить дату завершения",
- "setCardColorPopup-title": "Задать цвет",
- "setCardActionsColorPopup-title": "Выберите цвет",
- "setSwimlaneColorPopup-title": "Выберите цвет",
- "setListColorPopup-title": "Выберите цвет",
- "assigned-by": "Поручил",
- "requested-by": "Запросил",
- "board-delete-notice": "Удаление является постоянным. Вы потеряете все списки, карты и действия, связанные с этой доской.",
- "delete-board-confirm-popup": "Все списки, карточки, метки и действия будут удалены, и вы не сможете восстановить содержимое доски. Отменить нельзя.",
- "boardDeletePopup-title": "Удалить доску?",
- "delete-board": "Удалить доску",
- "default-subtasks-board": "Подзадача для доски __board__",
- "default": "По умолчанию",
- "queue": "Очередь",
- "subtask-settings": "Настройки подзадач",
- "boardSubtaskSettingsPopup-title": "Настройки подзадач для доски",
- "show-subtasks-field": "Разрешить подзадачи",
- "deposit-subtasks-board": "Отправлять подзадачи на доску:",
- "deposit-subtasks-list": "Размещать подзадачи, отправленные на эту доску, в списке:",
- "show-parent-in-minicard": "Указывать исходную карточку:",
- "prefix-with-full-path": "Cверху, полный путь",
- "prefix-with-parent": "Сверху, только имя",
- "subtext-with-full-path": "Cнизу, полный путь",
- "subtext-with-parent": "Снизу, только имя",
- "change-card-parent": "Сменить исходную карточку",
- "parent-card": "Исходная карточка",
- "source-board": "Исходная доска",
- "no-parent": "Не указывать",
- "activity-added-label": "добавил метку '%s' на %s",
- "activity-removed-label": "удалил метку '%s' с %s",
- "activity-delete-attach": "удалил вложение из %s",
- "activity-added-label-card": "добавил метку '%s'",
- "activity-removed-label-card": "удалил метку '%s'",
- "activity-delete-attach-card": "удалил вложение",
- "activity-set-customfield": "сменил значение поля '%s' на '%s' в карточке %s",
- "activity-unset-customfield": "очистил поле '%s' в карточке %s",
- "r-rule": "Правило",
- "r-add-trigger": "Задать условие",
- "r-add-action": "Задать действие",
- "r-board-rules": "Правила доски",
- "r-add-rule": "Добавить правило",
- "r-view-rule": "Показать правило",
- "r-delete-rule": "Удалить правило",
- "r-new-rule-name": "Имя нового правила",
- "r-no-rules": "Нет правил",
- "r-when-a-card": "Когда карточка",
- "r-is": " ",
- "r-is-moved": "перемещается",
- "r-added-to": "добавляется в",
- "r-removed-from": "Покидает",
- "r-the-board": "доску",
- "r-list": "список",
- "set-filter": "Установить фильтр",
- "r-moved-to": "Перемещается в",
- "r-moved-from": "Покидает",
- "r-archived": "Перемещена в архив",
- "r-unarchived": "Восстановлена из архива",
- "r-a-card": "карточку",
- "r-when-a-label-is": "Когда метка",
- "r-when-the-label": "Когда метка",
- "r-list-name": "имя",
- "r-when-a-member": "Когда участник",
- "r-when-the-member": "Когда участник",
- "r-name": "имя",
- "r-when-a-attach": "Когда вложение",
- "r-when-a-checklist": "Когда контрольный список",
- "r-when-the-checklist": "Когда контрольный список",
- "r-completed": "Завершен",
- "r-made-incomplete": "Вновь открыт",
- "r-when-a-item": "Когда пункт контрольного списка",
- "r-when-the-item": "Когда пункт контрольного списка",
- "r-checked": "Отмечен",
- "r-unchecked": "Снят",
- "r-move-card-to": "Переместить карточку в",
- "r-top-of": "Начало",
- "r-bottom-of": "Конец",
- "r-its-list": "текущего списка",
- "r-archive": "Переместить в архив",
- "r-unarchive": "Восстановить из Архива",
- "r-card": "карточку",
- "r-add": "Создать",
- "r-remove": "Удалить",
- "r-label": "метку",
- "r-member": "участника",
- "r-remove-all": "Удалить всех участников из карточки",
- "r-set-color": "Сменить цвет на",
- "r-checklist": "контрольный список",
- "r-check-all": "Отметить все",
- "r-uncheck-all": "Снять все",
- "r-items-check": "пункты контрольного списка",
- "r-check": "Отметить",
- "r-uncheck": "Снять",
- "r-item": "пункт",
- "r-of-checklist": "контрольного списка",
- "r-send-email": "Отправить письмо",
- "r-to": "кому",
- "r-subject": "тема",
- "r-rule-details": "Содержание правила",
- "r-d-move-to-top-gen": "Переместить карточку в начало текущего списка",
- "r-d-move-to-top-spec": "Переместить карточку в начало списка",
- "r-d-move-to-bottom-gen": "Переместить карточку в конец текущего списка",
- "r-d-move-to-bottom-spec": "Переместить карточку в конец списка",
- "r-d-send-email": "Отправить письмо",
- "r-d-send-email-to": "кому",
- "r-d-send-email-subject": "тема",
- "r-d-send-email-message": "сообщение",
- "r-d-archive": "Переместить карточку в Архив",
- "r-d-unarchive": "Восстановить карточку из Архива",
- "r-d-add-label": "Добавить метку",
- "r-d-remove-label": "Удалить метку",
- "r-create-card": "Создать новую карточку",
- "r-in-list": "в списке",
- "r-in-swimlane": "в дорожке",
- "r-d-add-member": "Добавить участника",
- "r-d-remove-member": "Удалить участника",
- "r-d-remove-all-member": "Удалить всех участников",
- "r-d-check-all": "Отметить все пункты в списке",
- "r-d-uncheck-all": "Снять все пункты в списке",
- "r-d-check-one": "Отметить пункт",
- "r-d-uncheck-one": "Снять пункт",
- "r-d-check-of-list": "контрольного списка",
- "r-d-add-checklist": "Добавить контрольный список",
- "r-d-remove-checklist": "Удалить контрольный список",
- "r-by": "пользователем",
- "r-add-checklist": "Добавить контрольный список",
- "r-with-items": "с пунктами",
- "r-items-list": "пункт1,пункт2,пункт3",
- "r-add-swimlane": "Добавить дорожку",
- "r-swimlane-name": "имя",
- "r-board-note": "Примечание: пустое поле соответствует любым возможным значениям.",
- "r-checklist-note": "Примечание: пункты контрольных списков при перечислении разделяются запятыми.",
- "r-when-a-card-is-moved": "Когда карточка перемещена в другой список",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Способ авторизации",
- "authentication-type": "Тип авторизации",
- "custom-product-name": "Собственное наименование",
- "layout": "Внешний вид",
- "hide-logo": "Скрыть логотип",
- "add-custom-html-after-body-start": "Добавить HTML после начала <body>",
- "add-custom-html-before-body-end": "Добавить HTML до завершения </body>",
- "error-undefined": "Что-то пошло не так",
- "error-ldap-login": "Ошибка при попытке авторизации",
- "display-authentication-method": "Показывать способ авторизации",
- "default-authentication-method": "Способ авторизации по умолчанию",
- "duplicate-board": "Клонировать доску",
- "people-number": "Количество человек:",
- "swimlaneDeletePopup-title": "Удалить дорожку?",
- "swimlane-delete-pop": "Все действия будут удалены из ленты активности участников, и вы не сможете восстановить дорожку. Данное действие необратимо.",
- "restore-all": "Восстановить все",
- "delete-all": "Удалить все",
- "loading": "Идет загрузка, пожалуйста подождите",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Принять",
+ "act-activity-notify": "Уведомление о действиях участников",
+ "act-addAttachment": "прикрепил вложение __attachment__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-deleteAttachment": "удалил вложение __attachment__ из карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-addSubtask": "добавил подзадачу __subtask__ для карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-addLabel": "добавил метку __label__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-addedLabel": "Добавлена метка __label__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-removeLabel": "Снята метка __label__ с карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-removedLabel": "Снята метка __label__ с карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-addChecklist": "добавил контрольный список __checklist__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-addChecklistItem": "добавил пункт __checklistItem__ в контрольный список __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-removeChecklist": "удалил контрольный список __checklist__ из карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-removeChecklistItem": "удалил пункт __checklistItem__ из контрольного списка __checkList__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-checkedItem": "отметил __checklistItem__ в контрольном списке __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-uncheckedItem": "снял __checklistItem__ в контрольном списке __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-completeChecklist": "завершил контрольный список __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-uncompleteChecklist": "вновь открыл контрольный список __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-addComment": "написал в карточке __card__: __comment__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-editComment": "изменил комментарий в карточке __card__: __comment__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-deleteComment": "удалил комментарий из карточки __card__: __comment__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-createBoard": "создал доску __board__",
+ "act-createSwimlane": "создал дорожку __swimlane__ на доске __board__",
+ "act-createCard": "создал карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-createCustomField": "создал новое поле __customField__ на доске __board__\n",
+ "act-deleteCustomField": "удалил поле __customField__ с доски __board__",
+ "act-setCustomField": "изменил значение поля __customField__: __customFieldValue__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-createList": "добавил список __list__ на доску __board__",
+ "act-addBoardMember": "добавил участника __member__ на доску __board__",
+ "act-archivedBoard": "Доска __board__ перемещена в Архив",
+ "act-archivedCard": "Карточка __card__ из списка __list__ с дорожки __swimlane__ доски __board__ перемещена в Архив",
+ "act-archivedList": "Список __list__ на дорожке __swimlane__ доски __board__ перемещен в Архив",
+ "act-archivedSwimlane": "Дорожка __swimlane__ на доске __board__ перемещена в Архив",
+ "act-importBoard": "импортировал доску __board__",
+ "act-importCard": "импортировал карточку __card__ в список __list__ на дорожку __swimlane__ доски __board__",
+ "act-importList": "импортировал список __list__ на дорожку __swimlane__ доски __board__",
+ "act-joinMember": "добавил участника __member__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-moveCard": "переместил карточку __card__ на доске __board__ из списка __oldList__ с дорожки __oldSwimlane__ в список __list__ на дорожку __swimlane__",
+ "act-moveCardToOtherBoard": "переместил карточку __card__ из списка __oldList__ с дорожки __oldSwimlane__ доски __oldBoard__ в список __list__ на дорожку __swimlane__ доски __board__",
+ "act-removeBoardMember": "удалил участника __member__ с доски __board__",
+ "act-restoredCard": "восстановил карточку __card__ в список __list__ на дорожку __swimlane__ доски __board__",
+ "act-unjoinMember": "удалил участника __member__ из карточки __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Действия",
+ "activities": "История действий",
+ "activity": "Действия участников",
+ "activity-added": "добавил %s на %s",
+ "activity-archived": "%s теперь в Архиве",
+ "activity-attached": "прикрепил %s к %s",
+ "activity-created": "создал %s",
+ "activity-customfield-created": "создал настраиваемое поле %s",
+ "activity-excluded": "исключил %s из %s",
+ "activity-imported": "импортировал %s в %s из %s",
+ "activity-imported-board": "импортировал %s из %s",
+ "activity-joined": "присоединился к %s",
+ "activity-moved": "переместил %s из %s в %s",
+ "activity-on": "%s",
+ "activity-removed": "удалил %s из %s",
+ "activity-sent": "отправил %s в %s",
+ "activity-unjoined": "вышел из %s",
+ "activity-subtask-added": "добавил подзадачу в %s",
+ "activity-checked-item": "отметил %s в контрольном списке %s в %s",
+ "activity-unchecked-item": "снял %s в контрольном списке %s в %s",
+ "activity-checklist-added": "добавил контрольный список в %s",
+ "activity-checklist-removed": "удалил контрольный список из %s",
+ "activity-checklist-completed": "завершил контрольный список __checklist__ в карточке __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "activity-checklist-uncompleted": "вновь открыл контрольный список %s в %s",
+ "activity-checklist-item-added": "добавил пункт в контрольный список '%s' в карточке %s",
+ "activity-checklist-item-removed": "удалил пункт из контрольного списка '%s' в карточке %s",
+ "add": "Создать",
+ "activity-checked-item-card": "отметил %s в контрольном списке %s",
+ "activity-unchecked-item-card": "снял %s в контрольном списке %s",
+ "activity-checklist-completed-card": "завершил контрольный список __checklist__ в карточку __card__ в списке __list__ на дорожке __swimlane__ доски __board__",
+ "activity-checklist-uncompleted-card": "вновь открыл контрольный список %s",
+ "add-attachment": "Добавить вложение",
+ "add-board": "Добавить доску",
+ "add-card": "Добавить карточку",
+ "add-swimlane": "Добавить дорожку",
+ "add-subtask": "Добавить подзадачу",
+ "add-checklist": "Добавить контрольный список",
+ "add-checklist-item": "Добавить пункт в контрольный список",
+ "add-cover": "Прикрепить",
+ "add-label": "Добавить метку",
+ "add-list": "Добавить простой список",
+ "add-members": "Добавить участника",
+ "added": "Добавлено",
+ "addMemberPopup-title": "Участники",
+ "admin": "Администратор",
+ "admin-desc": "Может просматривать и редактировать карточки, удалять участников и управлять настройками доски.",
+ "admin-announcement": "Объявление",
+ "admin-announcement-active": "Действующее общесистемное объявление",
+ "admin-announcement-title": "Объявление от Администратора",
+ "all-boards": "Все доски",
+ "and-n-other-card": "И __count__ другая карточка",
+ "and-n-other-card_plural": "И __count__ другие карточки",
+ "apply": "Применить",
+ "app-is-offline": "Идет загрузка, подождите. Обновление страницы приведет к потере данных. Если загрузка не происходит, проверьте работоспособность сервера.",
+ "archive": "Переместить в архив",
+ "archive-all": "Переместить всё в архив",
+ "archive-board": "Переместить доску в архив",
+ "archive-card": "Переместить карточку в архив",
+ "archive-list": "Переместить список в архив",
+ "archive-swimlane": "Переместить дорожку в архив",
+ "archive-selection": "Переместить выбранное в архив",
+ "archiveBoardPopup-title": "Переместить доску в архив?",
+ "archived-items": "Архив",
+ "archived-boards": "Доски в архиве",
+ "restore-board": "Востановить доску",
+ "no-archived-boards": "Нет досок в архиве.",
+ "archives": "Архив",
+ "template": "Шаблон",
+ "templates": "Шаблоны",
+ "assign-member": "Назначить участника",
+ "attached": "прикреплено",
+ "attachment": "Вложение",
+ "attachment-delete-pop": "Если удалить вложение, его нельзя будет восстановить.",
+ "attachmentDeletePopup-title": "Удалить вложение?",
+ "attachments": "Вложения",
+ "auto-watch": "Автоматически следить за созданными досками",
+ "avatar-too-big": "Аватар слишком большой (максимум 70КБ)",
+ "back": "Назад",
+ "board-change-color": "Изменить цвет",
+ "board-nb-stars": "%s избранное",
+ "board-not-found": "Доска не найдена",
+ "board-private-info": "Это доска будет <strong>частной</strong>.",
+ "board-public-info": "Эта доска будет <strong>доступной всем</strong>.",
+ "boardChangeColorPopup-title": "Изменить фон доски",
+ "boardChangeTitlePopup-title": "Переименовать доску",
+ "boardChangeVisibilityPopup-title": "Изменить настройки видимости",
+ "boardChangeWatchPopup-title": "Режимы оповещения",
+ "boardMenuPopup-title": "Настройки доски",
+ "boards": "Доски",
+ "board-view": "Вид доски",
+ "board-view-cal": "Календарь",
+ "board-view-swimlanes": "Дорожки",
+ "board-view-lists": "Списки",
+ "bucket-example": "Например “Список дел”",
+ "cancel": "Отмена",
+ "card-archived": "Эта карточка перемещена в архив",
+ "board-archived": "Эта доска перемещена в архив.",
+ "card-comments-title": "Комментарии (%s)",
+ "card-delete-notice": "Это действие невозможно будет отменить. Все изменения, которые вы вносили в карточку будут потеряны.",
+ "card-delete-pop": "Все действия будут удалены из ленты активности участников, и вы не сможете заново открыть карточку. Действие необратимо",
+ "card-delete-suggest-archive": "Вы можете переместить карточку в архив, чтобы убрать ее с доски, сохранив всю историю действий участников.",
+ "card-due": "Выполнить к",
+ "card-due-on": "Выполнить до",
+ "card-spent": "Затраченное время",
+ "card-edit-attachments": "Изменить вложения",
+ "card-edit-custom-fields": "Редактировать настраиваемые поля",
+ "card-edit-labels": "Изменить метку",
+ "card-edit-members": "Изменить участников",
+ "card-labels-title": "Изменить метки для этой карточки.",
+ "card-members-title": "Добавить или удалить с карточки участников доски.",
+ "card-start": "В работе с",
+ "card-start-on": "Начнётся с",
+ "cardAttachmentsPopup-title": "Прикрепить из",
+ "cardCustomField-datePopup-title": "Изменить дату",
+ "cardCustomFieldsPopup-title": "редактировать настраиваемые поля",
+ "cardDeletePopup-title": "Удалить карточку?",
+ "cardDetailsActionsPopup-title": "Действия в карточке",
+ "cardLabelsPopup-title": "Метки",
+ "cardMembersPopup-title": "Участники",
+ "cardMorePopup-title": "Поделиться",
+ "cardTemplatePopup-title": "Создать шаблон",
+ "cards": "Карточки",
+ "cards-count": "Карточки",
+ "casSignIn": "Войти через CAS",
+ "cardType-card": "Карточка",
+ "cardType-linkedCard": "Связанная карточка",
+ "cardType-linkedBoard": "Связанная доска",
+ "change": "Изменить",
+ "change-avatar": "Изменить аватар",
+ "change-password": "Изменить пароль",
+ "change-permissions": "Изменить права доступа",
+ "change-settings": "Изменить настройки",
+ "changeAvatarPopup-title": "Изменить аватар",
+ "changeLanguagePopup-title": "Сменить язык",
+ "changePasswordPopup-title": "Изменить пароль",
+ "changePermissionsPopup-title": "Изменить настройки доступа",
+ "changeSettingsPopup-title": "Изменить Настройки",
+ "subtasks": "Подзадачи",
+ "checklists": "Контрольные списки",
+ "click-to-star": "Добавить в «Избранное»",
+ "click-to-unstar": "Удалить из «Избранного»",
+ "clipboard": "Буфер обмена или drag & drop",
+ "close": "Закрыть",
+ "close-board": "Закрыть доску",
+ "close-board-pop": "Вы сможете восстановить доску, нажав \"Архив\" в заголовке домашней страницы.",
+ "color-black": "черный",
+ "color-blue": "синий",
+ "color-crimson": "малиновый",
+ "color-darkgreen": "темно-зеленый",
+ "color-gold": "золотой",
+ "color-gray": "серый",
+ "color-green": "зеленый",
+ "color-indigo": "индиго",
+ "color-lime": "лимоновый",
+ "color-magenta": "маджента",
+ "color-mistyrose": "тускло-розовый",
+ "color-navy": "темно-синий",
+ "color-orange": "оранжевый",
+ "color-paleturquoise": "бледно-бирюзовый",
+ "color-peachpuff": "персиковый",
+ "color-pink": "розовый",
+ "color-plum": "сливовый",
+ "color-purple": "фиолетовый",
+ "color-red": "красный",
+ "color-saddlebrown": "кожано-коричневый",
+ "color-silver": "серебристый",
+ "color-sky": "голубой",
+ "color-slateblue": "серо-голубой",
+ "color-white": "белый",
+ "color-yellow": "желтый",
+ "unset-color": "Убрать",
+ "comment": "Добавить комментарий",
+ "comment-placeholder": "Написать комментарий",
+ "comment-only": "Только комментирование",
+ "comment-only-desc": "Может комментировать только карточки.",
+ "no-comments": "Без комментариев",
+ "no-comments-desc": "Не видит комментарии и историю действий.",
+ "computer": "Загрузить с компьютера",
+ "confirm-subtask-delete-dialog": "Вы уверены, что хотите удалить подзадачу?",
+ "confirm-checklist-delete-dialog": "Вы уверены, что хотите удалить контрольный список?",
+ "copy-card-link-to-clipboard": "Копировать ссылку на карточку в буфер обмена",
+ "linkCardPopup-title": "Карточка-ссылка",
+ "searchElementPopup-title": "Поиск",
+ "copyCardPopup-title": "Копировать карточку",
+ "copyChecklistToManyCardsPopup-title": "Копировать шаблон контрольного списка в несколько карточек",
+ "copyChecklistToManyCardsPopup-instructions": "Названия и описания целевых карт в формате JSON",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Название первой карточки\", \"description\":\"Описание первой карточки\"}, {\"title\":\"Название второй карточки\",\"description\":\"Описание второй карточки\"},{\"title\":\"Название последней карточки\",\"description\":\"Описание последней карточки\"} ]",
+ "create": "Создать",
+ "createBoardPopup-title": "Создать доску",
+ "chooseBoardSourcePopup-title": "Импортировать доску",
+ "createLabelPopup-title": "Создать метку",
+ "createCustomField": "Создать поле",
+ "createCustomFieldPopup-title": "Создать поле",
+ "current": "текущий",
+ "custom-field-delete-pop": "Отменить нельзя. Это удалит настраиваемое поле со всех карт и уничтожит его историю.",
+ "custom-field-checkbox": "Галочка",
+ "custom-field-date": "Дата",
+ "custom-field-dropdown": "Выпадающий список",
+ "custom-field-dropdown-none": "(нет)",
+ "custom-field-dropdown-options": "Параметры списка",
+ "custom-field-dropdown-options-placeholder": "Нажмите «Ввод», чтобы добавить дополнительные параметры.",
+ "custom-field-dropdown-unknown": "(неизвестно)",
+ "custom-field-number": "Номер",
+ "custom-field-text": "Текст",
+ "custom-fields": "Настраиваемые поля",
+ "date": "Дата",
+ "decline": "Отклонить",
+ "default-avatar": "Аватар по умолчанию",
+ "delete": "Удалить",
+ "deleteCustomFieldPopup-title": "Удалить настраиваемые поля?",
+ "deleteLabelPopup-title": "Удалить метку?",
+ "description": "Описание",
+ "disambiguateMultiLabelPopup-title": "Разрешить конфликт меток",
+ "disambiguateMultiMemberPopup-title": "Разрешить конфликт участников",
+ "discard": "Отказать",
+ "done": "Готово",
+ "download": "Скачать",
+ "edit": "Редактировать",
+ "edit-avatar": "Изменить аватар",
+ "edit-profile": "Изменить профиль",
+ "edit-wip-limit": "Изменить лимит на кол-во задач",
+ "soft-wip-limit": "Мягкий лимит",
+ "editCardStartDatePopup-title": "Изменить дату начала",
+ "editCardDueDatePopup-title": "Изменить дату выполнения",
+ "editCustomFieldPopup-title": "Редактировать поле",
+ "editCardSpentTimePopup-title": "Изменить затраченное время",
+ "editLabelPopup-title": "Изменить метки",
+ "editNotificationPopup-title": "Редактировать уведомления",
+ "editProfilePopup-title": "Редактировать профиль",
+ "email": "Эл.почта",
+ "email-enrollAccount-subject": "Аккаунт создан для вас здесь __url__",
+ "email-enrollAccount-text": "Привет __user__,\n\nДля того, чтобы начать использовать сервис, просто нажми на ссылку ниже.\n\n__url__\n\nСпасибо.",
+ "email-fail": "Отправка письма на EMail не удалась",
+ "email-fail-text": "Ошибка при попытке отправить письмо",
+ "email-invalid": "Неверный адрес электронной почты",
+ "email-invite": "Пригласить по электронной почте",
+ "email-invite-subject": "__inviter__ прислал вам приглашение",
+ "email-invite-text": "Дорогой __user__,\n\n__inviter__ пригласил вас присоединиться к доске \"__board__\" для сотрудничества.\n\nПожалуйста проследуйте по ссылке ниже:\n\n__url__\n\nСпасибо.",
+ "email-resetPassword-subject": "Перейдите по ссылке, чтобы сбросить пароль __url__",
+ "email-resetPassword-text": "Привет __user__,\n\nДля сброса пароля перейдите по ссылке ниже.\n\n__url__\n\nThanks.",
+ "email-sent": "Письмо отправлено",
+ "email-verifyEmail-subject": "Подтвердите вашу эл.почту перейдя по ссылке __url__",
+ "email-verifyEmail-text": "Привет __user__,\n\nДля подтверждения вашей электронной почты перейдите по ссылке ниже.\n\n__url__\n\nСпасибо.",
+ "enable-wip-limit": "Включить лимит на кол-во задач",
+ "error-board-doesNotExist": "Доска не найдена",
+ "error-board-notAdmin": "Вы должны обладать правами администратора этой доски, чтобы сделать это",
+ "error-board-notAMember": "Вы должны быть участником доски, чтобы сделать это",
+ "error-json-malformed": "Ваше текст не является правильным JSON",
+ "error-json-schema": "Содержимое вашего JSON не содержит информацию в корректном формате",
+ "error-list-doesNotExist": "Список не найден",
+ "error-user-doesNotExist": "Пользователь не найден",
+ "error-user-notAllowSelf": "Вы не можете пригласить себя",
+ "error-user-notCreated": "Пользователь не создан",
+ "error-username-taken": "Это имя пользователя уже занято",
+ "error-email-taken": "Этот адрес уже занят",
+ "export-board": "Экспортировать доску",
+ "filter": "Фильтр",
+ "filter-cards": "Фильтр карточек",
+ "filter-clear": "Очистить фильтр",
+ "filter-no-label": "Нет метки",
+ "filter-no-member": "Нет участников",
+ "filter-no-custom-fields": "Нет настраиваемых полей",
+ "filter-on": "Включен фильтр",
+ "filter-on-desc": "Показываются карточки, соответствующие настройкам фильтра. Нажмите для редактирования.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Расширенный фильтр",
+ "advanced-filter-description": "Расширенный фильтр позволяет написать строку, содержащую следующие операторы: == != <= >= && || ( ) Пробел используется как разделитель между операторами. Можно фильтровать все настраиваемые поля, вводя их имена и значения. Например: Поле1 == Значение1. Примечание. Если поля или значения содержат пробелы, нужно взять их в одинарные кавычки. Например: 'Поле 1' == 'Значение 1'. Для одиночных управляющих символов (' \\/), которые нужно пропустить, следует использовать \\. Например: Field1 = I\\'m. Также можно комбинировать несколько условий. Например: F1 == V1 || F1 == V2. Обычно все операторы интерпретируются слева направо, но можно изменить порядок, разместив скобки. Например: F1 == V1 && (F2 == V2 || F2 == V3). Также можно искать текстовые поля с помощью регулярных выражений: F1 == /Tes.*/i",
+ "fullname": "Полное имя",
+ "header-logo-title": "Вернуться к доскам.",
+ "hide-system-messages": "Скрыть системные сообщения",
+ "headerBarCreateBoardPopup-title": "Создать доску",
+ "home": "Главная",
+ "import": "Импорт",
+ "link": "Ссылка",
+ "import-board": "импортировать доску",
+ "import-board-c": "Импортировать доску",
+ "import-board-title-trello": "Импортировать доску из Trello",
+ "import-board-title-wekan": "Импортировать доску, сохраненную ранее.",
+ "import-sandstorm-backup-warning": "Не удаляйте импортируемые данные из ранее сохраненной доски или Trello, пока не убедитесь, что импорт завершился успешно – удается закрыть и снова открыть доску, и не появляется ошибка «Доска не найдена», что означает потерю данных.",
+ "import-sandstorm-warning": "Импортированная доска удалит все существующие данные на текущей доске и заменит её импортированной доской.",
+ "from-trello": "Из Trello",
+ "from-wekan": "Сохраненную ранее",
+ "import-board-instruction-trello": "На вашей Trello доске нажмите “Menu” - “More” - “Print and export - “Export JSON” и скопируйте полученный текст",
+ "import-board-instruction-wekan": "На вашей доске перейдите в “Меню”, далее “Экспортировать доску” и скопируйте текст из скачаного файла",
+ "import-board-instruction-about-errors": "Даже если при импорте возникли ошибки, иногда импортирование проходит успешно – тогда доска появится на странице «Все доски».",
+ "import-json-placeholder": "Вставьте JSON сюда",
+ "import-map-members": "Составить карту участников",
+ "import-members-map": "Вы импортировали доску с участниками. Пожалуйста, отметьте участников, которых вы хотите импортировать в качестве пользователей",
+ "import-show-user-mapping": "Проверить карту участников",
+ "import-user-select": "Выберите существующего пользователя, которого вы хотите использовать в качестве участника",
+ "importMapMembersAddPopup-title": "Выбрать участника",
+ "info": "Версия",
+ "initials": "Инициалы",
+ "invalid-date": "Неверная дата",
+ "invalid-time": "Некорректное время",
+ "invalid-user": "Неверный пользователь",
+ "joined": "вступил",
+ "just-invited": "Вас только что пригласили на эту доску",
+ "keyboard-shortcuts": "Сочетания клавиш",
+ "label-create": "Создать метку",
+ "label-default": "%s (по умолчанию)",
+ "label-delete-pop": "Это действие невозможно будет отменить. Эта метка будут удалена во всех карточках. Также будет удалена вся история этой метки.",
+ "labels": "Метки",
+ "language": "Язык",
+ "last-admin-desc": "Вы не можете изменять роли, для этого требуются права администратора.",
+ "leave-board": "Покинуть доску",
+ "leave-board-pop": "Вы уверенны, что хотите покинуть __boardTitle__? Вы будете удалены из всех карточек на этой доске.",
+ "leaveBoardPopup-title": "Покинуть доску?",
+ "link-card": "Доступна по ссылке",
+ "list-archive-cards": "Переместить все карточки в этом списке в Архив",
+ "list-archive-cards-pop": "Это действие удалит все карточки из этого списка с доски. Чтобы просмотреть карточки в Архиве и вернуть их на доску, нажмите “Меню” > “Архив”.",
+ "list-move-cards": "Переместить все карточки в этом списке",
+ "list-select-cards": "Выбрать все карточки в этом списке",
+ "set-color-list": "Задать цвет",
+ "listActionPopup-title": "Список действий",
+ "swimlaneActionPopup-title": "Действия с дорожкой",
+ "swimlaneAddPopup-title": "Добавить дорожку ниже",
+ "listImportCardPopup-title": "Импортировать Trello карточку",
+ "listMorePopup-title": "Поделиться",
+ "link-list": "Ссылка на список",
+ "list-delete-pop": "Все действия будут удалены из ленты активности участников, и вы не сможете восстановить список. Данное действие необратимо.",
+ "list-delete-suggest-archive": "Вы можете отправить список в Архив, чтобы убрать его с доски и при этом сохранить результаты.",
+ "lists": "Списки",
+ "swimlanes": "Дорожки",
+ "log-out": "Выйти",
+ "log-in": "Войти",
+ "loginPopup-title": "Войти",
+ "memberMenuPopup-title": "Настройки участника",
+ "members": "Участники",
+ "menu": "Меню",
+ "move-selection": "Переместить выделение",
+ "moveCardPopup-title": "Переместить карточку",
+ "moveCardToBottom-title": "Переместить вниз",
+ "moveCardToTop-title": "Переместить вверх",
+ "moveSelectionPopup-title": "Переместить выделение",
+ "multi-selection": "Выбрать несколько",
+ "multi-selection-on": "Выбрать несколько из",
+ "muted": "Не беспокоить",
+ "muted-info": "Вы НИКОГДА не будете уведомлены ни о каких изменениях в этой доске.",
+ "my-boards": "Мои доски",
+ "name": "Имя",
+ "no-archived-cards": "Нет карточек в Архиве",
+ "no-archived-lists": "Нет списков в Архиве",
+ "no-archived-swimlanes": "Нет дорожек в Архиве",
+ "no-results": "Ничего не найдено",
+ "normal": "Обычный",
+ "normal-desc": "Может редактировать карточки. Не может управлять настройками.",
+ "not-accepted-yet": "Приглашение еще не принято",
+ "notify-participate": "Получать обновления по любым карточкам, которые вы создавали или участником которых являетесь.",
+ "notify-watch": "Получать обновления по любым доскам, спискам и карточкам, на которые вы подписаны как наблюдатель.",
+ "optional": "не обязательно",
+ "or": "или",
+ "page-maybe-private": "Возможно, эта страница скрыта от незарегистрированных пользователей. Попробуйте <a href='%s'>войти на сайт</a>.",
+ "page-not-found": "Страница не найдена.",
+ "password": "Пароль",
+ "paste-or-dragdrop": "вставьте, или перетащите файл с изображением сюда (только графический файл)",
+ "participating": "Участвую",
+ "preview": "Предпросмотр",
+ "previewAttachedImagePopup-title": "Предпросмотр",
+ "previewClipboardImagePopup-title": "Предпросмотр",
+ "private": "Закрытая",
+ "private-desc": "Эта доска с ограниченным доступом. Только участники могут работать с ней.",
+ "profile": "Профиль",
+ "public": "Открытая",
+ "public-desc": "Эта доска может быть видна всем у кого есть ссылка. Также может быть проиндексирована поисковыми системами. Вносить изменения могут только участники.",
+ "quick-access-description": "Нажмите на звезду, что добавить ярлык доски на панель.",
+ "remove-cover": "Открепить",
+ "remove-from-board": "Удалить с доски",
+ "remove-label": "Удалить метку",
+ "listDeletePopup-title": "Удалить список?",
+ "remove-member": "Удалить участника",
+ "remove-member-from-card": "Удалить из карточки",
+ "remove-member-pop": "Удалить участника __name__ (__username__) из доски __boardTitle__? Участник будет удален из всех карточек на этой доске. Также он получит уведомление о совершаемом действии.",
+ "removeMemberPopup-title": "Удалить участника?",
+ "rename": "Переименовать",
+ "rename-board": "Переименовать доску",
+ "restore": "Восстановить",
+ "save": "Сохранить",
+ "search": "Поиск",
+ "rules": "Правила",
+ "search-cards": "Искать в названиях и описаниях карточек на этой доске",
+ "search-example": "Искать текст?",
+ "select-color": "Выбрать цвет",
+ "set-wip-limit-value": "Устанавливает ограничение на максимальное количество задач в этом списке",
+ "setWipLimitPopup-title": "Задать лимит на кол-во задач",
+ "shortcut-assign-self": "Связать себя с текущей карточкой",
+ "shortcut-autocomplete-emoji": "Автозаполнение emoji",
+ "shortcut-autocomplete-members": "Автозаполнение участников",
+ "shortcut-clear-filters": "Сбросить все фильтры",
+ "shortcut-close-dialog": "Закрыть диалог",
+ "shortcut-filter-my-cards": "Показать мои карточки",
+ "shortcut-show-shortcuts": "Поднять список ярлыков",
+ "shortcut-toggle-filterbar": "Переместить фильтр на бововую панель",
+ "shortcut-toggle-sidebar": "Переместить доску на боковую панель",
+ "show-cards-minimum-count": "Показывать количество карточек если их больше",
+ "sidebar-open": "Открыть Панель",
+ "sidebar-close": "Скрыть Панель",
+ "signupPopup-title": "Создать учетную запись",
+ "star-board-title": "Добавить в «Избранное». Эта доска будет всегда на виду.",
+ "starred-boards": "Добавленные в «Избранное»",
+ "starred-boards-description": "Избранные доски будут всегда вверху списка.",
+ "subscribe": "Подписаться",
+ "team": "Участники",
+ "this-board": "эту доску",
+ "this-card": "текущая карточка",
+ "spent-time-hours": "Затраченное время (в часах)",
+ "overtime-hours": "Переработка (в часах)",
+ "overtime": "Переработка",
+ "has-overtime-cards": "Имеются карточки с переработкой",
+ "has-spenttime-cards": "Имеются карточки с учетом затраченного времени",
+ "time": "Время",
+ "title": "Название",
+ "tracking": "Отслеживание",
+ "tracking-info": "Вы будете уведомлены о любых изменениях в тех карточках, в которых вы являетесь создателем или участником.",
+ "type": "Тип",
+ "unassign-member": "Отменить назначение участника",
+ "unsaved-description": "У вас есть несохраненное описание.",
+ "unwatch": "Перестать следить",
+ "upload": "Загрузить",
+ "upload-avatar": "Загрузить аватар",
+ "uploaded-avatar": "Загруженный аватар",
+ "username": "Имя пользователя",
+ "view-it": "Просмотреть",
+ "warn-list-archived": "внимание: эта карточка из списка, который находится в Архиве",
+ "watch": "Следить",
+ "watching": "Полный контроль",
+ "watching-info": "Вы будете уведомлены об любых изменениях в этой доске.",
+ "welcome-board": "Приветственная Доска",
+ "welcome-swimlane": "Этап 1",
+ "welcome-list1": "Основы",
+ "welcome-list2": "Расширенно",
+ "card-templates-swimlane": "Шаблоны карточек",
+ "list-templates-swimlane": "Шаблоны списков",
+ "board-templates-swimlane": "Шаблоны досок",
+ "what-to-do": "Что вы хотите сделать?",
+ "wipLimitErrorPopup-title": "Некорректный лимит на кол-во задач",
+ "wipLimitErrorPopup-dialog-pt1": "Количество задач в этом списке превышает установленный вами лимит",
+ "wipLimitErrorPopup-dialog-pt2": "Пожалуйста, перенесите некоторые задачи из этого списка или увеличьте лимит на кол-во задач",
+ "admin-panel": "Административная Панель",
+ "settings": "Настройки",
+ "people": "Люди",
+ "registration": "Регистрация",
+ "disable-self-registration": "Отключить самостоятельную регистрацию",
+ "invite": "Пригласить",
+ "invite-people": "Пригласить людей",
+ "to-boards": "В Доску(и)",
+ "email-addresses": "Email адрес",
+ "smtp-host-description": "Адрес SMTP сервера, который отправляет ваши электронные письма.",
+ "smtp-port-description": "Порт который SMTP-сервер использует для исходящих сообщений.",
+ "smtp-tls-description": "Включить поддержку TLS для SMTP сервера",
+ "smtp-host": "SMTP Хост",
+ "smtp-port": "SMTP Порт",
+ "smtp-username": "Имя пользователя",
+ "smtp-password": "Пароль",
+ "smtp-tls": "поддержка TLS",
+ "send-from": "От",
+ "send-smtp-test": "Отправьте тестовое письмо себе",
+ "invitation-code": "Код приглашения",
+ "email-invite-register-subject": "__inviter__ прислал вам приглашение",
+ "email-invite-register-text": "Уважаемый __user__,\n\n__inviter__ приглашает вас использовать канбан-доску для совместной работы.\n\nПожалуйста, проследуйте по ссылке:\n__url__\n\nКод вашего приглашения: __icode__\n\nСпасибо.",
+ "email-smtp-test-subject": "Тестовое письмо SMTP",
+ "email-smtp-test-text": "Вы успешно отправили письмо",
+ "error-invitation-code-not-exist": "Код приглашения не существует",
+ "error-notAuthorized": "У вас нет доступа на просмотр этой страницы.",
+ "outgoing-webhooks": "Исходящие Веб-хуки",
+ "outgoingWebhooksPopup-title": "Исходящие Веб-хуки",
+ "boardCardTitlePopup-title": "Фильтр названий карточек",
+ "new-outgoing-webhook": "Новый исходящий Веб-хук",
+ "no-name": "(Неизвестный)",
+ "Node_version": "Версия NodeJS",
+ "OS_Arch": "Архитектура",
+ "OS_Cpus": "Количество процессоров",
+ "OS_Freemem": "Свободная память",
+ "OS_Loadavg": "Средняя загрузка",
+ "OS_Platform": "Платформа",
+ "OS_Release": "Версия ядра",
+ "OS_Totalmem": "Общая память",
+ "OS_Type": "Тип ОС",
+ "OS_Uptime": "Время работы",
+ "days": "дней",
+ "hours": "часы",
+ "minutes": "минуты",
+ "seconds": "секунды",
+ "show-field-on-card": "Показать это поле на карточке",
+ "automatically-field-on-card": "Cоздавать поле во всех новых карточках",
+ "showLabel-field-on-card": "Показать имя поля на карточке",
+ "yes": "Да",
+ "no": "Нет",
+ "accounts": "Учетные записи",
+ "accounts-allowEmailChange": "Разрешить изменение электронной почты",
+ "accounts-allowUserNameChange": "Разрешить изменение имени пользователя",
+ "createdAt": "Создан",
+ "verified": "Подтвержден",
+ "active": "Действующий",
+ "card-received": "Получено",
+ "card-received-on": "Получено с",
+ "card-end": "Завершено",
+ "card-end-on": "Завершится до",
+ "editCardReceivedDatePopup-title": "Изменить дату получения",
+ "editCardEndDatePopup-title": "Изменить дату завершения",
+ "setCardColorPopup-title": "Задать цвет",
+ "setCardActionsColorPopup-title": "Выберите цвет",
+ "setSwimlaneColorPopup-title": "Выберите цвет",
+ "setListColorPopup-title": "Выберите цвет",
+ "assigned-by": "Поручил",
+ "requested-by": "Запросил",
+ "board-delete-notice": "Удаление является постоянным. Вы потеряете все списки, карты и действия, связанные с этой доской.",
+ "delete-board-confirm-popup": "Все списки, карточки, метки и действия будут удалены, и вы не сможете восстановить содержимое доски. Отменить нельзя.",
+ "boardDeletePopup-title": "Удалить доску?",
+ "delete-board": "Удалить доску",
+ "default-subtasks-board": "Подзадача для доски __board__",
+ "default": "По умолчанию",
+ "queue": "Очередь",
+ "subtask-settings": "Настройки подзадач",
+ "boardSubtaskSettingsPopup-title": "Настройки подзадач для доски",
+ "show-subtasks-field": "Разрешить подзадачи",
+ "deposit-subtasks-board": "Отправлять подзадачи на доску:",
+ "deposit-subtasks-list": "Размещать подзадачи, отправленные на эту доску, в списке:",
+ "show-parent-in-minicard": "Указывать исходную карточку:",
+ "prefix-with-full-path": "Cверху, полный путь",
+ "prefix-with-parent": "Сверху, только имя",
+ "subtext-with-full-path": "Cнизу, полный путь",
+ "subtext-with-parent": "Снизу, только имя",
+ "change-card-parent": "Сменить исходную карточку",
+ "parent-card": "Исходная карточка",
+ "source-board": "Исходная доска",
+ "no-parent": "Не указывать",
+ "activity-added-label": "добавил метку '%s' на %s",
+ "activity-removed-label": "удалил метку '%s' с %s",
+ "activity-delete-attach": "удалил вложение из %s",
+ "activity-added-label-card": "добавил метку '%s'",
+ "activity-removed-label-card": "удалил метку '%s'",
+ "activity-delete-attach-card": "удалил вложение",
+ "activity-set-customfield": "сменил значение поля '%s' на '%s' в карточке %s",
+ "activity-unset-customfield": "очистил поле '%s' в карточке %s",
+ "r-rule": "Правило",
+ "r-add-trigger": "Задать условие",
+ "r-add-action": "Задать действие",
+ "r-board-rules": "Правила доски",
+ "r-add-rule": "Добавить правило",
+ "r-view-rule": "Показать правило",
+ "r-delete-rule": "Удалить правило",
+ "r-new-rule-name": "Имя нового правила",
+ "r-no-rules": "Нет правил",
+ "r-when-a-card": "Когда карточка",
+ "r-is": " ",
+ "r-is-moved": "перемещается",
+ "r-added-to": "добавляется в",
+ "r-removed-from": "Покидает",
+ "r-the-board": "доску",
+ "r-list": "список",
+ "set-filter": "Установить фильтр",
+ "r-moved-to": "Перемещается в",
+ "r-moved-from": "Покидает",
+ "r-archived": "Перемещена в архив",
+ "r-unarchived": "Восстановлена из архива",
+ "r-a-card": "карточку",
+ "r-when-a-label-is": "Когда метка",
+ "r-when-the-label": "Когда метка",
+ "r-list-name": "имя",
+ "r-when-a-member": "Когда участник",
+ "r-when-the-member": "Когда участник",
+ "r-name": "имя",
+ "r-when-a-attach": "Когда вложение",
+ "r-when-a-checklist": "Когда контрольный список",
+ "r-when-the-checklist": "Когда контрольный список",
+ "r-completed": "Завершен",
+ "r-made-incomplete": "Вновь открыт",
+ "r-when-a-item": "Когда пункт контрольного списка",
+ "r-when-the-item": "Когда пункт контрольного списка",
+ "r-checked": "Отмечен",
+ "r-unchecked": "Снят",
+ "r-move-card-to": "Переместить карточку в",
+ "r-top-of": "Начало",
+ "r-bottom-of": "Конец",
+ "r-its-list": "текущего списка",
+ "r-archive": "Переместить в архив",
+ "r-unarchive": "Восстановить из Архива",
+ "r-card": "карточку",
+ "r-add": "Создать",
+ "r-remove": "Удалить",
+ "r-label": "метку",
+ "r-member": "участника",
+ "r-remove-all": "Удалить всех участников из карточки",
+ "r-set-color": "Сменить цвет на",
+ "r-checklist": "контрольный список",
+ "r-check-all": "Отметить все",
+ "r-uncheck-all": "Снять все",
+ "r-items-check": "пункты контрольного списка",
+ "r-check": "Отметить",
+ "r-uncheck": "Снять",
+ "r-item": "пункт",
+ "r-of-checklist": "контрольного списка",
+ "r-send-email": "Отправить письмо",
+ "r-to": "кому",
+ "r-subject": "тема",
+ "r-rule-details": "Содержание правила",
+ "r-d-move-to-top-gen": "Переместить карточку в начало текущего списка",
+ "r-d-move-to-top-spec": "Переместить карточку в начало списка",
+ "r-d-move-to-bottom-gen": "Переместить карточку в конец текущего списка",
+ "r-d-move-to-bottom-spec": "Переместить карточку в конец списка",
+ "r-d-send-email": "Отправить письмо",
+ "r-d-send-email-to": "кому",
+ "r-d-send-email-subject": "тема",
+ "r-d-send-email-message": "сообщение",
+ "r-d-archive": "Переместить карточку в Архив",
+ "r-d-unarchive": "Восстановить карточку из Архива",
+ "r-d-add-label": "Добавить метку",
+ "r-d-remove-label": "Удалить метку",
+ "r-create-card": "Создать новую карточку",
+ "r-in-list": "в списке",
+ "r-in-swimlane": "в дорожке",
+ "r-d-add-member": "Добавить участника",
+ "r-d-remove-member": "Удалить участника",
+ "r-d-remove-all-member": "Удалить всех участников",
+ "r-d-check-all": "Отметить все пункты в списке",
+ "r-d-uncheck-all": "Снять все пункты в списке",
+ "r-d-check-one": "Отметить пункт",
+ "r-d-uncheck-one": "Снять пункт",
+ "r-d-check-of-list": "контрольного списка",
+ "r-d-add-checklist": "Добавить контрольный список",
+ "r-d-remove-checklist": "Удалить контрольный список",
+ "r-by": "пользователем",
+ "r-add-checklist": "Добавить контрольный список",
+ "r-with-items": "с пунктами",
+ "r-items-list": "пункт1,пункт2,пункт3",
+ "r-add-swimlane": "Добавить дорожку",
+ "r-swimlane-name": "имя",
+ "r-board-note": "Примечание: пустое поле соответствует любым возможным значениям.",
+ "r-checklist-note": "Примечание: пункты контрольных списков при перечислении разделяются запятыми.",
+ "r-when-a-card-is-moved": "Когда карточка перемещена в другой список",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Способ авторизации",
+ "authentication-type": "Тип авторизации",
+ "custom-product-name": "Собственное наименование",
+ "layout": "Внешний вид",
+ "hide-logo": "Скрыть логотип",
+ "add-custom-html-after-body-start": "Добавить HTML после начала <body>",
+ "add-custom-html-before-body-end": "Добавить HTML до завершения </body>",
+ "error-undefined": "Что-то пошло не так",
+ "error-ldap-login": "Ошибка при попытке авторизации",
+ "display-authentication-method": "Показывать способ авторизации",
+ "default-authentication-method": "Способ авторизации по умолчанию",
+ "duplicate-board": "Клонировать доску",
+ "people-number": "Количество человек:",
+ "swimlaneDeletePopup-title": "Удалить дорожку?",
+ "swimlane-delete-pop": "Все действия будут удалены из ленты активности участников, и вы не сможете восстановить дорожку. Данное действие необратимо.",
+ "restore-all": "Восстановить все",
+ "delete-all": "Удалить все",
+ "loading": "Идет загрузка, пожалуйста подождите",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json
index b294ddec..c3263f31 100644
--- a/i18n/sr.i18n.json
+++ b/i18n/sr.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Prihvati",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Akcije",
- "activities": "Aktivnosti",
- "activity": "Aktivnost",
- "activity-added": "dodao %s u %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "prikačio %s u %s",
- "activity-created": "kreirao %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "izuzmi %s iz %s",
- "activity-imported": "uvezao %s u %s iz %s",
- "activity-imported-board": "uvezao %s iz %s",
- "activity-joined": "spojio %s",
- "activity-moved": "premestio %s iz %s u %s",
- "activity-on": "na %s",
- "activity-removed": "uklonio %s iz %s",
- "activity-sent": "poslao %s %s-u",
- "activity-unjoined": "rastavio %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "lista je dodata u %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Dodaj",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Dodaj novu stavku u listu",
- "add-cover": "Dodaj zaglavlje",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Dodaj Članove",
- "added": "Dodao",
- "addMemberPopup-title": "Članovi",
- "admin": "Administrator",
- "admin-desc": "Može da pregleda i menja kartice, uklanja članove i menja podešavanja table",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Sve table",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Primeni",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Arhiviraj",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Arhiviraj",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Dodeli člana",
- "attached": "Prikačeno",
- "attachment": "Prikačeni dokument",
- "attachment-delete-pop": "Brisanje prikačenog dokumenta je trajno. Ne postoji vraćanje obrisanog.",
- "attachmentDeletePopup-title": "Obrisati prikačeni dokument ?",
- "attachments": "Prikačeni dokumenti",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Nazad",
- "board-change-color": "Promeni boju",
- "board-nb-stars": "%s zvezdice",
- "board-not-found": "Tabla nije pronađena",
- "board-private-info": "Ova tabla će biti <strong>privatna<strong>.",
- "board-public-info": "Ova tabla će biti <strong>javna<strong>.",
- "boardChangeColorPopup-title": "Promeni pozadinu table",
- "boardChangeTitlePopup-title": "Preimenuj tablu",
- "boardChangeVisibilityPopup-title": "Promeni Vidljivost",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Table",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Na primer \"Lista zadataka\"",
- "cancel": "Otkaži",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Ova kartica ima %s komentar.",
- "card-delete-notice": "Brisanje je trajno. Izgubićeš sve akcije povezane sa ovom karticom.",
- "card-delete-pop": "Sve akcije će biti uklonjene sa liste aktivnosti i kartica neće moći biti ponovo otvorena. Nema vraćanja unazad.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Krajnji datum",
- "card-due-on": "Završava se",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Uredi priloge",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Uredi natpise",
- "card-edit-members": "Uredi članove",
- "card-labels-title": "Promeni natpis na kartici.",
- "card-members-title": "Dodaj ili ukloni članove table sa kartice.",
- "card-start": "Početak",
- "card-start-on": "Počinje",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Članovi",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Izmeni podešavanja",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Izmeni podešavanja",
- "subtasks": "Subtasks",
- "checklists": "Liste",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Pretraga",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Datum",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Datum",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Izmeni početni datum",
- "editCardDueDatePopup-title": "Izmeni krajnji datum",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Izmeni notifikaciju",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "Korisničko ime je već zauzeto",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "Nema oznake",
- "filter-no-member": "Nema člana",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Sakrij sistemske poruke",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Uvezi tablu iz Trella",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Mapiraj članove",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Neispravan datum",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Članovi",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Premesti na dno",
- "moveCardToTop-title": "Premesti na vrh",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Utišano",
- "muted-info": "Nećete biti obavešteni o promenama u ovoj tabli",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "Nema rezultata",
- "normal": "Normalno",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Budite obavešteni o novim događajima u tablama, listama ili karticama koje pratite.",
- "optional": "opciono",
- "or": "ili",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Stranica nije pronađena.",
- "password": "Lozinka",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Učestvujem",
- "preview": "Prikaz",
- "previewAttachedImagePopup-title": "Prikaz",
- "previewClipboardImagePopup-title": "Prikaz",
- "private": "Privatno",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profil",
- "public": "Javno",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Ukloni iz table",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Ukloni člana",
- "remove-member-from-card": "Ukloni iz kartice",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Ukloni člana ?",
- "rename": "Preimenuj",
- "rename-board": "Preimenuj tablu",
- "restore": "Oporavi",
- "save": "Snimi",
- "search": "Pretraga",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Pridruži sebe trenutnoj kartici",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Sam popuni članove",
- "shortcut-clear-filters": "Očisti sve filtere",
- "shortcut-close-dialog": "Zatvori dijalog",
- "shortcut-filter-my-cards": "Filtriraj kartice",
- "shortcut-show-shortcuts": "Prikaži ovu listu prečica",
- "shortcut-toggle-filterbar": "Uključi ili isključi bočni meni filtera",
- "shortcut-toggle-sidebar": "Uključi ili isključi bočni meni table",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Kreiraj nalog",
- "star-board-title": "Klikni da označiš zvezdicom ovu tablu. Pokazaće se na vrhu tvoje liste tabli.",
- "starred-boards": "Table sa zvezdicom",
- "starred-boards-description": "Table sa zvezdicom se pokazuju na vrhu liste tabli.",
- "subscribe": "Pretplati se",
- "team": "Tim",
- "this-board": "ova tabla",
- "this-card": "ova kartica",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Vreme",
- "title": "Naslov",
- "tracking": "Praćenje",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "Imaš nesnimljen opis.",
- "unwatch": "Ne posmatraj",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Korisničko ime",
- "view-it": "Pregledaj je",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Posmatraj",
- "watching": "Posmatranje",
- "watching-info": "Bićete obavešteni o promenama u ovoj tabli",
- "welcome-board": "Tabla dobrodošlice",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Osnove",
- "welcome-list2": "Napredno",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Šta želiš da uradiš ?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Korisničko ime",
- "smtp-password": "Lozinka",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Dodaj",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Prihvati",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Akcije",
+ "activities": "Aktivnosti",
+ "activity": "Aktivnost",
+ "activity-added": "dodao %s u %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "prikačio %s u %s",
+ "activity-created": "kreirao %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "izuzmi %s iz %s",
+ "activity-imported": "uvezao %s u %s iz %s",
+ "activity-imported-board": "uvezao %s iz %s",
+ "activity-joined": "spojio %s",
+ "activity-moved": "premestio %s iz %s u %s",
+ "activity-on": "na %s",
+ "activity-removed": "uklonio %s iz %s",
+ "activity-sent": "poslao %s %s-u",
+ "activity-unjoined": "rastavio %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "lista je dodata u %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Dodaj",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Dodaj novu stavku u listu",
+ "add-cover": "Dodaj zaglavlje",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Dodaj Članove",
+ "added": "Dodao",
+ "addMemberPopup-title": "Članovi",
+ "admin": "Administrator",
+ "admin-desc": "Može da pregleda i menja kartice, uklanja članove i menja podešavanja table",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Sve table",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Primeni",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Arhiviraj",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Arhiviraj",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Dodeli člana",
+ "attached": "Prikačeno",
+ "attachment": "Prikačeni dokument",
+ "attachment-delete-pop": "Brisanje prikačenog dokumenta je trajno. Ne postoji vraćanje obrisanog.",
+ "attachmentDeletePopup-title": "Obrisati prikačeni dokument ?",
+ "attachments": "Prikačeni dokumenti",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Nazad",
+ "board-change-color": "Promeni boju",
+ "board-nb-stars": "%s zvezdice",
+ "board-not-found": "Tabla nije pronađena",
+ "board-private-info": "Ova tabla će biti <strong>privatna<strong>.",
+ "board-public-info": "Ova tabla će biti <strong>javna<strong>.",
+ "boardChangeColorPopup-title": "Promeni pozadinu table",
+ "boardChangeTitlePopup-title": "Preimenuj tablu",
+ "boardChangeVisibilityPopup-title": "Promeni Vidljivost",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Table",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Na primer \"Lista zadataka\"",
+ "cancel": "Otkaži",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Ova kartica ima %s komentar.",
+ "card-delete-notice": "Brisanje je trajno. Izgubićeš sve akcije povezane sa ovom karticom.",
+ "card-delete-pop": "Sve akcije će biti uklonjene sa liste aktivnosti i kartica neće moći biti ponovo otvorena. Nema vraćanja unazad.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Krajnji datum",
+ "card-due-on": "Završava se",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Uredi priloge",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Uredi natpise",
+ "card-edit-members": "Uredi članove",
+ "card-labels-title": "Promeni natpis na kartici.",
+ "card-members-title": "Dodaj ili ukloni članove table sa kartice.",
+ "card-start": "Početak",
+ "card-start-on": "Počinje",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Članovi",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Izmeni podešavanja",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Izmeni podešavanja",
+ "subtasks": "Subtasks",
+ "checklists": "Liste",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Pretraga",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Datum",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Datum",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Izmeni početni datum",
+ "editCardDueDatePopup-title": "Izmeni krajnji datum",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Izmeni notifikaciju",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "Korisničko ime je već zauzeto",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "Nema oznake",
+ "filter-no-member": "Nema člana",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Sakrij sistemske poruke",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Uvezi tablu iz Trella",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Mapiraj članove",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Neispravan datum",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Članovi",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Premesti na dno",
+ "moveCardToTop-title": "Premesti na vrh",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Utišano",
+ "muted-info": "Nećete biti obavešteni o promenama u ovoj tabli",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "Nema rezultata",
+ "normal": "Normalno",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Budite obavešteni o novim događajima u tablama, listama ili karticama koje pratite.",
+ "optional": "opciono",
+ "or": "ili",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Stranica nije pronađena.",
+ "password": "Lozinka",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Učestvujem",
+ "preview": "Prikaz",
+ "previewAttachedImagePopup-title": "Prikaz",
+ "previewClipboardImagePopup-title": "Prikaz",
+ "private": "Privatno",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profil",
+ "public": "Javno",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Ukloni iz table",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Ukloni člana",
+ "remove-member-from-card": "Ukloni iz kartice",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Ukloni člana ?",
+ "rename": "Preimenuj",
+ "rename-board": "Preimenuj tablu",
+ "restore": "Oporavi",
+ "save": "Snimi",
+ "search": "Pretraga",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Pridruži sebe trenutnoj kartici",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Sam popuni članove",
+ "shortcut-clear-filters": "Očisti sve filtere",
+ "shortcut-close-dialog": "Zatvori dijalog",
+ "shortcut-filter-my-cards": "Filtriraj kartice",
+ "shortcut-show-shortcuts": "Prikaži ovu listu prečica",
+ "shortcut-toggle-filterbar": "Uključi ili isključi bočni meni filtera",
+ "shortcut-toggle-sidebar": "Uključi ili isključi bočni meni table",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Kreiraj nalog",
+ "star-board-title": "Klikni da označiš zvezdicom ovu tablu. Pokazaće se na vrhu tvoje liste tabli.",
+ "starred-boards": "Table sa zvezdicom",
+ "starred-boards-description": "Table sa zvezdicom se pokazuju na vrhu liste tabli.",
+ "subscribe": "Pretplati se",
+ "team": "Tim",
+ "this-board": "ova tabla",
+ "this-card": "ova kartica",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Vreme",
+ "title": "Naslov",
+ "tracking": "Praćenje",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "Imaš nesnimljen opis.",
+ "unwatch": "Ne posmatraj",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Korisničko ime",
+ "view-it": "Pregledaj je",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Posmatraj",
+ "watching": "Posmatranje",
+ "watching-info": "Bićete obavešteni o promenama u ovoj tabli",
+ "welcome-board": "Tabla dobrodošlice",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Osnove",
+ "welcome-list2": "Napredno",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Šta želiš da uradiš ?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Korisničko ime",
+ "smtp-password": "Lozinka",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Dodaj",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/sv.i18n.json b/i18n/sv.i18n.json
index 08aa6b70..4797a49e 100644
--- a/i18n/sv.i18n.json
+++ b/i18n/sv.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Acceptera",
- "act-activity-notify": "Aktivitetsnotifikation",
- "act-addAttachment": "lade till bifogad fil __attachment__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-deleteAttachment": "raderade bifogad fil __attachment__ från kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-addSubtask": "lade till underaktivitet __subtask__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-addLabel": "lade till etikett __label__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-addedLabel": "lade till etikett __label__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-removeLabel": "Tog bort etikett __label__ från kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-removedLabel": "Tog bort etikett __label__ från kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-addChecklist": "lade till checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-addChecklistItem": "lade till checklistobjekt __checklistItem__ till checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-removeChecklist": "tag bort checklista __checklist__ från kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-removeChecklistItem": "tog bort checklistobjekt __checklistItem__ från __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-checkedItem": "bockade av __checklistItem__ från checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-uncheckedItem": "avmarkerade __checklistItem__ från checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-completeChecklist": "slutförde checklista __checklist__ i kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-uncompleteChecklist": "ofullbordade checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-addComment": "kommenterade på kort __card__: __comment__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "skapade anslagstavla __board__",
- "act-createSwimlane": "skapade simbana __swimlane__ till anslagstavla __board__",
- "act-createCard": "skapade kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "lade till lista __list__ på anslagstavla __board__",
- "act-addBoardMember": "lade till medlem __member__ på anslagstavla __board__",
- "act-archivedBoard": "Anslagstavla __board__ flyttad till arkivet",
- "act-archivedCard": "Kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__ flyttad till arkivet",
- "act-archivedList": "Lista __list__ i simbana __swimlane__ på anslagstavla __board__ flyttad till arkivet",
- "act-archivedSwimlane": "Simbana __swimlane__ på anslagstavla __board__ flyttad till arkivet",
- "act-importBoard": "importerade board __board__",
- "act-importCard": "importerade kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-importList": "importerade lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-joinMember": "lade till medlem __member__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-moveCard": "flyttade kort __card__ på anslagstavla __board__ från lista __oldList__ i sambana __oldSwimlane__ till lista list __list__ i simbana __swimlane__",
- "act-moveCardToOtherBoard": "flyttade kort __card__ från lista __oldList__ i simbana __oldSwimlane__ på tavla __oldBoard__ till lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-removeBoardMember": "borttagen medlem __member__  från anslagstavla __board__",
- "act-restoredCard": "återställde kort __card__ till lista __lis__ i simbana __swimlane__ på anslagstavla __board__",
- "act-unjoinMember": "tog bort medlem __member__ från kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Åtgärder",
- "activities": "Aktiviteter",
- "activity": "Aktivitet",
- "activity-added": "Lade %s till %s",
- "activity-archived": "%s flyttades till Arkiv",
- "activity-attached": "bifogade %s to %s",
- "activity-created": "skapade %s",
- "activity-customfield-created": "skapa anpassat fält %s",
- "activity-excluded": "exkluderade %s från %s",
- "activity-imported": "importerade %s till %s från %s",
- "activity-imported-board": "importerade %s från %s",
- "activity-joined": "anslöt sig till %s",
- "activity-moved": "tog bort %s från %s till %s",
- "activity-on": "på %s",
- "activity-removed": "tog bort %s från %s",
- "activity-sent": "skickade %s till %s",
- "activity-unjoined": "gick ur %s",
- "activity-subtask-added": "lade till deluppgift till %s",
- "activity-checked-item": "kryssad %s i checklistan %s av %s",
- "activity-unchecked-item": "okryssad %s i checklistan %s av %s",
- "activity-checklist-added": "lade kontrollista till %s",
- "activity-checklist-removed": "tog bort en checklista från %s",
- "activity-checklist-completed": "slutförde checklista __checklist__ i kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "activity-checklist-uncompleted": "inte slutfört checklistan %s av %s",
- "activity-checklist-item-added": "lade checklista objekt till '%s' i %s",
- "activity-checklist-item-removed": "tog bort en checklista objekt från \"%s\" i %s",
- "add": "Lägg till",
- "activity-checked-item-card": "kryssad %s i checklistan %s",
- "activity-unchecked-item-card": "okryssad %s i checklistan %s",
- "activity-checklist-completed-card": "slutförde checklista __checklist__ i kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
- "activity-checklist-uncompleted-card": "icke slutfört checklistan %s",
- "add-attachment": "Lägg till bilaga",
- "add-board": "Lägg till anslagstavla",
- "add-card": "Lägg till kort",
- "add-swimlane": "Lägg till simbana",
- "add-subtask": "Lägg till deluppgift",
- "add-checklist": "Lägg till checklista",
- "add-checklist-item": "Lägg till ett objekt till kontrollista",
- "add-cover": "Lägg till omslag",
- "add-label": "Lägg till etikett",
- "add-list": "Lägg till lista",
- "add-members": "Lägg till medlemmar",
- "added": "Lades till",
- "addMemberPopup-title": "Medlemmar",
- "admin": "Adminstratör",
- "admin-desc": "Kan visa och redigera kort, ta bort medlemmar och ändra inställningarna för anslagstavlan.",
- "admin-announcement": "Meddelande",
- "admin-announcement-active": "Aktivt system-brett meddelande",
- "admin-announcement-title": "Meddelande från administratör",
- "all-boards": "Alla anslagstavlor",
- "and-n-other-card": "Och __count__ annat kort",
- "and-n-other-card_plural": "Och __count__ andra kort",
- "apply": "Tillämpa",
- "app-is-offline": "Läser in, vänligen vänta. Uppdatering av sidan kommer att orsaka förlust av data. Om inläsningen inte fungerar, kontrollera att servern inte har stoppats.",
- "archive": "Flytta till Arkiv",
- "archive-all": "Flytta alla till Arkiv",
- "archive-board": "Flytta Anslagstavla till Arkiv",
- "archive-card": "Flytta kort till Arkiv",
- "archive-list": "Flytta Lista till Arkiv",
- "archive-swimlane": "Flytta simbanan till arkivet",
- "archive-selection": "Flytta markerad till Arkiv",
- "archiveBoardPopup-title": "Flytta Anslagstavla till Arkiv?",
- "archived-items": "Arkiv",
- "archived-boards": "Anslagstavlor i Arkiv",
- "restore-board": "Återställ anslagstavla",
- "no-archived-boards": "Inga anslagstavlor i Arkiv.",
- "archives": "Arkiv",
- "template": "Mall",
- "templates": "Mallar",
- "assign-member": "Tilldela medlem",
- "attached": "bifogad",
- "attachment": "Bilaga",
- "attachment-delete-pop": "Ta bort en bilaga är permanent. Det går inte att ångra.",
- "attachmentDeletePopup-title": "Ta bort bilaga?",
- "attachments": "Bilagor",
- "auto-watch": "Bevaka automatiskt anslagstavlor när de skapas",
- "avatar-too-big": "Avatar är för stor (70KB max)",
- "back": "Tillbaka",
- "board-change-color": "Ändra färg",
- "board-nb-stars": "%s stjärnor",
- "board-not-found": "Anslagstavla hittades inte",
- "board-private-info": "Denna anslagstavla kommer att vara <strong>privat</strong>.",
- "board-public-info": "Denna anslagstavla kommer att vara <strong>officiell</strong>.",
- "boardChangeColorPopup-title": "Ändra bakgrund på anslagstavla",
- "boardChangeTitlePopup-title": "Byt namn på anslagstavla",
- "boardChangeVisibilityPopup-title": "Ändra synlighet",
- "boardChangeWatchPopup-title": "Ändra bevaka",
- "boardMenuPopup-title": "Anslagstavlans inställningar",
- "boards": "Anslagstavlor",
- "board-view": "Anslagstavelsvy",
- "board-view-cal": "Kalender",
- "board-view-swimlanes": "Simbanor",
- "board-view-lists": "Listor",
- "bucket-example": "Gilla \"att-göra-innan-jag-dör-lista\" till exempel",
- "cancel": "Avbryt",
- "card-archived": "Detta kort är flyttat till Arkiv.",
- "board-archived": "Den här anslagstavlan är flyttad till Arkiv.",
- "card-comments-title": "Detta kort har %s kommentar.",
- "card-delete-notice": "Ta bort är permanent. Du kommer att förlora alla åtgärder i samband med detta kort.",
- "card-delete-pop": "Alla åtgärder kommer att tas bort från aktivitetsflöde och du kommer inte att kunna öppna kortet igen. Det går inte att ångra.",
- "card-delete-suggest-archive": "Du kan flytta ett kort för att Arkiv för att ta bort det från anslagstavlan och bevara aktiviteten.",
- "card-due": "Förfaller",
- "card-due-on": "Förfaller på",
- "card-spent": "Spenderad tid",
- "card-edit-attachments": "Redigera bilaga",
- "card-edit-custom-fields": "Redigera anpassade fält",
- "card-edit-labels": "Redigera etiketter",
- "card-edit-members": "Redigera medlemmar",
- "card-labels-title": "Ändra etiketter för kortet.",
- "card-members-title": "Lägg till eller ta bort medlemmar av anslagstavlan från kortet.",
- "card-start": "Börja",
- "card-start-on": "Börja med",
- "cardAttachmentsPopup-title": "Bifoga från",
- "cardCustomField-datePopup-title": "Ändra datum",
- "cardCustomFieldsPopup-title": "Redigera anpassade fält",
- "cardDeletePopup-title": "Ta bort kort?",
- "cardDetailsActionsPopup-title": "Kortåtgärder",
- "cardLabelsPopup-title": "Etiketter",
- "cardMembersPopup-title": "Medlemmar",
- "cardMorePopup-title": "Mera",
- "cardTemplatePopup-title": "Skapa mall",
- "cards": "Kort",
- "cards-count": "Kort",
- "casSignIn": "Logga in med CAS",
- "cardType-card": "Kort",
- "cardType-linkedCard": "Länkat kort",
- "cardType-linkedBoard": "Länkad anslagstavla",
- "change": "Ändra",
- "change-avatar": "Ändra avatar",
- "change-password": "Ändra lösenord",
- "change-permissions": "Ändra behörigheter",
- "change-settings": "Ändra inställningar",
- "changeAvatarPopup-title": "Ändra avatar",
- "changeLanguagePopup-title": "Ändra språk",
- "changePasswordPopup-title": "Ändra lösenord",
- "changePermissionsPopup-title": "Ändra behörigheter",
- "changeSettingsPopup-title": "Ändra inställningar",
- "subtasks": "Deluppgifter",
- "checklists": "Kontrollistor",
- "click-to-star": "Klicka för att stjärnmärka denna anslagstavla.",
- "click-to-unstar": "Klicka för att ta bort stjärnmärkningen från denna anslagstavla.",
- "clipboard": "Urklipp eller dra och släpp",
- "close": "Stäng",
- "close-board": "Stäng anslagstavla",
- "close-board-pop": "Du kommer att kunna återställa anslagstavlan genom att klicka på knappen \"Arkiv\" från hemrubriken.",
- "color-black": "svart",
- "color-blue": "blå",
- "color-crimson": "mörkröd",
- "color-darkgreen": "mörkgrön",
- "color-gold": "guld",
- "color-gray": "grå",
- "color-green": "grön",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "ljusrosa",
- "color-navy": "marinblå",
- "color-orange": "orange",
- "color-paleturquoise": "turkos",
- "color-peachpuff": "ersika",
- "color-pink": "rosa",
- "color-plum": "lila",
- "color-purple": "lila",
- "color-red": "röd",
- "color-saddlebrown": "sadelbrun",
- "color-silver": "silver",
- "color-sky": "himmel",
- "color-slateblue": "skifferblå",
- "color-white": "vit",
- "color-yellow": "gul",
- "unset-color": "Urkoppla",
- "comment": "Kommentera",
- "comment-placeholder": "Skriv kommentar",
- "comment-only": "Kommentera endast",
- "comment-only-desc": "Kan endast kommentera kort.",
- "no-comments": "Inga kommentarer",
- "no-comments-desc": "Kan inte se kommentarer och aktiviteter.",
- "computer": "Dator",
- "confirm-subtask-delete-dialog": "Är du säker på att du vill radera deluppgift?",
- "confirm-checklist-delete-dialog": "Är du säker på att du vill radera checklista?",
- "copy-card-link-to-clipboard": "Kopiera kortlänk till urklipp",
- "linkCardPopup-title": "Länka kort",
- "searchElementPopup-title": "Sök",
- "copyCardPopup-title": "Kopiera kort",
- "copyChecklistToManyCardsPopup-title": "Kopiera checklist-mallen till flera kort",
- "copyChecklistToManyCardsPopup-instructions": "Destinationskorttitlar och beskrivningar i detta JSON-format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Första kortets titel\", \"description\":\"Första kortets beskrivning\"}, {\"title\":\"Andra kortets titel\",\"description\":\"Andra kortets beskrivning\"},{\"title\":\"Sista kortets titel\",\"description\":\"Sista kortets beskrivning\"} ]",
- "create": "Skapa",
- "createBoardPopup-title": "Skapa anslagstavla",
- "chooseBoardSourcePopup-title": "Importera anslagstavla",
- "createLabelPopup-title": "Skapa etikett",
- "createCustomField": "Skapa fält",
- "createCustomFieldPopup-title": "Skapa fält",
- "current": "aktuell",
- "custom-field-delete-pop": "Det går inte att ångra. Detta tar bort det här anpassade fältet från alla kort och förstör dess historia.",
- "custom-field-checkbox": "Kryssruta",
- "custom-field-date": "Datum",
- "custom-field-dropdown": "Rullgardingsmeny",
- "custom-field-dropdown-none": "(inga)",
- "custom-field-dropdown-options": "Listalternativ",
- "custom-field-dropdown-options-placeholder": "Tryck på enter för att lägga till fler alternativ",
- "custom-field-dropdown-unknown": "(okänd)",
- "custom-field-number": "Nummer",
- "custom-field-text": "Text",
- "custom-fields": "Anpassade fält",
- "date": "Datum",
- "decline": "Nedgång",
- "default-avatar": "Standard avatar",
- "delete": "Ta bort",
- "deleteCustomFieldPopup-title": "Ta bort anpassade fält?",
- "deleteLabelPopup-title": "Ta bort etikett?",
- "description": "Beskrivning",
- "disambiguateMultiLabelPopup-title": "Otvetydig etikettåtgärd",
- "disambiguateMultiMemberPopup-title": "Otvetydig medlemsåtgärd",
- "discard": "Kassera",
- "done": "Färdig",
- "download": "Hämta",
- "edit": "Redigera",
- "edit-avatar": "Ändra avatar",
- "edit-profile": "Redigera profil",
- "edit-wip-limit": "Redigera WIP-gränsen",
- "soft-wip-limit": "Mjuk WIP-gräns",
- "editCardStartDatePopup-title": "Ändra startdatum",
- "editCardDueDatePopup-title": "Ändra förfallodatum",
- "editCustomFieldPopup-title": "Redigera fält",
- "editCardSpentTimePopup-title": "Ändra spenderad tid",
- "editLabelPopup-title": "Ändra etikett",
- "editNotificationPopup-title": "Redigera avisering",
- "editProfilePopup-title": "Redigera profil",
- "email": "E-post",
- "email-enrollAccount-subject": "Ett konto skapas för dig på __siteName__",
- "email-enrollAccount-text": "Hej __user__,\n\nFör att börja använda tjänsten, klicka på länken nedan.\n\n__url__\n\nTack.",
- "email-fail": "Sändning av e-post misslyckades",
- "email-fail-text": "Ett fel vid försök att skicka e-post",
- "email-invalid": "Ogiltig e-post",
- "email-invite": "Bjud in via e-post",
- "email-invite-subject": "__inviter__ skickade dig en inbjudan",
- "email-invite-text": "Bästa __user__,\n\n__inviter__ inbjuder dig till anslagstavlan \"__board__\" för samarbete.\n\nFölj länken nedan:\n\n__url__\n\nTack.",
- "email-resetPassword-subject": "Återställa lösenordet för __siteName__",
- "email-resetPassword-text": "Hej __user__,\n\nFör att återställa ditt lösenord, klicka på länken nedan.\n\n__url__\n\nTack.",
- "email-sent": "E-post skickad",
- "email-verifyEmail-subject": "Verifiera din e-post adress på __siteName__",
- "email-verifyEmail-text": "Hej __user__,\n\nFör att verifiera din konto e-post, klicka på länken nedan.\n\n__url__\n\nTack.",
- "enable-wip-limit": "Aktivera WIP-gräns",
- "error-board-doesNotExist": "Denna anslagstavla finns inte",
- "error-board-notAdmin": "Du måste vara administratör för denna anslagstavla för att göra det",
- "error-board-notAMember": "Du måste vara medlem i denna anslagstavla för att göra det",
- "error-json-malformed": "Din text är inte giltigt JSON",
- "error-json-schema": "Din JSON data inkluderar inte korrekt information i rätt format",
- "error-list-doesNotExist": "Denna lista finns inte",
- "error-user-doesNotExist": "Denna användare finns inte",
- "error-user-notAllowSelf": "Du kan inte bjuda in dig själv",
- "error-user-notCreated": "Den här användaren har inte skapats",
- "error-username-taken": "Detta användarnamn är redan taget",
- "error-email-taken": "E-post har redan tagits",
- "export-board": "Exportera anslagstavla",
- "filter": "Filtrera",
- "filter-cards": "Filtrera kort",
- "filter-clear": "Rensa filter",
- "filter-no-label": "Ingen etikett",
- "filter-no-member": "Ingen medlem",
- "filter-no-custom-fields": "Inga anpassade fält",
- "filter-on": "Filter är på",
- "filter-on-desc": "Du filtrerar kort på denna anslagstavla. Klicka här för att redigera filter.",
- "filter-to-selection": "Filter till val",
- "advanced-filter-label": "Avancerat filter",
- "advanced-filter-description": "Avancerade filter låter dig skriva en sträng innehållande följande operatorer: == != <= >= && || ( ). Ett mellanslag används som separator mellan operatorerna. Du kan filtrera alla specialfält genom att skriva dess namn och värde. Till exempel: Fält1 == Vårde1. Notera: om fälten eller värden innehåller mellanrum behöver du innesluta dem med enkla citatstecken. Till exempel: 'Fält 1' == 'Värde 1'. För att skippa enkla kontrolltecken (' \\/) kan du använda \\. Till exempel: Fält1 == I\\'m. Du kan även kombinera fler villkor. TIll exempel: F1 == V1 || F1 == V2. Vanligtvis läses operatorerna från vänster till höger. Du kan ändra ordning genom att använda paranteser. TIll exempel: F1 == V1 && ( F2 == V2 || F2 == V3 ). Du kan även söka efter textfält med hjälp av regex: F1 == /Tes.*/i",
- "fullname": "Namn",
- "header-logo-title": "Gå tillbaka till din anslagstavlor-sida.",
- "hide-system-messages": "Dölj systemmeddelanden",
- "headerBarCreateBoardPopup-title": "Skapa anslagstavla",
- "home": "Hem",
- "import": "Importera",
- "link": "Länk",
- "import-board": "importera anslagstavla",
- "import-board-c": "Importera anslagstavla",
- "import-board-title-trello": "Importera anslagstavla från Trello",
- "import-board-title-wekan": "Importera anslagstavla från tidigare export",
- "import-sandstorm-backup-warning": "Ta inte bort data som du importerar från exporterad original-tavla eller Trello innan du kontrollerar att det här spannet stänger och öppnas igen, eller får du felmeddelandet Anslagstavla hittades inte, det vill säga dataförlust.",
- "import-sandstorm-warning": "Importerad anslagstavla raderar all befintlig data på anslagstavla och ersätter den med importerat anslagstavla.",
- "from-trello": "Från Trello",
- "from-wekan": "Från tidigare export",
- "import-board-instruction-trello": "I din Trello-anslagstavla, gå till 'Meny', sedan 'Mera', 'Skriv ut och exportera', 'Exportera JSON' och kopiera den resulterande text.",
- "import-board-instruction-wekan": "På din anslagstavla, gå till \"Meny\", sedan \"Exportera anslagstavla\" och kopiera texten i den hämtade filen.",
- "import-board-instruction-about-errors": "Om du får fel vid import av anslagstavla, ibland importerar fortfarande fungerar, och styrelsen är på alla sidor för anslagstavlor.",
- "import-json-placeholder": "Klistra in giltigt JSON data här",
- "import-map-members": "Kartlägg medlemmar",
- "import-members-map": "Din importerade anslagstavla har några medlemmar. Vänligen kartlägg medlemmarna du vill importera till dina användare",
- "import-show-user-mapping": "Granska medlemskartläggning",
- "import-user-select": "Välj din befintliga användare du vill använda som den här medlemmen",
- "importMapMembersAddPopup-title": "Välj medlem",
- "info": "Version",
- "initials": "Initialer",
- "invalid-date": "Ogiltigt datum",
- "invalid-time": "Ogiltig tid",
- "invalid-user": "Ogiltig användare",
- "joined": "gick med",
- "just-invited": "Du blev nyss inbjuden till denna anslagstavla",
- "keyboard-shortcuts": "Tangentbordsgenvägar",
- "label-create": "Skapa etikett",
- "label-default": "%s etikett (standard)",
- "label-delete-pop": "Det finns ingen ångra. Detta tar bort denna etikett från alla kort och förstöra dess historik.",
- "labels": "Etiketter",
- "language": "Språk",
- "last-admin-desc": "Du kan inte ändra roller för det måste finnas minst en administratör.",
- "leave-board": "Lämna anslagstavla",
- "leave-board-pop": "Är du säker på att du vill lämna __boardTitle__? Du kommer att tas bort från alla kort på den här anslagstavlan.",
- "leaveBoardPopup-title": "Lämna anslagstavla ?",
- "link-card": "Länk till detta kort",
- "list-archive-cards": "Flytta alla kort i den här listan till Arkiv",
- "list-archive-cards-pop": "Detta kommer att ta bort alla kort i denna lista från anslagstavlan. För att visa kort i Arkiv och få dem tillbaka till anslagstavlan, klicka på \"Meny\" > \"Arkiv\".",
- "list-move-cards": "Flytta alla kort i denna lista",
- "list-select-cards": "Välj alla kort i denna lista",
- "set-color-list": "Ange färg",
- "listActionPopup-title": "Liståtgärder",
- "swimlaneActionPopup-title": "Simbana-åtgärder",
- "swimlaneAddPopup-title": "Lägg till en simbana nedan",
- "listImportCardPopup-title": "Importera ett Trello kort",
- "listMorePopup-title": "Mera",
- "link-list": "Länk till den här listan",
- "list-delete-pop": "Alla åtgärder kommer att tas bort från aktivitetsmatningen och du kommer inte att kunna återställa listan. Det går inte att ångra.",
- "list-delete-suggest-archive": "Du kan flytta en lista till Arkiv för att ta bort den från anslagstavlan och bevara aktiviteten.",
- "lists": "Listor",
- "swimlanes": "Simbanor",
- "log-out": "Logga ut",
- "log-in": "Logga in",
- "loginPopup-title": "Logga in",
- "memberMenuPopup-title": "Användarinställningar",
- "members": "Medlemmar",
- "menu": "Meny",
- "move-selection": "Flytta vald",
- "moveCardPopup-title": "Flytta kort",
- "moveCardToBottom-title": "Flytta längst ner",
- "moveCardToTop-title": "Flytta högst upp",
- "moveSelectionPopup-title": "Flytta vald",
- "multi-selection": "Flerval",
- "multi-selection-on": "Flerval är på",
- "muted": "Tystad",
- "muted-info": "Du kommer aldrig att meddelas om eventuella ändringar i denna anslagstavla",
- "my-boards": "Mina anslagstavlor",
- "name": "Namn",
- "no-archived-cards": "Inga kort i Arkiv.",
- "no-archived-lists": "Inga listor i Arkiv.",
- "no-archived-swimlanes": "Inga simbanor i arkivet.",
- "no-results": "Inga reslutat",
- "normal": "Normal",
- "normal-desc": "Kan se och redigera kort. Kan inte ändra inställningar.",
- "not-accepted-yet": "Inbjudan inte ännu accepterad",
- "notify-participate": "Få uppdateringar till alla kort du deltar i som skapare eller medlem",
- "notify-watch": "Få uppdateringar till alla anslagstavlor, listor, eller kort du bevakar",
- "optional": "valfri",
- "or": "eller",
- "page-maybe-private": "Denna sida kan vara privat. Du kanske kan se den genom att <a href='%s'>logga in</a>.",
- "page-not-found": "Sidan hittades inte.",
- "password": "Lösenord",
- "paste-or-dragdrop": "klistra in eller dra och släpp bildfil till den (endast bilder)",
- "participating": "Deltagande",
- "preview": "Förhandsvisning",
- "previewAttachedImagePopup-title": "Förhandsvisning",
- "previewClipboardImagePopup-title": "Förhandsvisning",
- "private": "Privat",
- "private-desc": "Denna anslagstavla är privat. Endast personer tillagda till anslagstavlan kan se och redigera den.",
- "profile": "Profil",
- "public": "Officiell",
- "public-desc": "Denna anslagstavla är offentlig. Den är synligt för alla med länken och kommer att dyka upp i sökmotorer som Google. Endast personer tillagda till anslagstavlan kan redigera.",
- "quick-access-description": "Stjärnmärk en anslagstavla för att lägga till en genväg i detta fält.",
- "remove-cover": "Ta bort omslag",
- "remove-from-board": "Ta bort från anslagstavla",
- "remove-label": "Ta bort etikett",
- "listDeletePopup-title": "Ta bort lista",
- "remove-member": "Ta bort medlem",
- "remove-member-from-card": "Ta bort från kort",
- "remove-member-pop": "Ta bort __name__ (__username__) från __boardTitle__? Medlemmen kommer att bli borttagen från alla kort i denna anslagstavla. De kommer att få en avisering.",
- "removeMemberPopup-title": "Ta bort medlem?",
- "rename": "Byt namn",
- "rename-board": "Byt namn på anslagstavla",
- "restore": "Återställ",
- "save": "Spara",
- "search": "Sök",
- "rules": "Regler",
- "search-cards": "Sök från korttitlar och beskrivningar på den här anslagstavlan",
- "search-example": "Text att söka efter?",
- "select-color": "Välj färg",
- "set-wip-limit-value": "Ange en gräns för det maximala antalet uppgifter i den här listan",
- "setWipLimitPopup-title": "Ställ in WIP-gräns",
- "shortcut-assign-self": "Tilldela dig nuvarande kort",
- "shortcut-autocomplete-emoji": "Komplettera automatiskt emoji",
- "shortcut-autocomplete-members": "Komplettera automatiskt medlemmar",
- "shortcut-clear-filters": "Rensa alla filter",
- "shortcut-close-dialog": "Stäng dialog",
- "shortcut-filter-my-cards": "Filtrera mina kort",
- "shortcut-show-shortcuts": "Ta fram denna genvägslista",
- "shortcut-toggle-filterbar": "Växla filtrets sidofält",
- "shortcut-toggle-sidebar": "Växla anslagstavlans sidofält",
- "show-cards-minimum-count": "Visa kortantal om listan innehåller mer än",
- "sidebar-open": "Stäng sidofält",
- "sidebar-close": "Stäng sidofält",
- "signupPopup-title": "Skapa ett konto",
- "star-board-title": "Klicka för att stjärnmärka denna anslagstavla. Den kommer att visas högst upp på din lista över anslagstavlor.",
- "starred-boards": "Stjärnmärkta anslagstavlor",
- "starred-boards-description": "Stjärnmärkta anslagstavlor visas högst upp på din lista över anslagstavlor.",
- "subscribe": "Prenumenera",
- "team": "Grupp",
- "this-board": "denna anslagstavla",
- "this-card": "detta kort",
- "spent-time-hours": "Spenderad tid (timmar)",
- "overtime-hours": "Övertid (timmar)",
- "overtime": "Övertid",
- "has-overtime-cards": "Har övertidskort",
- "has-spenttime-cards": "Har spenderat tidkort",
- "time": "Tid",
- "title": "Titel",
- "tracking": "Spåra",
- "tracking-info": "Du kommer att meddelas om eventuella ändringar av dessa kort du deltar i som skapare eller medlem.",
- "type": "Skriv",
- "unassign-member": "Ta bort tilldelad medlem",
- "unsaved-description": "Du har en osparad beskrivning.",
- "unwatch": "Avbevaka",
- "upload": "Ladda upp",
- "upload-avatar": "Ladda upp en avatar",
- "uploaded-avatar": "Laddade upp en avatar",
- "username": "Änvandarnamn",
- "view-it": "Visa det",
- "warn-list-archived": "varning: detta kort finns i en lista i Arkiv",
- "watch": "Bevaka",
- "watching": "Bevaka",
- "watching-info": "Du kommer att meddelas om alla ändringar på denna anslagstavla",
- "welcome-board": "Välkomstanslagstavla",
- "welcome-swimlane": "Milstolpe 1",
- "welcome-list1": "Grunderna",
- "welcome-list2": "Avancerad",
- "card-templates-swimlane": "Kortmallar",
- "list-templates-swimlane": "Listmalla",
- "board-templates-swimlane": "Tavelmallar",
- "what-to-do": "Vad vill du göra?",
- "wipLimitErrorPopup-title": "Ogiltig WIP-gräns",
- "wipLimitErrorPopup-dialog-pt1": "Antalet uppgifter i den här listan är högre än WIP-gränsen du har definierat.",
- "wipLimitErrorPopup-dialog-pt2": "Flytta några uppgifter ur listan, eller ställ in en högre WIP-gräns.",
- "admin-panel": "Administratörspanel",
- "settings": "Inställningar",
- "people": "Personer",
- "registration": "Registrering",
- "disable-self-registration": "Avaktiverar självregistrering",
- "invite": "Bjud in",
- "invite-people": "Bjud in personer",
- "to-boards": "Till anslagstavl(a/or)",
- "email-addresses": "E-post adresser",
- "smtp-host-description": "Adressen till SMTP-servern som hanterar din e-post.",
- "smtp-port-description": "Porten SMTP-servern använder för utgående e-post.",
- "smtp-tls-description": "Aktivera TLS-stöd för SMTP-server",
- "smtp-host": "SMTP-värd",
- "smtp-port": "SMTP-port",
- "smtp-username": "Användarnamn",
- "smtp-password": "Lösenord",
- "smtp-tls": "TLS-stöd",
- "send-from": "Från",
- "send-smtp-test": "Skicka ett prov e-postmeddelande till dig själv",
- "invitation-code": "Inbjudningskod",
- "email-invite-register-subject": "__inviter__ skickade dig en inbjudan",
- "email-invite-register-text": "Kära__user__,\n\n__inviter__ bjuder in dig att samarbeta på kanban-anslagstavlan.\n\nFölj länken nedan:\n__url__\n\nDin inbjudningskod är: __icode__\n\nTack!",
- "email-smtp-test-subject": "SMTP test-email",
- "email-smtp-test-text": "Du har skickat ett e-postmeddelande",
- "error-invitation-code-not-exist": "Inbjudningskod finns inte",
- "error-notAuthorized": "Du är inte behörig att se den här sidan.",
- "outgoing-webhooks": "Utgående Webhookar",
- "outgoingWebhooksPopup-title": "Utgående Webhookar",
- "boardCardTitlePopup-title": "Korttitelfiler",
- "new-outgoing-webhook": "Ny utgående webhook",
- "no-name": "(Okänd)",
- "Node_version": "Nodversion",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU-räkning",
- "OS_Freemem": "OS ledigt minne",
- "OS_Loadavg": "OS belastningsgenomsnitt",
- "OS_Platform": "OS plattforme",
- "OS_Release": "OS utgåva",
- "OS_Totalmem": "OS totalt minne",
- "OS_Type": "OS Typ",
- "OS_Uptime": "OS drifttid",
- "days": "dagar",
- "hours": "timmar",
- "minutes": "minuter",
- "seconds": "sekunder",
- "show-field-on-card": "Visa detta fält på kort",
- "automatically-field-on-card": "Skapa automatiskt fält till alla kort",
- "showLabel-field-on-card": "Visa fältetikett på minikort",
- "yes": "Ja",
- "no": "Nej",
- "accounts": "Konton",
- "accounts-allowEmailChange": "Tillåt e-poständring",
- "accounts-allowUserNameChange": "Tillåt användarnamnändring",
- "createdAt": "Skapad vid",
- "verified": "Verifierad",
- "active": "Aktiv",
- "card-received": "Mottagen",
- "card-received-on": "Mottagen den",
- "card-end": "Sluta",
- "card-end-on": "Slutar den",
- "editCardReceivedDatePopup-title": "Ändra mottagningsdatum",
- "editCardEndDatePopup-title": "Ändra slutdatum",
- "setCardColorPopup-title": "Ange färg",
- "setCardActionsColorPopup-title": "Välj en färg",
- "setSwimlaneColorPopup-title": "Välj en färg",
- "setListColorPopup-title": "Välj en färg",
- "assigned-by": "Tilldelad av",
- "requested-by": "Efterfrågad av",
- "board-delete-notice": "Borttagningen är permanent. Du kommer förlora alla listor, kort och händelser kopplade till den här anslagstavlan.",
- "delete-board-confirm-popup": "Alla listor, kort, etiketter och aktiviteter kommer tas bort och du kommer inte kunna återställa anslagstavlans innehåll. Det går inte att ångra.",
- "boardDeletePopup-title": "Ta bort anslagstavla?",
- "delete-board": "Ta bort anslagstavla",
- "default-subtasks-board": "Deluppgifter för __board__ board",
- "default": "Standard",
- "queue": "Kö",
- "subtask-settings": "Deluppgift inställningar",
- "boardSubtaskSettingsPopup-title": "Deluppgiftsinställningar för anslagstavla",
- "show-subtasks-field": "Kort kan ha deluppgifter",
- "deposit-subtasks-board": "Insättnings deluppgifter på denna anslagstavla:",
- "deposit-subtasks-list": "Landningslista för deluppgifter deponerade här:",
- "show-parent-in-minicard": "Visa förälder i minikort:",
- "prefix-with-full-path": "Prefix med fullständig sökväg",
- "prefix-with-parent": "Prefix med förälder",
- "subtext-with-full-path": "Undertext med fullständig sökväg",
- "subtext-with-parent": "Undertext med förälder",
- "change-card-parent": "Ändra kortets förälder",
- "parent-card": "Ovankort",
- "source-board": "Källa för anslagstavla",
- "no-parent": "Visa inte förälder",
- "activity-added-label": "lade till etiketten '%s' till %s",
- "activity-removed-label": "tog bort etiketten '%s' från %s",
- "activity-delete-attach": "raderade en bilaga från %s",
- "activity-added-label-card": "lade till etiketten \"%s\"",
- "activity-removed-label-card": "tog bort etiketten \"%s\"",
- "activity-delete-attach-card": "tog bort en bilaga",
- "activity-set-customfield": "ställ in anpassat fält '%s' till '%s' i %s",
- "activity-unset-customfield": "Koppla bort anpassat fält '%s' i %s",
- "r-rule": "Regel",
- "r-add-trigger": "Lägg till utlösare",
- "r-add-action": "Lägg till åtgärd",
- "r-board-rules": "Regler för anslagstavla",
- "r-add-rule": "Lägg till regel",
- "r-view-rule": "Visa regel",
- "r-delete-rule": "Ta bort regel",
- "r-new-rule-name": "Ny titel på regel",
- "r-no-rules": "Inga regler",
- "r-when-a-card": "När ett kort",
- "r-is": "är",
- "r-is-moved": "är flyttad",
- "r-added-to": "tillagd till",
- "r-removed-from": "Borttagen från",
- "r-the-board": "anslagstavlan",
- "r-list": "lista",
- "set-filter": "Ställ in filter",
- "r-moved-to": "Flyttad till",
- "r-moved-from": "Flyttad från",
- "r-archived": "Flyttad till Arkiv",
- "r-unarchived": "Återställd från Arkiv",
- "r-a-card": "ett kort",
- "r-when-a-label-is": "När en etikett är",
- "r-when-the-label": "När etiketten är",
- "r-list-name": "listnamn",
- "r-when-a-member": "När en medlem är",
- "r-when-the-member": "När medlemmen",
- "r-name": "namn",
- "r-when-a-attach": "När en bilaga",
- "r-when-a-checklist": "När en checklista är",
- "r-when-the-checklist": "När checklistan",
- "r-completed": "Avslutad",
- "r-made-incomplete": "Gjord ofullständig",
- "r-when-a-item": "När ett checklistobjekt ä",
- "r-when-the-item": "När checklistans objekt",
- "r-checked": "Kryssad",
- "r-unchecked": "Okryssad",
- "r-move-card-to": "Flytta kort till",
- "r-top-of": "Överst på",
- "r-bottom-of": "Nederst av",
- "r-its-list": "sin lista",
- "r-archive": "Flytta till Arkiv",
- "r-unarchive": "Återställ från Arkiv",
- "r-card": "kort",
- "r-add": "Lägg till",
- "r-remove": "Ta bort",
- "r-label": "etikett",
- "r-member": "medlem",
- "r-remove-all": "Ta bort alla medlemmar från kortet",
- "r-set-color": "Ställ in färg till",
- "r-checklist": "checklista",
- "r-check-all": "Kryssa alla",
- "r-uncheck-all": "Avkryssa alla",
- "r-items-check": "objekt på checklistan",
- "r-check": "Kryssa",
- "r-uncheck": "Avkryssa",
- "r-item": "objekt",
- "r-of-checklist": "av checklistan",
- "r-send-email": "Skicka ett e-postmeddelande",
- "r-to": "till",
- "r-subject": "änme",
- "r-rule-details": "Regeldetaljer",
- "r-d-move-to-top-gen": "Flytta kort till toppen av sin lista",
- "r-d-move-to-top-spec": "Flytta kort till toppen av listan",
- "r-d-move-to-bottom-gen": "Flytta kort till botten av sin lista",
- "r-d-move-to-bottom-spec": "Flytta kort till botten av listan",
- "r-d-send-email": "Skicka e-post",
- "r-d-send-email-to": "till",
- "r-d-send-email-subject": "ämne",
- "r-d-send-email-message": "meddelande",
- "r-d-archive": "Flytta kort till Arkiv",
- "r-d-unarchive": "Återställ kortet från Arkiv",
- "r-d-add-label": "Lägg till etikett",
- "r-d-remove-label": "Ta bort etikett",
- "r-create-card": "Skapa nytt kort",
- "r-in-list": "i listan",
- "r-in-swimlane": "i simbana",
- "r-d-add-member": "Lägg till medlem",
- "r-d-remove-member": "Ta bort medlem",
- "r-d-remove-all-member": "Ta bort alla medlemmar",
- "r-d-check-all": "Kryssa alla objekt i en lista",
- "r-d-uncheck-all": "Avkryssa alla objekt i en lista",
- "r-d-check-one": "Kryssa objekt",
- "r-d-uncheck-one": "Avkryssa objekt",
- "r-d-check-of-list": "av checklistan",
- "r-d-add-checklist": "Lägg till checklista",
- "r-d-remove-checklist": "Ta bort checklista",
- "r-by": "av",
- "r-add-checklist": "Lägg till checklista",
- "r-with-items": "med objekt",
- "r-items-list": "objekt1,objekt2,objekt3",
- "r-add-swimlane": "Lägg till simbana",
- "r-swimlane-name": "Simbanans namn",
- "r-board-note": "Notera: lämna ett fält tomt för att matcha alla möjliga värden.",
- "r-checklist-note": "Notera: Objekt i en checklista måste skrivas som kommaseparerade objekt",
- "r-when-a-card-is-moved": "När ett kort flyttas till en annan lista",
- "r-set": "Ange",
- "r-update": "Uppdatera",
- "r-datefield": "datumfält",
- "r-df-start-at": "start",
- "r-df-due-at": "förfallotid",
- "r-df-end-at": "slut",
- "r-df-received-at": "mottaget",
- "r-to-current-datetime": "till aktuellt datum/klockslag",
- "r-remove-value-from": "Ta bort värde från",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Autentiseringsmetod",
- "authentication-type": "Autentiseringstyp",
- "custom-product-name": "Anpassat produktnamn",
- "layout": "Layout",
- "hide-logo": "Dölj logotypen",
- "add-custom-html-after-body-start": "Lägg till anpassad HTML efter <body> start",
- "add-custom-html-before-body-end": "Lägg till anpassad HTML före </body> slut",
- "error-undefined": "Något gick fel",
- "error-ldap-login": "Ett fel uppstod när du försökte logga in",
- "display-authentication-method": "Visa autentiseringsmetod",
- "default-authentication-method": "Standard autentiseringsmetod",
- "duplicate-board": "Dubblett anslagstavla",
- "people-number": "Antalet personer är:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Återställ alla",
- "delete-all": "Ta bort alla",
- "loading": "Läser in, var god vänta.",
- "previous_as": "förra gången var",
- "act-a-dueAt": "ändrad förfallotid till \nNär: __timeValue__\nVar: __card__\n tidigare förfallotid var __timeOldValue__",
- "act-a-endAt": "ändrad sluttid till __timeValue__ från (__timeOldValue__)",
- "act-a-startAt": "ändrad starttid till __timeValue__ från (__timeOldValue__)",
- "act-a-receivedAt": "ändrad mottagen tid till __timeValue__ från (__timeOldValue__)",
- "a-dueAt": "ändrad förfallotid att vara",
- "a-endAt": "ändrad sluttid att vara",
- "a-startAt": "ändrad starttid att vara",
- "a-receivedAt": "ändrad mottagen tid att vara",
- "almostdue": "aktuell förfallotid %s närmar sig",
- "pastdue": "aktuell förfallotid %s är förbi",
- "duenow": "aktuell förfallotid %s är idag",
- "act-withDue": "__card__ förfallotidspåminnelser [__board__]",
- "act-almostdue": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ närmar sig",
- "act-pastdue": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ är förbi",
- "act-duenow": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ är nu",
- "act-atUserComment": "Du nämndes i [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Acceptera",
+ "act-activity-notify": "Aktivitetsnotifikation",
+ "act-addAttachment": "lade till bifogad fil __attachment__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-deleteAttachment": "raderade bifogad fil __attachment__ från kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-addSubtask": "lade till underaktivitet __subtask__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-addLabel": "lade till etikett __label__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-addedLabel": "lade till etikett __label__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-removeLabel": "Tog bort etikett __label__ från kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-removedLabel": "Tog bort etikett __label__ från kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-addChecklist": "lade till checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-addChecklistItem": "lade till checklistobjekt __checklistItem__ till checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-removeChecklist": "tag bort checklista __checklist__ från kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-removeChecklistItem": "tog bort checklistobjekt __checklistItem__ från __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-checkedItem": "bockade av __checklistItem__ från checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-uncheckedItem": "avmarkerade __checklistItem__ från checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-completeChecklist": "slutförde checklista __checklist__ i kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-uncompleteChecklist": "ofullbordade checklista __checklist__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-addComment": "kommenterade på kort __card__: __comment__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "skapade anslagstavla __board__",
+ "act-createSwimlane": "skapade simbana __swimlane__ till anslagstavla __board__",
+ "act-createCard": "skapade kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "lade till lista __list__ på anslagstavla __board__",
+ "act-addBoardMember": "lade till medlem __member__ på anslagstavla __board__",
+ "act-archivedBoard": "Anslagstavla __board__ flyttad till arkivet",
+ "act-archivedCard": "Kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__ flyttad till arkivet",
+ "act-archivedList": "Lista __list__ i simbana __swimlane__ på anslagstavla __board__ flyttad till arkivet",
+ "act-archivedSwimlane": "Simbana __swimlane__ på anslagstavla __board__ flyttad till arkivet",
+ "act-importBoard": "importerade board __board__",
+ "act-importCard": "importerade kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-importList": "importerade lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-joinMember": "lade till medlem __member__ på kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-moveCard": "flyttade kort __card__ på anslagstavla __board__ från lista __oldList__ i sambana __oldSwimlane__ till lista list __list__ i simbana __swimlane__",
+ "act-moveCardToOtherBoard": "flyttade kort __card__ från lista __oldList__ i simbana __oldSwimlane__ på tavla __oldBoard__ till lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-removeBoardMember": "borttagen medlem __member__  från anslagstavla __board__",
+ "act-restoredCard": "återställde kort __card__ till lista __lis__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-unjoinMember": "tog bort medlem __member__ från kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Åtgärder",
+ "activities": "Aktiviteter",
+ "activity": "Aktivitet",
+ "activity-added": "Lade %s till %s",
+ "activity-archived": "%s flyttades till Arkiv",
+ "activity-attached": "bifogade %s to %s",
+ "activity-created": "skapade %s",
+ "activity-customfield-created": "skapa anpassat fält %s",
+ "activity-excluded": "exkluderade %s från %s",
+ "activity-imported": "importerade %s till %s från %s",
+ "activity-imported-board": "importerade %s från %s",
+ "activity-joined": "anslöt sig till %s",
+ "activity-moved": "tog bort %s från %s till %s",
+ "activity-on": "på %s",
+ "activity-removed": "tog bort %s från %s",
+ "activity-sent": "skickade %s till %s",
+ "activity-unjoined": "gick ur %s",
+ "activity-subtask-added": "lade till deluppgift till %s",
+ "activity-checked-item": "kryssad %s i checklistan %s av %s",
+ "activity-unchecked-item": "okryssad %s i checklistan %s av %s",
+ "activity-checklist-added": "lade kontrollista till %s",
+ "activity-checklist-removed": "tog bort en checklista från %s",
+ "activity-checklist-completed": "slutförde checklista __checklist__ i kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "activity-checklist-uncompleted": "inte slutfört checklistan %s av %s",
+ "activity-checklist-item-added": "lade checklista objekt till '%s' i %s",
+ "activity-checklist-item-removed": "tog bort en checklista objekt från \"%s\" i %s",
+ "add": "Lägg till",
+ "activity-checked-item-card": "kryssad %s i checklistan %s",
+ "activity-unchecked-item-card": "okryssad %s i checklistan %s",
+ "activity-checklist-completed-card": "slutförde checklista __checklist__ i kort __card__ i lista __list__ i simbana __swimlane__ på anslagstavla __board__",
+ "activity-checklist-uncompleted-card": "icke slutfört checklistan %s",
+ "add-attachment": "Lägg till bilaga",
+ "add-board": "Lägg till anslagstavla",
+ "add-card": "Lägg till kort",
+ "add-swimlane": "Lägg till simbana",
+ "add-subtask": "Lägg till deluppgift",
+ "add-checklist": "Lägg till checklista",
+ "add-checklist-item": "Lägg till ett objekt till kontrollista",
+ "add-cover": "Lägg till omslag",
+ "add-label": "Lägg till etikett",
+ "add-list": "Lägg till lista",
+ "add-members": "Lägg till medlemmar",
+ "added": "Lades till",
+ "addMemberPopup-title": "Medlemmar",
+ "admin": "Adminstratör",
+ "admin-desc": "Kan visa och redigera kort, ta bort medlemmar och ändra inställningarna för anslagstavlan.",
+ "admin-announcement": "Meddelande",
+ "admin-announcement-active": "Aktivt system-brett meddelande",
+ "admin-announcement-title": "Meddelande från administratör",
+ "all-boards": "Alla anslagstavlor",
+ "and-n-other-card": "Och __count__ annat kort",
+ "and-n-other-card_plural": "Och __count__ andra kort",
+ "apply": "Tillämpa",
+ "app-is-offline": "Läser in, vänligen vänta. Uppdatering av sidan kommer att orsaka förlust av data. Om inläsningen inte fungerar, kontrollera att servern inte har stoppats.",
+ "archive": "Flytta till Arkiv",
+ "archive-all": "Flytta alla till Arkiv",
+ "archive-board": "Flytta Anslagstavla till Arkiv",
+ "archive-card": "Flytta kort till Arkiv",
+ "archive-list": "Flytta Lista till Arkiv",
+ "archive-swimlane": "Flytta simbanan till arkivet",
+ "archive-selection": "Flytta markerad till Arkiv",
+ "archiveBoardPopup-title": "Flytta Anslagstavla till Arkiv?",
+ "archived-items": "Arkiv",
+ "archived-boards": "Anslagstavlor i Arkiv",
+ "restore-board": "Återställ anslagstavla",
+ "no-archived-boards": "Inga anslagstavlor i Arkiv.",
+ "archives": "Arkiv",
+ "template": "Mall",
+ "templates": "Mallar",
+ "assign-member": "Tilldela medlem",
+ "attached": "bifogad",
+ "attachment": "Bilaga",
+ "attachment-delete-pop": "Ta bort en bilaga är permanent. Det går inte att ångra.",
+ "attachmentDeletePopup-title": "Ta bort bilaga?",
+ "attachments": "Bilagor",
+ "auto-watch": "Bevaka automatiskt anslagstavlor när de skapas",
+ "avatar-too-big": "Avatar är för stor (70KB max)",
+ "back": "Tillbaka",
+ "board-change-color": "Ändra färg",
+ "board-nb-stars": "%s stjärnor",
+ "board-not-found": "Anslagstavla hittades inte",
+ "board-private-info": "Denna anslagstavla kommer att vara <strong>privat</strong>.",
+ "board-public-info": "Denna anslagstavla kommer att vara <strong>officiell</strong>.",
+ "boardChangeColorPopup-title": "Ändra bakgrund på anslagstavla",
+ "boardChangeTitlePopup-title": "Byt namn på anslagstavla",
+ "boardChangeVisibilityPopup-title": "Ändra synlighet",
+ "boardChangeWatchPopup-title": "Ändra bevaka",
+ "boardMenuPopup-title": "Anslagstavlans inställningar",
+ "boards": "Anslagstavlor",
+ "board-view": "Anslagstavelsvy",
+ "board-view-cal": "Kalender",
+ "board-view-swimlanes": "Simbanor",
+ "board-view-lists": "Listor",
+ "bucket-example": "Gilla \"att-göra-innan-jag-dör-lista\" till exempel",
+ "cancel": "Avbryt",
+ "card-archived": "Detta kort är flyttat till Arkiv.",
+ "board-archived": "Den här anslagstavlan är flyttad till Arkiv.",
+ "card-comments-title": "Detta kort har %s kommentar.",
+ "card-delete-notice": "Ta bort är permanent. Du kommer att förlora alla åtgärder i samband med detta kort.",
+ "card-delete-pop": "Alla åtgärder kommer att tas bort från aktivitetsflöde och du kommer inte att kunna öppna kortet igen. Det går inte att ångra.",
+ "card-delete-suggest-archive": "Du kan flytta ett kort för att Arkiv för att ta bort det från anslagstavlan och bevara aktiviteten.",
+ "card-due": "Förfaller",
+ "card-due-on": "Förfaller på",
+ "card-spent": "Spenderad tid",
+ "card-edit-attachments": "Redigera bilaga",
+ "card-edit-custom-fields": "Redigera anpassade fält",
+ "card-edit-labels": "Redigera etiketter",
+ "card-edit-members": "Redigera medlemmar",
+ "card-labels-title": "Ändra etiketter för kortet.",
+ "card-members-title": "Lägg till eller ta bort medlemmar av anslagstavlan från kortet.",
+ "card-start": "Börja",
+ "card-start-on": "Börja med",
+ "cardAttachmentsPopup-title": "Bifoga från",
+ "cardCustomField-datePopup-title": "Ändra datum",
+ "cardCustomFieldsPopup-title": "Redigera anpassade fält",
+ "cardDeletePopup-title": "Ta bort kort?",
+ "cardDetailsActionsPopup-title": "Kortåtgärder",
+ "cardLabelsPopup-title": "Etiketter",
+ "cardMembersPopup-title": "Medlemmar",
+ "cardMorePopup-title": "Mera",
+ "cardTemplatePopup-title": "Skapa mall",
+ "cards": "Kort",
+ "cards-count": "Kort",
+ "casSignIn": "Logga in med CAS",
+ "cardType-card": "Kort",
+ "cardType-linkedCard": "Länkat kort",
+ "cardType-linkedBoard": "Länkad anslagstavla",
+ "change": "Ändra",
+ "change-avatar": "Ändra avatar",
+ "change-password": "Ändra lösenord",
+ "change-permissions": "Ändra behörigheter",
+ "change-settings": "Ändra inställningar",
+ "changeAvatarPopup-title": "Ändra avatar",
+ "changeLanguagePopup-title": "Ändra språk",
+ "changePasswordPopup-title": "Ändra lösenord",
+ "changePermissionsPopup-title": "Ändra behörigheter",
+ "changeSettingsPopup-title": "Ändra inställningar",
+ "subtasks": "Deluppgifter",
+ "checklists": "Kontrollistor",
+ "click-to-star": "Klicka för att stjärnmärka denna anslagstavla.",
+ "click-to-unstar": "Klicka för att ta bort stjärnmärkningen från denna anslagstavla.",
+ "clipboard": "Urklipp eller dra och släpp",
+ "close": "Stäng",
+ "close-board": "Stäng anslagstavla",
+ "close-board-pop": "Du kommer att kunna återställa anslagstavlan genom att klicka på knappen \"Arkiv\" från hemrubriken.",
+ "color-black": "svart",
+ "color-blue": "blå",
+ "color-crimson": "mörkröd",
+ "color-darkgreen": "mörkgrön",
+ "color-gold": "guld",
+ "color-gray": "grå",
+ "color-green": "grön",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "ljusrosa",
+ "color-navy": "marinblå",
+ "color-orange": "orange",
+ "color-paleturquoise": "turkos",
+ "color-peachpuff": "ersika",
+ "color-pink": "rosa",
+ "color-plum": "lila",
+ "color-purple": "lila",
+ "color-red": "röd",
+ "color-saddlebrown": "sadelbrun",
+ "color-silver": "silver",
+ "color-sky": "himmel",
+ "color-slateblue": "skifferblå",
+ "color-white": "vit",
+ "color-yellow": "gul",
+ "unset-color": "Urkoppla",
+ "comment": "Kommentera",
+ "comment-placeholder": "Skriv kommentar",
+ "comment-only": "Kommentera endast",
+ "comment-only-desc": "Kan endast kommentera kort.",
+ "no-comments": "Inga kommentarer",
+ "no-comments-desc": "Kan inte se kommentarer och aktiviteter.",
+ "computer": "Dator",
+ "confirm-subtask-delete-dialog": "Är du säker på att du vill radera deluppgift?",
+ "confirm-checklist-delete-dialog": "Är du säker på att du vill radera checklista?",
+ "copy-card-link-to-clipboard": "Kopiera kortlänk till urklipp",
+ "linkCardPopup-title": "Länka kort",
+ "searchElementPopup-title": "Sök",
+ "copyCardPopup-title": "Kopiera kort",
+ "copyChecklistToManyCardsPopup-title": "Kopiera checklist-mallen till flera kort",
+ "copyChecklistToManyCardsPopup-instructions": "Destinationskorttitlar och beskrivningar i detta JSON-format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"Första kortets titel\", \"description\":\"Första kortets beskrivning\"}, {\"title\":\"Andra kortets titel\",\"description\":\"Andra kortets beskrivning\"},{\"title\":\"Sista kortets titel\",\"description\":\"Sista kortets beskrivning\"} ]",
+ "create": "Skapa",
+ "createBoardPopup-title": "Skapa anslagstavla",
+ "chooseBoardSourcePopup-title": "Importera anslagstavla",
+ "createLabelPopup-title": "Skapa etikett",
+ "createCustomField": "Skapa fält",
+ "createCustomFieldPopup-title": "Skapa fält",
+ "current": "aktuell",
+ "custom-field-delete-pop": "Det går inte att ångra. Detta tar bort det här anpassade fältet från alla kort och förstör dess historia.",
+ "custom-field-checkbox": "Kryssruta",
+ "custom-field-date": "Datum",
+ "custom-field-dropdown": "Rullgardingsmeny",
+ "custom-field-dropdown-none": "(inga)",
+ "custom-field-dropdown-options": "Listalternativ",
+ "custom-field-dropdown-options-placeholder": "Tryck på enter för att lägga till fler alternativ",
+ "custom-field-dropdown-unknown": "(okänd)",
+ "custom-field-number": "Nummer",
+ "custom-field-text": "Text",
+ "custom-fields": "Anpassade fält",
+ "date": "Datum",
+ "decline": "Nedgång",
+ "default-avatar": "Standard avatar",
+ "delete": "Ta bort",
+ "deleteCustomFieldPopup-title": "Ta bort anpassade fält?",
+ "deleteLabelPopup-title": "Ta bort etikett?",
+ "description": "Beskrivning",
+ "disambiguateMultiLabelPopup-title": "Otvetydig etikettåtgärd",
+ "disambiguateMultiMemberPopup-title": "Otvetydig medlemsåtgärd",
+ "discard": "Kassera",
+ "done": "Färdig",
+ "download": "Hämta",
+ "edit": "Redigera",
+ "edit-avatar": "Ändra avatar",
+ "edit-profile": "Redigera profil",
+ "edit-wip-limit": "Redigera WIP-gränsen",
+ "soft-wip-limit": "Mjuk WIP-gräns",
+ "editCardStartDatePopup-title": "Ändra startdatum",
+ "editCardDueDatePopup-title": "Ändra förfallodatum",
+ "editCustomFieldPopup-title": "Redigera fält",
+ "editCardSpentTimePopup-title": "Ändra spenderad tid",
+ "editLabelPopup-title": "Ändra etikett",
+ "editNotificationPopup-title": "Redigera avisering",
+ "editProfilePopup-title": "Redigera profil",
+ "email": "E-post",
+ "email-enrollAccount-subject": "Ett konto skapas för dig på __siteName__",
+ "email-enrollAccount-text": "Hej __user__,\n\nFör att börja använda tjänsten, klicka på länken nedan.\n\n__url__\n\nTack.",
+ "email-fail": "Sändning av e-post misslyckades",
+ "email-fail-text": "Ett fel vid försök att skicka e-post",
+ "email-invalid": "Ogiltig e-post",
+ "email-invite": "Bjud in via e-post",
+ "email-invite-subject": "__inviter__ skickade dig en inbjudan",
+ "email-invite-text": "Bästa __user__,\n\n__inviter__ inbjuder dig till anslagstavlan \"__board__\" för samarbete.\n\nFölj länken nedan:\n\n__url__\n\nTack.",
+ "email-resetPassword-subject": "Återställa lösenordet för __siteName__",
+ "email-resetPassword-text": "Hej __user__,\n\nFör att återställa ditt lösenord, klicka på länken nedan.\n\n__url__\n\nTack.",
+ "email-sent": "E-post skickad",
+ "email-verifyEmail-subject": "Verifiera din e-post adress på __siteName__",
+ "email-verifyEmail-text": "Hej __user__,\n\nFör att verifiera din konto e-post, klicka på länken nedan.\n\n__url__\n\nTack.",
+ "enable-wip-limit": "Aktivera WIP-gräns",
+ "error-board-doesNotExist": "Denna anslagstavla finns inte",
+ "error-board-notAdmin": "Du måste vara administratör för denna anslagstavla för att göra det",
+ "error-board-notAMember": "Du måste vara medlem i denna anslagstavla för att göra det",
+ "error-json-malformed": "Din text är inte giltigt JSON",
+ "error-json-schema": "Din JSON data inkluderar inte korrekt information i rätt format",
+ "error-list-doesNotExist": "Denna lista finns inte",
+ "error-user-doesNotExist": "Denna användare finns inte",
+ "error-user-notAllowSelf": "Du kan inte bjuda in dig själv",
+ "error-user-notCreated": "Den här användaren har inte skapats",
+ "error-username-taken": "Detta användarnamn är redan taget",
+ "error-email-taken": "E-post har redan tagits",
+ "export-board": "Exportera anslagstavla",
+ "filter": "Filtrera",
+ "filter-cards": "Filtrera kort",
+ "filter-clear": "Rensa filter",
+ "filter-no-label": "Ingen etikett",
+ "filter-no-member": "Ingen medlem",
+ "filter-no-custom-fields": "Inga anpassade fält",
+ "filter-on": "Filter är på",
+ "filter-on-desc": "Du filtrerar kort på denna anslagstavla. Klicka här för att redigera filter.",
+ "filter-to-selection": "Filter till val",
+ "advanced-filter-label": "Avancerat filter",
+ "advanced-filter-description": "Avancerade filter låter dig skriva en sträng innehållande följande operatorer: == != <= >= && || ( ). Ett mellanslag används som separator mellan operatorerna. Du kan filtrera alla specialfält genom att skriva dess namn och värde. Till exempel: Fält1 == Vårde1. Notera: om fälten eller värden innehåller mellanrum behöver du innesluta dem med enkla citatstecken. Till exempel: 'Fält 1' == 'Värde 1'. För att skippa enkla kontrolltecken (' \\/) kan du använda \\. Till exempel: Fält1 == I\\'m. Du kan även kombinera fler villkor. TIll exempel: F1 == V1 || F1 == V2. Vanligtvis läses operatorerna från vänster till höger. Du kan ändra ordning genom att använda paranteser. TIll exempel: F1 == V1 && ( F2 == V2 || F2 == V3 ). Du kan även söka efter textfält med hjälp av regex: F1 == /Tes.*/i",
+ "fullname": "Namn",
+ "header-logo-title": "Gå tillbaka till din anslagstavlor-sida.",
+ "hide-system-messages": "Dölj systemmeddelanden",
+ "headerBarCreateBoardPopup-title": "Skapa anslagstavla",
+ "home": "Hem",
+ "import": "Importera",
+ "link": "Länk",
+ "import-board": "importera anslagstavla",
+ "import-board-c": "Importera anslagstavla",
+ "import-board-title-trello": "Importera anslagstavla från Trello",
+ "import-board-title-wekan": "Importera anslagstavla från tidigare export",
+ "import-sandstorm-backup-warning": "Ta inte bort data som du importerar från exporterad original-tavla eller Trello innan du kontrollerar att det här spannet stänger och öppnas igen, eller får du felmeddelandet Anslagstavla hittades inte, det vill säga dataförlust.",
+ "import-sandstorm-warning": "Importerad anslagstavla raderar all befintlig data på anslagstavla och ersätter den med importerat anslagstavla.",
+ "from-trello": "Från Trello",
+ "from-wekan": "Från tidigare export",
+ "import-board-instruction-trello": "I din Trello-anslagstavla, gå till 'Meny', sedan 'Mera', 'Skriv ut och exportera', 'Exportera JSON' och kopiera den resulterande text.",
+ "import-board-instruction-wekan": "På din anslagstavla, gå till \"Meny\", sedan \"Exportera anslagstavla\" och kopiera texten i den hämtade filen.",
+ "import-board-instruction-about-errors": "Om du får fel vid import av anslagstavla, ibland importerar fortfarande fungerar, och styrelsen är på alla sidor för anslagstavlor.",
+ "import-json-placeholder": "Klistra in giltigt JSON data här",
+ "import-map-members": "Kartlägg medlemmar",
+ "import-members-map": "Din importerade anslagstavla har några medlemmar. Vänligen kartlägg medlemmarna du vill importera till dina användare",
+ "import-show-user-mapping": "Granska medlemskartläggning",
+ "import-user-select": "Välj din befintliga användare du vill använda som den här medlemmen",
+ "importMapMembersAddPopup-title": "Välj medlem",
+ "info": "Version",
+ "initials": "Initialer",
+ "invalid-date": "Ogiltigt datum",
+ "invalid-time": "Ogiltig tid",
+ "invalid-user": "Ogiltig användare",
+ "joined": "gick med",
+ "just-invited": "Du blev nyss inbjuden till denna anslagstavla",
+ "keyboard-shortcuts": "Tangentbordsgenvägar",
+ "label-create": "Skapa etikett",
+ "label-default": "%s etikett (standard)",
+ "label-delete-pop": "Det finns ingen ångra. Detta tar bort denna etikett från alla kort och förstöra dess historik.",
+ "labels": "Etiketter",
+ "language": "Språk",
+ "last-admin-desc": "Du kan inte ändra roller för det måste finnas minst en administratör.",
+ "leave-board": "Lämna anslagstavla",
+ "leave-board-pop": "Är du säker på att du vill lämna __boardTitle__? Du kommer att tas bort från alla kort på den här anslagstavlan.",
+ "leaveBoardPopup-title": "Lämna anslagstavla ?",
+ "link-card": "Länk till detta kort",
+ "list-archive-cards": "Flytta alla kort i den här listan till Arkiv",
+ "list-archive-cards-pop": "Detta kommer att ta bort alla kort i denna lista från anslagstavlan. För att visa kort i Arkiv och få dem tillbaka till anslagstavlan, klicka på \"Meny\" > \"Arkiv\".",
+ "list-move-cards": "Flytta alla kort i denna lista",
+ "list-select-cards": "Välj alla kort i denna lista",
+ "set-color-list": "Ange färg",
+ "listActionPopup-title": "Liståtgärder",
+ "swimlaneActionPopup-title": "Simbana-åtgärder",
+ "swimlaneAddPopup-title": "Lägg till en simbana nedan",
+ "listImportCardPopup-title": "Importera ett Trello kort",
+ "listMorePopup-title": "Mera",
+ "link-list": "Länk till den här listan",
+ "list-delete-pop": "Alla åtgärder kommer att tas bort från aktivitetsmatningen och du kommer inte att kunna återställa listan. Det går inte att ångra.",
+ "list-delete-suggest-archive": "Du kan flytta en lista till Arkiv för att ta bort den från anslagstavlan och bevara aktiviteten.",
+ "lists": "Listor",
+ "swimlanes": "Simbanor",
+ "log-out": "Logga ut",
+ "log-in": "Logga in",
+ "loginPopup-title": "Logga in",
+ "memberMenuPopup-title": "Användarinställningar",
+ "members": "Medlemmar",
+ "menu": "Meny",
+ "move-selection": "Flytta vald",
+ "moveCardPopup-title": "Flytta kort",
+ "moveCardToBottom-title": "Flytta längst ner",
+ "moveCardToTop-title": "Flytta högst upp",
+ "moveSelectionPopup-title": "Flytta vald",
+ "multi-selection": "Flerval",
+ "multi-selection-on": "Flerval är på",
+ "muted": "Tystad",
+ "muted-info": "Du kommer aldrig att meddelas om eventuella ändringar i denna anslagstavla",
+ "my-boards": "Mina anslagstavlor",
+ "name": "Namn",
+ "no-archived-cards": "Inga kort i Arkiv.",
+ "no-archived-lists": "Inga listor i Arkiv.",
+ "no-archived-swimlanes": "Inga simbanor i arkivet.",
+ "no-results": "Inga reslutat",
+ "normal": "Normal",
+ "normal-desc": "Kan se och redigera kort. Kan inte ändra inställningar.",
+ "not-accepted-yet": "Inbjudan inte ännu accepterad",
+ "notify-participate": "Få uppdateringar till alla kort du deltar i som skapare eller medlem",
+ "notify-watch": "Få uppdateringar till alla anslagstavlor, listor, eller kort du bevakar",
+ "optional": "valfri",
+ "or": "eller",
+ "page-maybe-private": "Denna sida kan vara privat. Du kanske kan se den genom att <a href='%s'>logga in</a>.",
+ "page-not-found": "Sidan hittades inte.",
+ "password": "Lösenord",
+ "paste-or-dragdrop": "klistra in eller dra och släpp bildfil till den (endast bilder)",
+ "participating": "Deltagande",
+ "preview": "Förhandsvisning",
+ "previewAttachedImagePopup-title": "Förhandsvisning",
+ "previewClipboardImagePopup-title": "Förhandsvisning",
+ "private": "Privat",
+ "private-desc": "Denna anslagstavla är privat. Endast personer tillagda till anslagstavlan kan se och redigera den.",
+ "profile": "Profil",
+ "public": "Officiell",
+ "public-desc": "Denna anslagstavla är offentlig. Den är synligt för alla med länken och kommer att dyka upp i sökmotorer som Google. Endast personer tillagda till anslagstavlan kan redigera.",
+ "quick-access-description": "Stjärnmärk en anslagstavla för att lägga till en genväg i detta fält.",
+ "remove-cover": "Ta bort omslag",
+ "remove-from-board": "Ta bort från anslagstavla",
+ "remove-label": "Ta bort etikett",
+ "listDeletePopup-title": "Ta bort lista",
+ "remove-member": "Ta bort medlem",
+ "remove-member-from-card": "Ta bort från kort",
+ "remove-member-pop": "Ta bort __name__ (__username__) från __boardTitle__? Medlemmen kommer att bli borttagen från alla kort i denna anslagstavla. De kommer att få en avisering.",
+ "removeMemberPopup-title": "Ta bort medlem?",
+ "rename": "Byt namn",
+ "rename-board": "Byt namn på anslagstavla",
+ "restore": "Återställ",
+ "save": "Spara",
+ "search": "Sök",
+ "rules": "Regler",
+ "search-cards": "Sök från korttitlar och beskrivningar på den här anslagstavlan",
+ "search-example": "Text att söka efter?",
+ "select-color": "Välj färg",
+ "set-wip-limit-value": "Ange en gräns för det maximala antalet uppgifter i den här listan",
+ "setWipLimitPopup-title": "Ställ in WIP-gräns",
+ "shortcut-assign-self": "Tilldela dig nuvarande kort",
+ "shortcut-autocomplete-emoji": "Komplettera automatiskt emoji",
+ "shortcut-autocomplete-members": "Komplettera automatiskt medlemmar",
+ "shortcut-clear-filters": "Rensa alla filter",
+ "shortcut-close-dialog": "Stäng dialog",
+ "shortcut-filter-my-cards": "Filtrera mina kort",
+ "shortcut-show-shortcuts": "Ta fram denna genvägslista",
+ "shortcut-toggle-filterbar": "Växla filtrets sidofält",
+ "shortcut-toggle-sidebar": "Växla anslagstavlans sidofält",
+ "show-cards-minimum-count": "Visa kortantal om listan innehåller mer än",
+ "sidebar-open": "Stäng sidofält",
+ "sidebar-close": "Stäng sidofält",
+ "signupPopup-title": "Skapa ett konto",
+ "star-board-title": "Klicka för att stjärnmärka denna anslagstavla. Den kommer att visas högst upp på din lista över anslagstavlor.",
+ "starred-boards": "Stjärnmärkta anslagstavlor",
+ "starred-boards-description": "Stjärnmärkta anslagstavlor visas högst upp på din lista över anslagstavlor.",
+ "subscribe": "Prenumenera",
+ "team": "Grupp",
+ "this-board": "denna anslagstavla",
+ "this-card": "detta kort",
+ "spent-time-hours": "Spenderad tid (timmar)",
+ "overtime-hours": "Övertid (timmar)",
+ "overtime": "Övertid",
+ "has-overtime-cards": "Har övertidskort",
+ "has-spenttime-cards": "Har spenderat tidkort",
+ "time": "Tid",
+ "title": "Titel",
+ "tracking": "Spåra",
+ "tracking-info": "Du kommer att meddelas om eventuella ändringar av dessa kort du deltar i som skapare eller medlem.",
+ "type": "Skriv",
+ "unassign-member": "Ta bort tilldelad medlem",
+ "unsaved-description": "Du har en osparad beskrivning.",
+ "unwatch": "Avbevaka",
+ "upload": "Ladda upp",
+ "upload-avatar": "Ladda upp en avatar",
+ "uploaded-avatar": "Laddade upp en avatar",
+ "username": "Änvandarnamn",
+ "view-it": "Visa det",
+ "warn-list-archived": "varning: detta kort finns i en lista i Arkiv",
+ "watch": "Bevaka",
+ "watching": "Bevaka",
+ "watching-info": "Du kommer att meddelas om alla ändringar på denna anslagstavla",
+ "welcome-board": "Välkomstanslagstavla",
+ "welcome-swimlane": "Milstolpe 1",
+ "welcome-list1": "Grunderna",
+ "welcome-list2": "Avancerad",
+ "card-templates-swimlane": "Kortmallar",
+ "list-templates-swimlane": "Listmalla",
+ "board-templates-swimlane": "Tavelmallar",
+ "what-to-do": "Vad vill du göra?",
+ "wipLimitErrorPopup-title": "Ogiltig WIP-gräns",
+ "wipLimitErrorPopup-dialog-pt1": "Antalet uppgifter i den här listan är högre än WIP-gränsen du har definierat.",
+ "wipLimitErrorPopup-dialog-pt2": "Flytta några uppgifter ur listan, eller ställ in en högre WIP-gräns.",
+ "admin-panel": "Administratörspanel",
+ "settings": "Inställningar",
+ "people": "Personer",
+ "registration": "Registrering",
+ "disable-self-registration": "Avaktiverar självregistrering",
+ "invite": "Bjud in",
+ "invite-people": "Bjud in personer",
+ "to-boards": "Till anslagstavl(a/or)",
+ "email-addresses": "E-post adresser",
+ "smtp-host-description": "Adressen till SMTP-servern som hanterar din e-post.",
+ "smtp-port-description": "Porten SMTP-servern använder för utgående e-post.",
+ "smtp-tls-description": "Aktivera TLS-stöd för SMTP-server",
+ "smtp-host": "SMTP-värd",
+ "smtp-port": "SMTP-port",
+ "smtp-username": "Användarnamn",
+ "smtp-password": "Lösenord",
+ "smtp-tls": "TLS-stöd",
+ "send-from": "Från",
+ "send-smtp-test": "Skicka ett prov e-postmeddelande till dig själv",
+ "invitation-code": "Inbjudningskod",
+ "email-invite-register-subject": "__inviter__ skickade dig en inbjudan",
+ "email-invite-register-text": "Kära__user__,\n\n__inviter__ bjuder in dig att samarbeta på kanban-anslagstavlan.\n\nFölj länken nedan:\n__url__\n\nDin inbjudningskod är: __icode__\n\nTack!",
+ "email-smtp-test-subject": "SMTP test-email",
+ "email-smtp-test-text": "Du har skickat ett e-postmeddelande",
+ "error-invitation-code-not-exist": "Inbjudningskod finns inte",
+ "error-notAuthorized": "Du är inte behörig att se den här sidan.",
+ "outgoing-webhooks": "Utgående Webhookar",
+ "outgoingWebhooksPopup-title": "Utgående Webhookar",
+ "boardCardTitlePopup-title": "Korttitelfiler",
+ "new-outgoing-webhook": "Ny utgående webhook",
+ "no-name": "(Okänd)",
+ "Node_version": "Nodversion",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU-räkning",
+ "OS_Freemem": "OS ledigt minne",
+ "OS_Loadavg": "OS belastningsgenomsnitt",
+ "OS_Platform": "OS plattforme",
+ "OS_Release": "OS utgåva",
+ "OS_Totalmem": "OS totalt minne",
+ "OS_Type": "OS Typ",
+ "OS_Uptime": "OS drifttid",
+ "days": "dagar",
+ "hours": "timmar",
+ "minutes": "minuter",
+ "seconds": "sekunder",
+ "show-field-on-card": "Visa detta fält på kort",
+ "automatically-field-on-card": "Skapa automatiskt fält till alla kort",
+ "showLabel-field-on-card": "Visa fältetikett på minikort",
+ "yes": "Ja",
+ "no": "Nej",
+ "accounts": "Konton",
+ "accounts-allowEmailChange": "Tillåt e-poständring",
+ "accounts-allowUserNameChange": "Tillåt användarnamnändring",
+ "createdAt": "Skapad vid",
+ "verified": "Verifierad",
+ "active": "Aktiv",
+ "card-received": "Mottagen",
+ "card-received-on": "Mottagen den",
+ "card-end": "Sluta",
+ "card-end-on": "Slutar den",
+ "editCardReceivedDatePopup-title": "Ändra mottagningsdatum",
+ "editCardEndDatePopup-title": "Ändra slutdatum",
+ "setCardColorPopup-title": "Ange färg",
+ "setCardActionsColorPopup-title": "Välj en färg",
+ "setSwimlaneColorPopup-title": "Välj en färg",
+ "setListColorPopup-title": "Välj en färg",
+ "assigned-by": "Tilldelad av",
+ "requested-by": "Efterfrågad av",
+ "board-delete-notice": "Borttagningen är permanent. Du kommer förlora alla listor, kort och händelser kopplade till den här anslagstavlan.",
+ "delete-board-confirm-popup": "Alla listor, kort, etiketter och aktiviteter kommer tas bort och du kommer inte kunna återställa anslagstavlans innehåll. Det går inte att ångra.",
+ "boardDeletePopup-title": "Ta bort anslagstavla?",
+ "delete-board": "Ta bort anslagstavla",
+ "default-subtasks-board": "Deluppgifter för __board__ board",
+ "default": "Standard",
+ "queue": "Kö",
+ "subtask-settings": "Deluppgift inställningar",
+ "boardSubtaskSettingsPopup-title": "Deluppgiftsinställningar för anslagstavla",
+ "show-subtasks-field": "Kort kan ha deluppgifter",
+ "deposit-subtasks-board": "Insättnings deluppgifter på denna anslagstavla:",
+ "deposit-subtasks-list": "Landningslista för deluppgifter deponerade här:",
+ "show-parent-in-minicard": "Visa förälder i minikort:",
+ "prefix-with-full-path": "Prefix med fullständig sökväg",
+ "prefix-with-parent": "Prefix med förälder",
+ "subtext-with-full-path": "Undertext med fullständig sökväg",
+ "subtext-with-parent": "Undertext med förälder",
+ "change-card-parent": "Ändra kortets förälder",
+ "parent-card": "Ovankort",
+ "source-board": "Källa för anslagstavla",
+ "no-parent": "Visa inte förälder",
+ "activity-added-label": "lade till etiketten '%s' till %s",
+ "activity-removed-label": "tog bort etiketten '%s' från %s",
+ "activity-delete-attach": "raderade en bilaga från %s",
+ "activity-added-label-card": "lade till etiketten \"%s\"",
+ "activity-removed-label-card": "tog bort etiketten \"%s\"",
+ "activity-delete-attach-card": "tog bort en bilaga",
+ "activity-set-customfield": "ställ in anpassat fält '%s' till '%s' i %s",
+ "activity-unset-customfield": "Koppla bort anpassat fält '%s' i %s",
+ "r-rule": "Regel",
+ "r-add-trigger": "Lägg till utlösare",
+ "r-add-action": "Lägg till åtgärd",
+ "r-board-rules": "Regler för anslagstavla",
+ "r-add-rule": "Lägg till regel",
+ "r-view-rule": "Visa regel",
+ "r-delete-rule": "Ta bort regel",
+ "r-new-rule-name": "Ny titel på regel",
+ "r-no-rules": "Inga regler",
+ "r-when-a-card": "När ett kort",
+ "r-is": "är",
+ "r-is-moved": "är flyttad",
+ "r-added-to": "tillagd till",
+ "r-removed-from": "Borttagen från",
+ "r-the-board": "anslagstavlan",
+ "r-list": "lista",
+ "set-filter": "Ställ in filter",
+ "r-moved-to": "Flyttad till",
+ "r-moved-from": "Flyttad från",
+ "r-archived": "Flyttad till Arkiv",
+ "r-unarchived": "Återställd från Arkiv",
+ "r-a-card": "ett kort",
+ "r-when-a-label-is": "När en etikett är",
+ "r-when-the-label": "När etiketten är",
+ "r-list-name": "listnamn",
+ "r-when-a-member": "När en medlem är",
+ "r-when-the-member": "När medlemmen",
+ "r-name": "namn",
+ "r-when-a-attach": "När en bilaga",
+ "r-when-a-checklist": "När en checklista är",
+ "r-when-the-checklist": "När checklistan",
+ "r-completed": "Avslutad",
+ "r-made-incomplete": "Gjord ofullständig",
+ "r-when-a-item": "När ett checklistobjekt ä",
+ "r-when-the-item": "När checklistans objekt",
+ "r-checked": "Kryssad",
+ "r-unchecked": "Okryssad",
+ "r-move-card-to": "Flytta kort till",
+ "r-top-of": "Överst på",
+ "r-bottom-of": "Nederst av",
+ "r-its-list": "sin lista",
+ "r-archive": "Flytta till Arkiv",
+ "r-unarchive": "Återställ från Arkiv",
+ "r-card": "kort",
+ "r-add": "Lägg till",
+ "r-remove": "Ta bort",
+ "r-label": "etikett",
+ "r-member": "medlem",
+ "r-remove-all": "Ta bort alla medlemmar från kortet",
+ "r-set-color": "Ställ in färg till",
+ "r-checklist": "checklista",
+ "r-check-all": "Kryssa alla",
+ "r-uncheck-all": "Avkryssa alla",
+ "r-items-check": "objekt på checklistan",
+ "r-check": "Kryssa",
+ "r-uncheck": "Avkryssa",
+ "r-item": "objekt",
+ "r-of-checklist": "av checklistan",
+ "r-send-email": "Skicka ett e-postmeddelande",
+ "r-to": "till",
+ "r-subject": "änme",
+ "r-rule-details": "Regeldetaljer",
+ "r-d-move-to-top-gen": "Flytta kort till toppen av sin lista",
+ "r-d-move-to-top-spec": "Flytta kort till toppen av listan",
+ "r-d-move-to-bottom-gen": "Flytta kort till botten av sin lista",
+ "r-d-move-to-bottom-spec": "Flytta kort till botten av listan",
+ "r-d-send-email": "Skicka e-post",
+ "r-d-send-email-to": "till",
+ "r-d-send-email-subject": "ämne",
+ "r-d-send-email-message": "meddelande",
+ "r-d-archive": "Flytta kort till Arkiv",
+ "r-d-unarchive": "Återställ kortet från Arkiv",
+ "r-d-add-label": "Lägg till etikett",
+ "r-d-remove-label": "Ta bort etikett",
+ "r-create-card": "Skapa nytt kort",
+ "r-in-list": "i listan",
+ "r-in-swimlane": "i simbana",
+ "r-d-add-member": "Lägg till medlem",
+ "r-d-remove-member": "Ta bort medlem",
+ "r-d-remove-all-member": "Ta bort alla medlemmar",
+ "r-d-check-all": "Kryssa alla objekt i en lista",
+ "r-d-uncheck-all": "Avkryssa alla objekt i en lista",
+ "r-d-check-one": "Kryssa objekt",
+ "r-d-uncheck-one": "Avkryssa objekt",
+ "r-d-check-of-list": "av checklistan",
+ "r-d-add-checklist": "Lägg till checklista",
+ "r-d-remove-checklist": "Ta bort checklista",
+ "r-by": "av",
+ "r-add-checklist": "Lägg till checklista",
+ "r-with-items": "med objekt",
+ "r-items-list": "objekt1,objekt2,objekt3",
+ "r-add-swimlane": "Lägg till simbana",
+ "r-swimlane-name": "Simbanans namn",
+ "r-board-note": "Notera: lämna ett fält tomt för att matcha alla möjliga värden.",
+ "r-checklist-note": "Notera: Objekt i en checklista måste skrivas som kommaseparerade objekt",
+ "r-when-a-card-is-moved": "När ett kort flyttas till en annan lista",
+ "r-set": "Ange",
+ "r-update": "Uppdatera",
+ "r-datefield": "datumfält",
+ "r-df-start-at": "start",
+ "r-df-due-at": "förfallotid",
+ "r-df-end-at": "slut",
+ "r-df-received-at": "mottaget",
+ "r-to-current-datetime": "till aktuellt datum/klockslag",
+ "r-remove-value-from": "Ta bort värde från",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Autentiseringsmetod",
+ "authentication-type": "Autentiseringstyp",
+ "custom-product-name": "Anpassat produktnamn",
+ "layout": "Layout",
+ "hide-logo": "Dölj logotypen",
+ "add-custom-html-after-body-start": "Lägg till anpassad HTML efter <body> start",
+ "add-custom-html-before-body-end": "Lägg till anpassad HTML före </body> slut",
+ "error-undefined": "Något gick fel",
+ "error-ldap-login": "Ett fel uppstod när du försökte logga in",
+ "display-authentication-method": "Visa autentiseringsmetod",
+ "default-authentication-method": "Standard autentiseringsmetod",
+ "duplicate-board": "Dubblett anslagstavla",
+ "people-number": "Antalet personer är:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Återställ alla",
+ "delete-all": "Ta bort alla",
+ "loading": "Läser in, var god vänta.",
+ "previous_as": "förra gången var",
+ "act-a-dueAt": "ändrad förfallotid till \nNär: __timeValue__\nVar: __card__\n tidigare förfallotid var __timeOldValue__",
+ "act-a-endAt": "ändrad sluttid till __timeValue__ från (__timeOldValue__)",
+ "act-a-startAt": "ändrad starttid till __timeValue__ från (__timeOldValue__)",
+ "act-a-receivedAt": "ändrad mottagen tid till __timeValue__ från (__timeOldValue__)",
+ "a-dueAt": "ändrad förfallotid att vara",
+ "a-endAt": "ändrad sluttid att vara",
+ "a-startAt": "ändrad starttid att vara",
+ "a-receivedAt": "ändrad mottagen tid att vara",
+ "almostdue": "aktuell förfallotid %s närmar sig",
+ "pastdue": "aktuell förfallotid %s är förbi",
+ "duenow": "aktuell förfallotid %s är idag",
+ "act-withDue": "__card__ förfallotidspåminnelser [__board__]",
+ "act-almostdue": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ närmar sig",
+ "act-pastdue": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ är förbi",
+ "act-duenow": "påminde om den aktuella förfallotiden (__timeValue__) av __card__ är nu",
+ "act-atUserComment": "Du nämndes i [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/sw.i18n.json b/i18n/sw.i18n.json
index bb9a17c6..573b3045 100644
--- a/i18n/sw.i18n.json
+++ b/i18n/sw.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Kubali",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Rudi",
- "board-change-color": "Badilisha rangi",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Muda uliotumika",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Badilisha tarehe",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Funga",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "Nyeusi",
- "color-blue": "Samawati",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "Kijani",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Changia",
- "comment-placeholder": "Andika changio",
- "comment-only": "Changia pekee",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Tarakilishi",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Kubali",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Rudi",
+ "board-change-color": "Badilisha rangi",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Muda uliotumika",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Badilisha tarehe",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Funga",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "Nyeusi",
+ "color-blue": "Samawati",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "Kijani",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Changia",
+ "comment-placeholder": "Andika changio",
+ "comment-only": "Changia pekee",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Tarakilishi",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/ta.i18n.json b/i18n/ta.i18n.json
index b8c7dfd6..a248c669 100644
--- a/i18n/ta.i18n.json
+++ b/i18n/ta.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "ஏற்றுக்கொள்",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "உருவாக்கப்பட்டது ",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "சேர்ந்தது ",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "பிரிக்கப்பட்டது ",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "சேர் ",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "இணைப்பு ",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "இணைப்புகள் ",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "பின்செல் ",
- "board-change-color": "நிறம் மாற்று ",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "நாள்கட்டி ",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "மேலும் ",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "கடவுச்சொல்லை மாற்று ",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "கடவுச்சொல்லை மாற்றுக ",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "அடர் பச்சை ",
- "color-gold": "தங்கம் ",
- "color-gray": "gray",
- "color-green": "பச்சை ",
- "color-indigo": "indigo",
- "color-lime": "வெளிர் பச்சை ",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "ஆரஞ்சு ",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "சிகப்பு ",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "வெள்ளி ",
- "color-sky": "வாணம் ",
- "color-slateblue": "slateblue",
- "color-white": "வெள்ளை ",
- "color-yellow": "மஞ்சள் ",
- "unset-color": "Unset",
- "comment": "கருத்து ",
- "comment-placeholder": "Write Comment",
- "comment-only": "கருத்து மட்டும் ",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "கருத்து இல்லை ",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "கணினி ",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "தேடு ",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "உருவாக்கு ",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "நாள் ",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "எண் ",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "நாள் ",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "பதிவிறக்கம் ",
- "edit": "திருத்து ",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "மின் அஞ்சல் ",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "முழு பெயர் ",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "தொடக்கம் ",
- "import": "பதிவேற்றம் ",
- "link": "இணை ",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "Trello ல் இருந்து ",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "மொழி ",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "நிறத்தை மாற்று ",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "மேலும் ",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "பெயர் ",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "கடவுச்சொல் ",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "தனியார் ",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "பொது ",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "பெயர்மாற்றம் ",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "சேமி ",
- "search": "தேடு ",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "சந்தா ",
- "team": "குழு ",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "அழைப்பு ",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "கடவுச்சொல் ",
- "smtp-tls": "TLS support",
- "send-from": "அனுப்புனர் ",
- "send-smtp-test": "சோதனை மின்னஞ்சல் அணுப்புக ",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "முடிவு ",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "சேர் ",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "ஏற்றுக்கொள்",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "உருவாக்கப்பட்டது ",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "சேர்ந்தது ",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "பிரிக்கப்பட்டது ",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "சேர் ",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "இணைப்பு ",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "இணைப்புகள் ",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "பின்செல் ",
+ "board-change-color": "நிறம் மாற்று ",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "நாள்கட்டி ",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "மேலும் ",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "கடவுச்சொல்லை மாற்று ",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "கடவுச்சொல்லை மாற்றுக ",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "அடர் பச்சை ",
+ "color-gold": "தங்கம் ",
+ "color-gray": "gray",
+ "color-green": "பச்சை ",
+ "color-indigo": "indigo",
+ "color-lime": "வெளிர் பச்சை ",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "ஆரஞ்சு ",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "சிகப்பு ",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "வெள்ளி ",
+ "color-sky": "வாணம் ",
+ "color-slateblue": "slateblue",
+ "color-white": "வெள்ளை ",
+ "color-yellow": "மஞ்சள் ",
+ "unset-color": "Unset",
+ "comment": "கருத்து ",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "கருத்து மட்டும் ",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "கருத்து இல்லை ",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "கணினி ",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "தேடு ",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "உருவாக்கு ",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "நாள் ",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "எண் ",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "நாள் ",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "பதிவிறக்கம் ",
+ "edit": "திருத்து ",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "மின் அஞ்சல் ",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "முழு பெயர் ",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "தொடக்கம் ",
+ "import": "பதிவேற்றம் ",
+ "link": "இணை ",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "Trello ல் இருந்து ",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "மொழி ",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "நிறத்தை மாற்று ",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "மேலும் ",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "பெயர் ",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "கடவுச்சொல் ",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "தனியார் ",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "பொது ",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "பெயர்மாற்றம் ",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "சேமி ",
+ "search": "தேடு ",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "சந்தா ",
+ "team": "குழு ",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "அழைப்பு ",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "கடவுச்சொல் ",
+ "smtp-tls": "TLS support",
+ "send-from": "அனுப்புனர் ",
+ "send-smtp-test": "சோதனை மின்னஞ்சல் அணுப்புக ",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "முடிவு ",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "சேர் ",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/th.i18n.json b/i18n/th.i18n.json
index 6b5bfaf0..a7aa7526 100644
--- a/i18n/th.i18n.json
+++ b/i18n/th.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "ยอมรับ",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "ปฎิบัติการ",
- "activities": "กิจกรรม",
- "activity": "กิจกรรม",
- "activity-added": "เพิ่ม %s ไปยัง %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "แนบ %s ไปยัง %s",
- "activity-created": "สร้าง %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "ยกเว้น %s จาก %s",
- "activity-imported": "ถูกนำเข้า %s ไปยัง %s จาก %s",
- "activity-imported-board": "นำเข้า %s จาก %s",
- "activity-joined": "เข้าร่วม %s",
- "activity-moved": "ย้าย %s จาก %s ถึง %s",
- "activity-on": "บน %s",
- "activity-removed": "ลบ %s จาด %s",
- "activity-sent": "ส่ง %s ถึง %s",
- "activity-unjoined": "ยกเลิกเข้าร่วม %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "รายการถูกเพิ่มไป %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "เพิ่ม",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "เพิ่มรายการตรวจสอบ",
- "add-cover": "เพิ่มหน้าปก",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "เพิ่มสมาชิก",
- "added": "เพิ่ม",
- "addMemberPopup-title": "สมาชิก",
- "admin": "ผู้ดูแลระบบ",
- "admin-desc": "สามารถดูและแก้ไขการ์ด ลบสมาชิก และเปลี่ยนการตั้งค่าบอร์ดได้",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "บอร์ดทั้งหมด",
- "and-n-other-card": "และการ์ดอื่น __count__",
- "and-n-other-card_plural": "และการ์ดอื่น ๆ __count__",
- "apply": "นำมาใช้",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "เอกสารที่เก็บไว้",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "เอกสารที่เก็บไว้",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "กำหนดสมาชิก",
- "attached": "แนบมาด้วย",
- "attachment": "สิ่งที่แนบมา",
- "attachment-delete-pop": "ลบสิ่งที่แนบมาถาวร ไม่สามารถเลิกทำได้",
- "attachmentDeletePopup-title": "ลบสิ่งที่แนบมาหรือไม่",
- "attachments": "สิ่งที่แนบมา",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "ย้อนกลับ",
- "board-change-color": "เปลี่ยนสี",
- "board-nb-stars": "ติดดาว %s",
- "board-not-found": "ไม่มีบอร์ด",
- "board-private-info": "บอร์ดนี้จะเป็น <strong>ส่วนตัว</strong>.",
- "board-public-info": "บอร์ดนี้จะเป็น <strong>สาธารณะ</strong>.",
- "boardChangeColorPopup-title": "เปลี่ยนสีพื้นหลังบอร์ด",
- "boardChangeTitlePopup-title": "เปลี่ยนชื่อบอร์ด",
- "boardChangeVisibilityPopup-title": "เปลี่ยนการเข้าถึง",
- "boardChangeWatchPopup-title": "เปลี่ยนการเฝ้าดู",
- "boardMenuPopup-title": "Board Settings",
- "boards": "บอร์ด",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "รายการ",
- "bucket-example": "ตัวอย่างเช่น “ระบบที่ต้องทำ”",
- "cancel": "ยกเลิก",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "การ์ดนี้มี %s ความเห็น.",
- "card-delete-notice": "เป็นการลบถาวร คุณจะสูญเสียข้อมูลที่เกี่ยวข้องกับการ์ดนี้ทั้งหมด",
- "card-delete-pop": "การดำเนินการทั้งหมดจะถูกลบจาก feed กิจกรรมและคุณไม่สามารถเปิดได้อีกครั้งหรือยกเลิกการทำ",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "ครบกำหนด",
- "card-due-on": "ครบกำหนดเมื่อ",
- "card-spent": "Spent Time",
- "card-edit-attachments": "แก้ไขสิ่งที่แนบมา",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "แก้ไขป้ายกำกับ",
- "card-edit-members": "แก้ไขสมาชิก",
- "card-labels-title": "เปลี่ยนป้ายกำกับของการ์ด",
- "card-members-title": "เพิ่มหรือลบสมาชิกของบอร์ดจากการ์ด",
- "card-start": "เริ่ม",
- "card-start-on": "เริ่มเมื่อ",
- "cardAttachmentsPopup-title": "แนบจาก",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "ลบการ์ดนี้หรือไม่",
- "cardDetailsActionsPopup-title": "การดำเนินการการ์ด",
- "cardLabelsPopup-title": "ป้ายกำกับ",
- "cardMembersPopup-title": "สมาชิก",
- "cardMorePopup-title": "เพิ่มเติม",
- "cardTemplatePopup-title": "Create template",
- "cards": "การ์ด",
- "cards-count": "การ์ด",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "เปลี่ยน",
- "change-avatar": "เปลี่ยนภาพ",
- "change-password": "เปลี่ยนรหัสผ่าน",
- "change-permissions": "เปลี่ยนสิทธิ์",
- "change-settings": "เปลี่ยนการตั้งค่า",
- "changeAvatarPopup-title": "เปลี่ยนภาพ",
- "changeLanguagePopup-title": "เปลี่ยนภาษา",
- "changePasswordPopup-title": "เปลี่ยนรหัสผ่าน",
- "changePermissionsPopup-title": "เปลี่ยนสิทธิ์",
- "changeSettingsPopup-title": "เปลี่ยนการตั้งค่า",
- "subtasks": "Subtasks",
- "checklists": "รายการตรวจสอบ",
- "click-to-star": "คลิกดาวบอร์ดนี้",
- "click-to-unstar": "คลิกยกเลิกดาวบอร์ดนี้",
- "clipboard": "Clipboard หรือลากและวาง",
- "close": "ปิด",
- "close-board": "ปิดบอร์ด",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "ดำ",
- "color-blue": "น้ำเงิน",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "เขียว",
- "color-indigo": "indigo",
- "color-lime": "เหลืองมะนาว",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "ส้ม",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "ชมพู",
- "color-plum": "plum",
- "color-purple": "ม่วง",
- "color-red": "แดง",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "ฟ้า",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "เหลือง",
- "unset-color": "Unset",
- "comment": "คอมเม็นต์",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "คอมพิวเตอร์",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "ค้นหา",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "สร้าง",
- "createBoardPopup-title": "สร้างบอร์ด",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "สร้างป้ายกำกับ",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "ปัจจุบัน",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "วันที่",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "วันที่",
- "decline": "ปฎิเสธ",
- "default-avatar": "ภาพเริ่มต้น",
- "delete": "ลบ",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "ลบป้ายกำกับนี้หรือไม่",
- "description": "คำอธิบาย",
- "disambiguateMultiLabelPopup-title": "การดำเนินการกำกับป้ายชัดเจน",
- "disambiguateMultiMemberPopup-title": "การดำเนินการสมาชิกชัดเจน",
- "discard": "ทิ้ง",
- "done": "เสร็จสิ้น",
- "download": "ดาวน์โหลด",
- "edit": "แก้ไข",
- "edit-avatar": "เปลี่ยนภาพ",
- "edit-profile": "แก้ไขโปรไฟล์",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "เปลี่ยนวันเริ่มต้น",
- "editCardDueDatePopup-title": "เปลี่ยนวันครบกำหนด",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "เปลี่ยนป้ายกำกับ",
- "editNotificationPopup-title": "แก้ไขการแจ้งเตือน",
- "editProfilePopup-title": "แก้ไขโปรไฟล์",
- "email": "อีเมล์",
- "email-enrollAccount-subject": "บัญชีคุณถูกสร้างใน __siteName__",
- "email-enrollAccount-text": "สวัสดี __user__,\n\nเริ่มใช้บริการง่าย ๆ , ด้วยการคลิกลิงค์ด้านล่าง.\n\n__url__\n\n ขอบคุณค่ะ",
- "email-fail": "การส่งอีเมล์ล้มเหลว",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "อีเมล์ไม่ถูกต้อง",
- "email-invite": "เชิญผ่านทางอีเมล์",
- "email-invite-subject": "__inviter__ ส่งคำเชิญให้คุณ",
- "email-invite-text": "สวัสดี __user__,\n\n__inviter__ ขอเชิญคุณเข้าร่วม \"__board__\" เพื่อขอความร่วมมือ \n\n โปรดคลิกตามลิงค์ข้างล่างนี้ \n\n__url__\n\n ขอบคุณ",
- "email-resetPassword-subject": "ตั้งรหัสผ่่านใหม่ของคุณบน __siteName__",
- "email-resetPassword-text": "สวัสดี __user__,\n\nในการรีเซ็ตรหัสผ่านของคุณ, คลิกตามลิงค์ด้านล่าง \n\n__url__\n\nขอบคุณค่ะ",
- "email-sent": "ส่งอีเมล์",
- "email-verifyEmail-subject": "ยืนยันที่อยู่อีเม์ของคุณบน __siteName__",
- "email-verifyEmail-text": "สวัสดี __user__,\n\nตรวจสอบบัญชีอีเมล์ของคุณ ง่าย ๆ ตามลิงค์ด้านล่าง \n\n__url__\n\n ขอบคุณค่ะ",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "บอร์ดนี้ไม่มีอยู่แล้ว",
- "error-board-notAdmin": "คุณจะต้องเป็นผู้ดูแลระบบถึงจะทำสิ่งเหล่านี้ได้",
- "error-board-notAMember": "คุณต้องเป็นสมาชิกของบอร์ดนี้ถึงจะทำได้",
- "error-json-malformed": "ข้อความของคุณไม่ใช่ JSON",
- "error-json-schema": "รูปแบบข้้้อมูล JSON ของคุณไม่ถูกต้อง",
- "error-list-doesNotExist": "รายการนี้ไม่มีอยู่",
- "error-user-doesNotExist": "ผู้ใช้นี้ไม่มีอยู่",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "ผู้ใช้รายนี้ไม่ได้สร้าง",
- "error-username-taken": "ชื่อนี้ถูกใช้งานแล้ว",
- "error-email-taken": "Email has already been taken",
- "export-board": "ส่งออกกระดาน",
- "filter": "กรอง",
- "filter-cards": "กรองการ์ด",
- "filter-clear": "ล้างตัวกรอง",
- "filter-no-label": "ไม่มีฉลาก",
- "filter-no-member": "ไม่มีสมาชิก",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "กรองบน",
- "filter-on-desc": "คุณกำลังกรองการ์ดในบอร์ดนี้ คลิกที่นี่เพื่อแก้ไขตัวกรอง",
- "filter-to-selection": "กรองตัวเลือก",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "ชื่อ นามสกุล",
- "header-logo-title": "ย้อนกลับไปที่หน้าบอร์ดของคุณ",
- "hide-system-messages": "ซ่อนข้อความของระบบ",
- "headerBarCreateBoardPopup-title": "สร้างบอร์ด",
- "home": "หน้าหลัก",
- "import": "นำเข้า",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "นำเข้าบอร์ดจาก Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "ใน Trello ของคุณให้ไปที่ 'Menu' และไปที่ More -> Print and Export -> Export JSON และคัดลอกข้อความจากนั้น",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "วางข้อมูล JSON ที่ถูกต้องของคุณที่นี่",
- "import-map-members": "แผนที่สมาชิก",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review การทำแผนที่สมาชิก",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "ชื่อย่อ",
- "invalid-date": "วันที่ไม่ถูกต้อง",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "เข้าร่วม",
- "just-invited": "คุณพึ่งได้รับเชิญบอร์ดนี้",
- "keyboard-shortcuts": "แป้นพิมพ์ลัด",
- "label-create": "สร้างป้ายกำกับ",
- "label-default": "ป้าย %s (ค่าเริ่มต้น)",
- "label-delete-pop": "ไม่มีการยกเลิกการทำนี้ ลบป้ายกำกับนี้จากทุกการ์ดและล้างประวัติทิ้ง",
- "labels": "ป้ายกำกับ",
- "language": "ภาษา",
- "last-admin-desc": "คุณไม่สามารถเปลี่ยนบทบาทเพราะต้องมีผู้ดูแลระบบหนึ่งคนเป็นอย่างน้อย",
- "leave-board": "ทิ้งบอร์ด",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "เชื่อมโยงไปยังการ์ดใบนี้",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "ย้ายการ์ดทั้งหมดในรายการนี้",
- "list-select-cards": "เลือกการ์ดทั้งหมดในรายการนี้",
- "set-color-list": "Set Color",
- "listActionPopup-title": "รายการการดำเนิน",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "นำเข้าการ์ด Trello",
- "listMorePopup-title": "เพิ่มเติม",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "รายการ",
- "swimlanes": "Swimlanes",
- "log-out": "ออกจากระบบ",
- "log-in": "เข้าสู่ระบบ",
- "loginPopup-title": "เข้าสู่ระบบ",
- "memberMenuPopup-title": "การตั้งค่า",
- "members": "สมาชิก",
- "menu": "เมนู",
- "move-selection": "ย้ายตัวเลือก",
- "moveCardPopup-title": "ย้ายการ์ด",
- "moveCardToBottom-title": "ย้ายไปล่าง",
- "moveCardToTop-title": "ย้ายไปบน",
- "moveSelectionPopup-title": "เลือกย้าย",
- "multi-selection": "เลือกหลายรายการ",
- "multi-selection-on": "เลือกหลายรายการเมื่อ",
- "muted": "ไม่ออกเสียง",
- "muted-info": "คุณจะไม่ได้รับแจ้งการเปลี่ยนแปลงใด ๆ ในบอร์ดนี้",
- "my-boards": "บอร์ดของฉัน",
- "name": "ชื่อ",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "ไม่มีข้อมูล",
- "normal": "ธรรมดา",
- "normal-desc": "สามารถดูและแก้ไขการ์ดได้ แต่ไม่สามารถเปลี่ยนการตั้งค่าได้",
- "not-accepted-yet": "ยังไม่ยอมรับคำเชิญ",
- "notify-participate": "ได้รับการแจ้งปรับปรุงการ์ดอื่น ๆ ที่คุณมีส่วนร่วมในฐานะผู้สร้างหรือสมาชิก",
- "notify-watch": "ได้รับการแจ้งปรับปรุงบอร์ด รายการหรือการ์ดที่คุณเฝ้าติดตาม",
- "optional": "ไม่จำเป็น",
- "or": "หรือ",
- "page-maybe-private": "หน้านี้อาจจะเป็นส่วนตัว. คุณอาจจะสามารถดูจาก <a href='%s'>logging in</a>.",
- "page-not-found": "ไม่พบหน้า",
- "password": "รหัสผ่าน",
- "paste-or-dragdrop": "วาง หรือลากและวาง ไฟล์ภาพ(ภาพเท่านั้น)",
- "participating": "Participating",
- "preview": "ภาพตัวอย่าง",
- "previewAttachedImagePopup-title": "ตัวอย่าง",
- "previewClipboardImagePopup-title": "ตัวอย่าง",
- "private": "ส่วนตัว",
- "private-desc": "บอร์ดนี้เป็นส่วนตัว. คนที่ถูกเพิ่มเข้าในบอร์ดเท่านั้นที่สามารถดูและแก้ไขได้",
- "profile": "โปรไฟล์",
- "public": "สาธารณะ",
- "public-desc": "บอร์ดนี้เป็นสาธารณะ. ทุกคนสามารถเข้าถึงได้ผ่าน url นี้ แต่สามารถแก้ไขได้เฉพาะผู้ที่ถูกเพิ่มเข้าไปในการ์ดเท่านั้น",
- "quick-access-description": "เพิ่มไว้ในนี้เพื่อเป็นทางลัด",
- "remove-cover": "ลบหน้าปก",
- "remove-from-board": "ลบจากบอร์ด",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "ลบสมาชิก",
- "remove-member-from-card": "ลบจากการ์ด",
- "remove-member-pop": "ลบ __name__ (__username__) จาก __boardTitle__ หรือไม่ สมาชิกจะถูกลบออกจากการ์ดทั้งหมดบนบอร์ดนี้ และพวกเขาจะได้รับการแจ้งเตือน",
- "removeMemberPopup-title": "ลบสมาชิกหรือไม่",
- "rename": "ตั้งชื่อใหม่",
- "rename-board": "ตั้งชื่อบอร์ดใหม่",
- "restore": "กู้คืน",
- "save": "บันทึก",
- "search": "ค้นหา",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "กำหนดตัวเองให้การ์ดนี้",
- "shortcut-autocomplete-emoji": "เติม emoji อัตโนมัติ",
- "shortcut-autocomplete-members": "เติมสมาชิกอัตโนมัติ",
- "shortcut-clear-filters": "ล้างตัวกรองทั้งหมด",
- "shortcut-close-dialog": "ปิดหน้าต่าง",
- "shortcut-filter-my-cards": "กรองการ์ดฉัน",
- "shortcut-show-shortcuts": "นำรายการทางลัดนี้ขึ้น",
- "shortcut-toggle-filterbar": "สลับแถบกรองสไลด์ด้้านข้าง",
- "shortcut-toggle-sidebar": "สลับโชว์แถบด้านข้าง",
- "show-cards-minimum-count": "แสดงจำนวนของการ์ดถ้ารายการมีมากกว่า(เลื่อนกำหนดตัวเลข)",
- "sidebar-open": "เปิดแถบเลื่อน",
- "sidebar-close": "ปิดแถบเลื่อน",
- "signupPopup-title": "สร้างบัญชี",
- "star-board-title": "คลิกติดดาวบอร์ดนี้ มันจะแสดงอยู่บนสุดของรายการบอร์ดของคุณ",
- "starred-boards": "ติดดาวบอร์ด",
- "starred-boards-description": "ติดดาวบอร์ดและแสดงไว้บนสุดของรายการบอร์ด",
- "subscribe": "บอกรับสมาชิก",
- "team": "ทีม",
- "this-board": "บอร์ดนี้",
- "this-card": "การ์ดนี้",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "เวลา",
- "title": "หัวข้อ",
- "tracking": "ติดตาม",
- "tracking-info": "คุณจะได้รับแจ้งการเปลี่ยนแปลงใด ๆ กับการ์ดที่คุณมีส่วนร่วมในฐานะผู้สร้างหรือสมาชิก",
- "type": "Type",
- "unassign-member": "ยกเลิกสมาชิก",
- "unsaved-description": "คุณมีคำอธิบายที่ไม่ได้บันทึก",
- "unwatch": "เลิกเฝ้าดู",
- "upload": "อัพโหลด",
- "upload-avatar": "อัพโหลดรูปภาพ",
- "uploaded-avatar": "ภาพอัพโหลดแล้ว",
- "username": "ชื่อผู้ใช้งาน",
- "view-it": "ดู",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "เฝ้าดู",
- "watching": "เฝ้าดู",
- "watching-info": "คุณจะได้รับแจ้งหากมีการเปลี่ยนแปลงใด ๆ ในบอร์ดนี้",
- "welcome-board": "ยินดีต้อนรับสู่บอร์ด",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "พื้นฐาน",
- "welcome-list2": "ก้าวหน้า",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "ต้องการทำอะไร",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "ชื่อผู้ใช้งาน",
- "smtp-password": "รหัสผ่าน",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ ส่งคำเชิญให้คุณ",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "เพิ่ม",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "ยอมรับ",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "ปฎิบัติการ",
+ "activities": "กิจกรรม",
+ "activity": "กิจกรรม",
+ "activity-added": "เพิ่ม %s ไปยัง %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "แนบ %s ไปยัง %s",
+ "activity-created": "สร้าง %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "ยกเว้น %s จาก %s",
+ "activity-imported": "ถูกนำเข้า %s ไปยัง %s จาก %s",
+ "activity-imported-board": "นำเข้า %s จาก %s",
+ "activity-joined": "เข้าร่วม %s",
+ "activity-moved": "ย้าย %s จาก %s ถึง %s",
+ "activity-on": "บน %s",
+ "activity-removed": "ลบ %s จาด %s",
+ "activity-sent": "ส่ง %s ถึง %s",
+ "activity-unjoined": "ยกเลิกเข้าร่วม %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "รายการถูกเพิ่มไป %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "เพิ่ม",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "เพิ่มรายการตรวจสอบ",
+ "add-cover": "เพิ่มหน้าปก",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "เพิ่มสมาชิก",
+ "added": "เพิ่ม",
+ "addMemberPopup-title": "สมาชิก",
+ "admin": "ผู้ดูแลระบบ",
+ "admin-desc": "สามารถดูและแก้ไขการ์ด ลบสมาชิก และเปลี่ยนการตั้งค่าบอร์ดได้",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "บอร์ดทั้งหมด",
+ "and-n-other-card": "และการ์ดอื่น __count__",
+ "and-n-other-card_plural": "และการ์ดอื่น ๆ __count__",
+ "apply": "นำมาใช้",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "เอกสารที่เก็บไว้",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "เอกสารที่เก็บไว้",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "กำหนดสมาชิก",
+ "attached": "แนบมาด้วย",
+ "attachment": "สิ่งที่แนบมา",
+ "attachment-delete-pop": "ลบสิ่งที่แนบมาถาวร ไม่สามารถเลิกทำได้",
+ "attachmentDeletePopup-title": "ลบสิ่งที่แนบมาหรือไม่",
+ "attachments": "สิ่งที่แนบมา",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "ย้อนกลับ",
+ "board-change-color": "เปลี่ยนสี",
+ "board-nb-stars": "ติดดาว %s",
+ "board-not-found": "ไม่มีบอร์ด",
+ "board-private-info": "บอร์ดนี้จะเป็น <strong>ส่วนตัว</strong>.",
+ "board-public-info": "บอร์ดนี้จะเป็น <strong>สาธารณะ</strong>.",
+ "boardChangeColorPopup-title": "เปลี่ยนสีพื้นหลังบอร์ด",
+ "boardChangeTitlePopup-title": "เปลี่ยนชื่อบอร์ด",
+ "boardChangeVisibilityPopup-title": "เปลี่ยนการเข้าถึง",
+ "boardChangeWatchPopup-title": "เปลี่ยนการเฝ้าดู",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "บอร์ด",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "รายการ",
+ "bucket-example": "ตัวอย่างเช่น “ระบบที่ต้องทำ”",
+ "cancel": "ยกเลิก",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "การ์ดนี้มี %s ความเห็น.",
+ "card-delete-notice": "เป็นการลบถาวร คุณจะสูญเสียข้อมูลที่เกี่ยวข้องกับการ์ดนี้ทั้งหมด",
+ "card-delete-pop": "การดำเนินการทั้งหมดจะถูกลบจาก feed กิจกรรมและคุณไม่สามารถเปิดได้อีกครั้งหรือยกเลิกการทำ",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "ครบกำหนด",
+ "card-due-on": "ครบกำหนดเมื่อ",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "แก้ไขสิ่งที่แนบมา",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "แก้ไขป้ายกำกับ",
+ "card-edit-members": "แก้ไขสมาชิก",
+ "card-labels-title": "เปลี่ยนป้ายกำกับของการ์ด",
+ "card-members-title": "เพิ่มหรือลบสมาชิกของบอร์ดจากการ์ด",
+ "card-start": "เริ่ม",
+ "card-start-on": "เริ่มเมื่อ",
+ "cardAttachmentsPopup-title": "แนบจาก",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "ลบการ์ดนี้หรือไม่",
+ "cardDetailsActionsPopup-title": "การดำเนินการการ์ด",
+ "cardLabelsPopup-title": "ป้ายกำกับ",
+ "cardMembersPopup-title": "สมาชิก",
+ "cardMorePopup-title": "เพิ่มเติม",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "การ์ด",
+ "cards-count": "การ์ด",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "เปลี่ยน",
+ "change-avatar": "เปลี่ยนภาพ",
+ "change-password": "เปลี่ยนรหัสผ่าน",
+ "change-permissions": "เปลี่ยนสิทธิ์",
+ "change-settings": "เปลี่ยนการตั้งค่า",
+ "changeAvatarPopup-title": "เปลี่ยนภาพ",
+ "changeLanguagePopup-title": "เปลี่ยนภาษา",
+ "changePasswordPopup-title": "เปลี่ยนรหัสผ่าน",
+ "changePermissionsPopup-title": "เปลี่ยนสิทธิ์",
+ "changeSettingsPopup-title": "เปลี่ยนการตั้งค่า",
+ "subtasks": "Subtasks",
+ "checklists": "รายการตรวจสอบ",
+ "click-to-star": "คลิกดาวบอร์ดนี้",
+ "click-to-unstar": "คลิกยกเลิกดาวบอร์ดนี้",
+ "clipboard": "Clipboard หรือลากและวาง",
+ "close": "ปิด",
+ "close-board": "ปิดบอร์ด",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "ดำ",
+ "color-blue": "น้ำเงิน",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "เขียว",
+ "color-indigo": "indigo",
+ "color-lime": "เหลืองมะนาว",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "ส้ม",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "ชมพู",
+ "color-plum": "plum",
+ "color-purple": "ม่วง",
+ "color-red": "แดง",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "ฟ้า",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "เหลือง",
+ "unset-color": "Unset",
+ "comment": "คอมเม็นต์",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "คอมพิวเตอร์",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "ค้นหา",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "สร้าง",
+ "createBoardPopup-title": "สร้างบอร์ด",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "สร้างป้ายกำกับ",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "ปัจจุบัน",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "วันที่",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "วันที่",
+ "decline": "ปฎิเสธ",
+ "default-avatar": "ภาพเริ่มต้น",
+ "delete": "ลบ",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "ลบป้ายกำกับนี้หรือไม่",
+ "description": "คำอธิบาย",
+ "disambiguateMultiLabelPopup-title": "การดำเนินการกำกับป้ายชัดเจน",
+ "disambiguateMultiMemberPopup-title": "การดำเนินการสมาชิกชัดเจน",
+ "discard": "ทิ้ง",
+ "done": "เสร็จสิ้น",
+ "download": "ดาวน์โหลด",
+ "edit": "แก้ไข",
+ "edit-avatar": "เปลี่ยนภาพ",
+ "edit-profile": "แก้ไขโปรไฟล์",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "เปลี่ยนวันเริ่มต้น",
+ "editCardDueDatePopup-title": "เปลี่ยนวันครบกำหนด",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "เปลี่ยนป้ายกำกับ",
+ "editNotificationPopup-title": "แก้ไขการแจ้งเตือน",
+ "editProfilePopup-title": "แก้ไขโปรไฟล์",
+ "email": "อีเมล์",
+ "email-enrollAccount-subject": "บัญชีคุณถูกสร้างใน __siteName__",
+ "email-enrollAccount-text": "สวัสดี __user__,\n\nเริ่มใช้บริการง่าย ๆ , ด้วยการคลิกลิงค์ด้านล่าง.\n\n__url__\n\n ขอบคุณค่ะ",
+ "email-fail": "การส่งอีเมล์ล้มเหลว",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "อีเมล์ไม่ถูกต้อง",
+ "email-invite": "เชิญผ่านทางอีเมล์",
+ "email-invite-subject": "__inviter__ ส่งคำเชิญให้คุณ",
+ "email-invite-text": "สวัสดี __user__,\n\n__inviter__ ขอเชิญคุณเข้าร่วม \"__board__\" เพื่อขอความร่วมมือ \n\n โปรดคลิกตามลิงค์ข้างล่างนี้ \n\n__url__\n\n ขอบคุณ",
+ "email-resetPassword-subject": "ตั้งรหัสผ่่านใหม่ของคุณบน __siteName__",
+ "email-resetPassword-text": "สวัสดี __user__,\n\nในการรีเซ็ตรหัสผ่านของคุณ, คลิกตามลิงค์ด้านล่าง \n\n__url__\n\nขอบคุณค่ะ",
+ "email-sent": "ส่งอีเมล์",
+ "email-verifyEmail-subject": "ยืนยันที่อยู่อีเม์ของคุณบน __siteName__",
+ "email-verifyEmail-text": "สวัสดี __user__,\n\nตรวจสอบบัญชีอีเมล์ของคุณ ง่าย ๆ ตามลิงค์ด้านล่าง \n\n__url__\n\n ขอบคุณค่ะ",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "บอร์ดนี้ไม่มีอยู่แล้ว",
+ "error-board-notAdmin": "คุณจะต้องเป็นผู้ดูแลระบบถึงจะทำสิ่งเหล่านี้ได้",
+ "error-board-notAMember": "คุณต้องเป็นสมาชิกของบอร์ดนี้ถึงจะทำได้",
+ "error-json-malformed": "ข้อความของคุณไม่ใช่ JSON",
+ "error-json-schema": "รูปแบบข้้้อมูล JSON ของคุณไม่ถูกต้อง",
+ "error-list-doesNotExist": "รายการนี้ไม่มีอยู่",
+ "error-user-doesNotExist": "ผู้ใช้นี้ไม่มีอยู่",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "ผู้ใช้รายนี้ไม่ได้สร้าง",
+ "error-username-taken": "ชื่อนี้ถูกใช้งานแล้ว",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "ส่งออกกระดาน",
+ "filter": "กรอง",
+ "filter-cards": "กรองการ์ด",
+ "filter-clear": "ล้างตัวกรอง",
+ "filter-no-label": "ไม่มีฉลาก",
+ "filter-no-member": "ไม่มีสมาชิก",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "กรองบน",
+ "filter-on-desc": "คุณกำลังกรองการ์ดในบอร์ดนี้ คลิกที่นี่เพื่อแก้ไขตัวกรอง",
+ "filter-to-selection": "กรองตัวเลือก",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "ชื่อ นามสกุล",
+ "header-logo-title": "ย้อนกลับไปที่หน้าบอร์ดของคุณ",
+ "hide-system-messages": "ซ่อนข้อความของระบบ",
+ "headerBarCreateBoardPopup-title": "สร้างบอร์ด",
+ "home": "หน้าหลัก",
+ "import": "นำเข้า",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "นำเข้าบอร์ดจาก Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "ใน Trello ของคุณให้ไปที่ 'Menu' และไปที่ More -> Print and Export -> Export JSON และคัดลอกข้อความจากนั้น",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "วางข้อมูล JSON ที่ถูกต้องของคุณที่นี่",
+ "import-map-members": "แผนที่สมาชิก",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review การทำแผนที่สมาชิก",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "ชื่อย่อ",
+ "invalid-date": "วันที่ไม่ถูกต้อง",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "เข้าร่วม",
+ "just-invited": "คุณพึ่งได้รับเชิญบอร์ดนี้",
+ "keyboard-shortcuts": "แป้นพิมพ์ลัด",
+ "label-create": "สร้างป้ายกำกับ",
+ "label-default": "ป้าย %s (ค่าเริ่มต้น)",
+ "label-delete-pop": "ไม่มีการยกเลิกการทำนี้ ลบป้ายกำกับนี้จากทุกการ์ดและล้างประวัติทิ้ง",
+ "labels": "ป้ายกำกับ",
+ "language": "ภาษา",
+ "last-admin-desc": "คุณไม่สามารถเปลี่ยนบทบาทเพราะต้องมีผู้ดูแลระบบหนึ่งคนเป็นอย่างน้อย",
+ "leave-board": "ทิ้งบอร์ด",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "เชื่อมโยงไปยังการ์ดใบนี้",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "ย้ายการ์ดทั้งหมดในรายการนี้",
+ "list-select-cards": "เลือกการ์ดทั้งหมดในรายการนี้",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "รายการการดำเนิน",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "นำเข้าการ์ด Trello",
+ "listMorePopup-title": "เพิ่มเติม",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "รายการ",
+ "swimlanes": "Swimlanes",
+ "log-out": "ออกจากระบบ",
+ "log-in": "เข้าสู่ระบบ",
+ "loginPopup-title": "เข้าสู่ระบบ",
+ "memberMenuPopup-title": "การตั้งค่า",
+ "members": "สมาชิก",
+ "menu": "เมนู",
+ "move-selection": "ย้ายตัวเลือก",
+ "moveCardPopup-title": "ย้ายการ์ด",
+ "moveCardToBottom-title": "ย้ายไปล่าง",
+ "moveCardToTop-title": "ย้ายไปบน",
+ "moveSelectionPopup-title": "เลือกย้าย",
+ "multi-selection": "เลือกหลายรายการ",
+ "multi-selection-on": "เลือกหลายรายการเมื่อ",
+ "muted": "ไม่ออกเสียง",
+ "muted-info": "คุณจะไม่ได้รับแจ้งการเปลี่ยนแปลงใด ๆ ในบอร์ดนี้",
+ "my-boards": "บอร์ดของฉัน",
+ "name": "ชื่อ",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "ไม่มีข้อมูล",
+ "normal": "ธรรมดา",
+ "normal-desc": "สามารถดูและแก้ไขการ์ดได้ แต่ไม่สามารถเปลี่ยนการตั้งค่าได้",
+ "not-accepted-yet": "ยังไม่ยอมรับคำเชิญ",
+ "notify-participate": "ได้รับการแจ้งปรับปรุงการ์ดอื่น ๆ ที่คุณมีส่วนร่วมในฐานะผู้สร้างหรือสมาชิก",
+ "notify-watch": "ได้รับการแจ้งปรับปรุงบอร์ด รายการหรือการ์ดที่คุณเฝ้าติดตาม",
+ "optional": "ไม่จำเป็น",
+ "or": "หรือ",
+ "page-maybe-private": "หน้านี้อาจจะเป็นส่วนตัว. คุณอาจจะสามารถดูจาก <a href='%s'>logging in</a>.",
+ "page-not-found": "ไม่พบหน้า",
+ "password": "รหัสผ่าน",
+ "paste-or-dragdrop": "วาง หรือลากและวาง ไฟล์ภาพ(ภาพเท่านั้น)",
+ "participating": "Participating",
+ "preview": "ภาพตัวอย่าง",
+ "previewAttachedImagePopup-title": "ตัวอย่าง",
+ "previewClipboardImagePopup-title": "ตัวอย่าง",
+ "private": "ส่วนตัว",
+ "private-desc": "บอร์ดนี้เป็นส่วนตัว. คนที่ถูกเพิ่มเข้าในบอร์ดเท่านั้นที่สามารถดูและแก้ไขได้",
+ "profile": "โปรไฟล์",
+ "public": "สาธารณะ",
+ "public-desc": "บอร์ดนี้เป็นสาธารณะ. ทุกคนสามารถเข้าถึงได้ผ่าน url นี้ แต่สามารถแก้ไขได้เฉพาะผู้ที่ถูกเพิ่มเข้าไปในการ์ดเท่านั้น",
+ "quick-access-description": "เพิ่มไว้ในนี้เพื่อเป็นทางลัด",
+ "remove-cover": "ลบหน้าปก",
+ "remove-from-board": "ลบจากบอร์ด",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "ลบสมาชิก",
+ "remove-member-from-card": "ลบจากการ์ด",
+ "remove-member-pop": "ลบ __name__ (__username__) จาก __boardTitle__ หรือไม่ สมาชิกจะถูกลบออกจากการ์ดทั้งหมดบนบอร์ดนี้ และพวกเขาจะได้รับการแจ้งเตือน",
+ "removeMemberPopup-title": "ลบสมาชิกหรือไม่",
+ "rename": "ตั้งชื่อใหม่",
+ "rename-board": "ตั้งชื่อบอร์ดใหม่",
+ "restore": "กู้คืน",
+ "save": "บันทึก",
+ "search": "ค้นหา",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "กำหนดตัวเองให้การ์ดนี้",
+ "shortcut-autocomplete-emoji": "เติม emoji อัตโนมัติ",
+ "shortcut-autocomplete-members": "เติมสมาชิกอัตโนมัติ",
+ "shortcut-clear-filters": "ล้างตัวกรองทั้งหมด",
+ "shortcut-close-dialog": "ปิดหน้าต่าง",
+ "shortcut-filter-my-cards": "กรองการ์ดฉัน",
+ "shortcut-show-shortcuts": "นำรายการทางลัดนี้ขึ้น",
+ "shortcut-toggle-filterbar": "สลับแถบกรองสไลด์ด้้านข้าง",
+ "shortcut-toggle-sidebar": "สลับโชว์แถบด้านข้าง",
+ "show-cards-minimum-count": "แสดงจำนวนของการ์ดถ้ารายการมีมากกว่า(เลื่อนกำหนดตัวเลข)",
+ "sidebar-open": "เปิดแถบเลื่อน",
+ "sidebar-close": "ปิดแถบเลื่อน",
+ "signupPopup-title": "สร้างบัญชี",
+ "star-board-title": "คลิกติดดาวบอร์ดนี้ มันจะแสดงอยู่บนสุดของรายการบอร์ดของคุณ",
+ "starred-boards": "ติดดาวบอร์ด",
+ "starred-boards-description": "ติดดาวบอร์ดและแสดงไว้บนสุดของรายการบอร์ด",
+ "subscribe": "บอกรับสมาชิก",
+ "team": "ทีม",
+ "this-board": "บอร์ดนี้",
+ "this-card": "การ์ดนี้",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "เวลา",
+ "title": "หัวข้อ",
+ "tracking": "ติดตาม",
+ "tracking-info": "คุณจะได้รับแจ้งการเปลี่ยนแปลงใด ๆ กับการ์ดที่คุณมีส่วนร่วมในฐานะผู้สร้างหรือสมาชิก",
+ "type": "Type",
+ "unassign-member": "ยกเลิกสมาชิก",
+ "unsaved-description": "คุณมีคำอธิบายที่ไม่ได้บันทึก",
+ "unwatch": "เลิกเฝ้าดู",
+ "upload": "อัพโหลด",
+ "upload-avatar": "อัพโหลดรูปภาพ",
+ "uploaded-avatar": "ภาพอัพโหลดแล้ว",
+ "username": "ชื่อผู้ใช้งาน",
+ "view-it": "ดู",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "เฝ้าดู",
+ "watching": "เฝ้าดู",
+ "watching-info": "คุณจะได้รับแจ้งหากมีการเปลี่ยนแปลงใด ๆ ในบอร์ดนี้",
+ "welcome-board": "ยินดีต้อนรับสู่บอร์ด",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "พื้นฐาน",
+ "welcome-list2": "ก้าวหน้า",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "ต้องการทำอะไร",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "ชื่อผู้ใช้งาน",
+ "smtp-password": "รหัสผ่าน",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ ส่งคำเชิญให้คุณ",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "เพิ่ม",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json
index 6a4a2b8d..d51eecd1 100644
--- a/i18n/tr.i18n.json
+++ b/i18n/tr.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Kabul Et",
- "act-activity-notify": "Etkinlik Bildirimi",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "__board__ panosu oluşturuldu",
- "act-createSwimlane": "__board__ panosuna __swimlane__ kulvarı oluşturuldu",
- "act-createCard": "__board__ panosunun __swimlane__ kulvarının __list__ listesinin __card__ kartı oluşturuldu",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "__board__ panosuna __member__ kullanıcısı eklendi",
- "act-archivedBoard": "__board__ panosu Arşiv'e taşındı",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "__board__ panosu içeriye aktarıldı",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "İşlemler",
- "activities": "Etkinlikler",
- "activity": "Etkinlik",
- "activity-added": "%s içine %s ekledi",
- "activity-archived": "%s arşive taşındı",
- "activity-attached": "%s içine %s ekledi",
- "activity-created": "%s öğesini oluşturdu",
- "activity-customfield-created": "%s adlı özel alan yaratıldı",
- "activity-excluded": "%s içinden %s çıkarttı",
- "activity-imported": "%s kaynağından %s öğesini %s öğesinin içine taşıdı ",
- "activity-imported-board": "%s i %s içinden aktardı",
- "activity-joined": "şuna katıldı: %s",
- "activity-moved": "%s i %s içinden %s içine taşıdı",
- "activity-on": "%s",
- "activity-removed": "%s i %s ten kaldırdı",
- "activity-sent": "%s i %s e gönderdi",
- "activity-unjoined": "%s içinden ayrıldı",
- "activity-subtask-added": "Alt-görev %s'e eklendi",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "%s içine yapılacak listesi ekledi",
- "activity-checklist-removed": "%s Tarafından yapılacaklar listesi silinmiştir",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "%s içinde %s yapılacak listesine öğe ekledi",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Ekle",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Ek Ekle",
- "add-board": "Pano Ekle",
- "add-card": "Kart Ekle",
- "add-swimlane": "Kulvar Ekle",
- "add-subtask": "Alt Görev Ekle",
- "add-checklist": "Yapılacak Listesi Ekle",
- "add-checklist-item": "Yapılacak listesine yeni bir öğe ekle",
- "add-cover": "Kapak resmi ekle",
- "add-label": "Etiket Ekle",
- "add-list": "Liste Ekle",
- "add-members": "Üye ekle",
- "added": "Eklendi",
- "addMemberPopup-title": "Üyeler",
- "admin": "Yönetici",
- "admin-desc": "Kartları görüntüleyebilir ve düzenleyebilir, üyeleri çıkarabilir ve pano ayarlarını değiştirebilir.",
- "admin-announcement": "Duyuru",
- "admin-announcement-active": "Tüm Sistemde Etkin Duyuru",
- "admin-announcement-title": "Yöneticiden Duyuru",
- "all-boards": "Tüm panolar",
- "and-n-other-card": "Ve __count__ diğer kart",
- "and-n-other-card_plural": "Ve __count__ diğer kart",
- "apply": "Uygula",
- "app-is-offline": "Yükleniyor lütfen bekleyin. Sayfayı yenilemek veri kaybına neden olur. Yükleme çalışmıyorsa, lütfen sunucunun durmadığını kontrol edin.",
- "archive": "Arşive Taşı",
- "archive-all": "Hepsini Arşive Taşı",
- "archive-board": "Panoyu Arşive Taşı",
- "archive-card": "Kartı Arşive Taşı",
- "archive-list": "Listeyi Arşive Taşı",
- "archive-swimlane": "Kulvarı Arşive Taşı",
- "archive-selection": "Seçimi arşive taşı",
- "archiveBoardPopup-title": "Panoyu arşive taşı?",
- "archived-items": "Arşivle",
- "archived-boards": "Panolar Arşivde",
- "restore-board": "Panoyu Geri Getir",
- "no-archived-boards": "Arşivde Pano Yok.",
- "archives": "Arşivle",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Üye ata",
- "attached": "dosya(sı) eklendi",
- "attachment": "Ek Dosya",
- "attachment-delete-pop": "Ek silme işlemi kalıcıdır ve geri alınamaz.",
- "attachmentDeletePopup-title": "Ek Silinsin mi?",
- "attachments": "Ekler",
- "auto-watch": "Oluşan yeni panoları kendiliğinden izlemeye al",
- "avatar-too-big": "Avatar boyutu çok büyük (En fazla 70KB olabilir)",
- "back": "Geri",
- "board-change-color": "Renk değiştir",
- "board-nb-stars": "%s yıldız",
- "board-not-found": "Pano bulunamadı",
- "board-private-info": "Bu pano <strong>gizli</strong> olacak.",
- "board-public-info": "Bu pano <strong>genel</strong>e açılacaktır.",
- "boardChangeColorPopup-title": "Pano arkaplan rengini değiştir",
- "boardChangeTitlePopup-title": "Panonun Adını Değiştir",
- "boardChangeVisibilityPopup-title": "Görünebilirliği Değiştir",
- "boardChangeWatchPopup-title": "İzleme Durumunu Değiştir",
- "boardMenuPopup-title": "Pano Ayarları",
- "boards": "Panolar",
- "board-view": "Pano Görünümü",
- "board-view-cal": "Takvim",
- "board-view-swimlanes": "Kulvarlar",
- "board-view-lists": "Listeler",
- "bucket-example": "Örn: \"Marketten Alacaklarım\"",
- "cancel": "İptal",
- "card-archived": "Bu kart arşive taşındı.",
- "board-archived": "Bu pano arşive taşındı.",
- "card-comments-title": "Bu kartta %s yorum var.",
- "card-delete-notice": "Silme işlemi kalıcıdır. Bu kartla ilişkili tüm eylemleri kaybedersiniz.",
- "card-delete-pop": "Son hareketler alanındaki tüm veriler silinecek, ayrıca bu kartı yeniden açamayacaksın. Bu işlemin geri dönüşü yok.",
- "card-delete-suggest-archive": "Bir kartı tahtadan çıkarmak ve etkinliği korumak için Arşive taşıyabilirsiniz.",
- "card-due": "Bitiş",
- "card-due-on": "Bitiş tarihi:",
- "card-spent": "Harcanan Zaman",
- "card-edit-attachments": "Ek dosyasını düzenle",
- "card-edit-custom-fields": "Özel alanları düzenle",
- "card-edit-labels": "Etiketleri düzenle",
- "card-edit-members": "Üyeleri düzenle",
- "card-labels-title": "Bu kart için etiketleri düzenle",
- "card-members-title": "Karta pano içindeki üyeleri ekler veya çıkartır.",
- "card-start": "Başlama",
- "card-start-on": "Başlama tarihi:",
- "cardAttachmentsPopup-title": "Eklenme",
- "cardCustomField-datePopup-title": "Tarihi değiştir",
- "cardCustomFieldsPopup-title": "Özel alanları düzenle",
- "cardDeletePopup-title": "Kart Silinsin mi?",
- "cardDetailsActionsPopup-title": "Kart işlemleri",
- "cardLabelsPopup-title": "Etiketler",
- "cardMembersPopup-title": "Üyeler",
- "cardMorePopup-title": "Daha",
- "cardTemplatePopup-title": "Create template",
- "cards": "Kartlar",
- "cards-count": "Kartlar",
- "casSignIn": "CAS ile giriş yapın",
- "cardType-card": "Kart",
- "cardType-linkedCard": "Bağlantılı kart",
- "cardType-linkedBoard": "Bağlantılı Pano",
- "change": "Değiştir",
- "change-avatar": "Avatar Değiştir",
- "change-password": "Parola Değiştir",
- "change-permissions": "İzinleri değiştir",
- "change-settings": "Ayarları değiştir",
- "changeAvatarPopup-title": "Avatar Değiştir",
- "changeLanguagePopup-title": "Dil Değiştir",
- "changePasswordPopup-title": "Parola Değiştir",
- "changePermissionsPopup-title": "Yetkileri Değiştirme",
- "changeSettingsPopup-title": "Ayarları değiştir",
- "subtasks": "Alt Görevler",
- "checklists": "Yapılacak Listeleri",
- "click-to-star": "Bu panoyu yıldızlamak için tıkla.",
- "click-to-unstar": "Bu panunun yıldızını kaldırmak için tıkla.",
- "clipboard": "Yapıştır veya sürükleyip bırak",
- "close": "Kapat",
- "close-board": "Panoyu kapat",
- "close-board-pop": "\n92/5000\nAna başlıktaki “Arşiv” düğmesine tıklayarak tahtayı geri yükleyebilirsiniz.",
- "color-black": "siyah",
- "color-blue": "mavi",
- "color-crimson": "crimson",
- "color-darkgreen": "koyu yeşil",
- "color-gold": "altın rengi",
- "color-gray": "gri",
- "color-green": "yeşil",
- "color-indigo": "indigo",
- "color-lime": "misket limonu",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "turuncu",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pembe",
- "color-plum": "plum",
- "color-purple": "mor",
- "color-red": "kırmızı",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "gümüş rengi",
- "color-sky": "açık mavi",
- "color-slateblue": "slateblue",
- "color-white": "beyaz",
- "color-yellow": "sarı",
- "unset-color": "Unset",
- "comment": "Yorum",
- "comment-placeholder": "Yorum Yaz",
- "comment-only": "Sadece yorum",
- "comment-only-desc": "Sadece kartlara yorum yazabilir.",
- "no-comments": "Yorum Yok",
- "no-comments-desc": "Yorumlar ve aktiviteleri göremiyorum.",
- "computer": "Bilgisayar",
- "confirm-subtask-delete-dialog": "Alt görevi silmek istediğinizden emin misiniz?",
- "confirm-checklist-delete-dialog": "Kontrol listesini silmek istediğinden emin misin?",
- "copy-card-link-to-clipboard": "Kartın linkini kopyala",
- "linkCardPopup-title": "Bağlantı kartı",
- "searchElementPopup-title": "Arama",
- "copyCardPopup-title": "Kartı Kopyala",
- "copyChecklistToManyCardsPopup-title": "Yapılacaklar Listesi şemasını birden çok karta kopyala",
- "copyChecklistToManyCardsPopup-instructions": "Hedef Kart Başlıkları ve Açıklamaları bu JSON formatında",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"İlk kart başlığı\", \"description\":\"İlk kart açıklaması\"}, {\"title\":\"İkinci kart başlığı\",\"description\":\"İkinci kart açıklaması\"},{\"title\":\"Son kart başlığı\",\"description\":\"Son kart açıklaması\"} ]",
- "create": "Oluştur",
- "createBoardPopup-title": "Pano Oluşturma",
- "chooseBoardSourcePopup-title": "Panoyu içe aktar",
- "createLabelPopup-title": "Etiket Oluşturma",
- "createCustomField": "Alanı yarat",
- "createCustomFieldPopup-title": "Alanı yarat",
- "current": "mevcut",
- "custom-field-delete-pop": "Bunun geri dönüşü yoktur. Bu özel alan tüm kartlardan kaldırılıp tarihçesi yokedilecektir.",
- "custom-field-checkbox": "İşaret kutusu",
- "custom-field-date": "Tarih",
- "custom-field-dropdown": "Açılır liste",
- "custom-field-dropdown-none": "(hiçbiri)",
- "custom-field-dropdown-options": "Liste seçenekleri",
- "custom-field-dropdown-options-placeholder": "Başka seçenekler eklemek için giriş tuşuna basınız",
- "custom-field-dropdown-unknown": "(bilinmeyen)",
- "custom-field-number": "Sayı",
- "custom-field-text": "Metin",
- "custom-fields": "Özel alanlar",
- "date": "Tarih",
- "decline": "Reddet",
- "default-avatar": "Varsayılan avatar",
- "delete": "Sil",
- "deleteCustomFieldPopup-title": "Özel alan silinsin mi?",
- "deleteLabelPopup-title": "Etiket Silinsin mi?",
- "description": "Açıklama",
- "disambiguateMultiLabelPopup-title": "Etiket işlemini izah et",
- "disambiguateMultiMemberPopup-title": "Üye işlemini izah et",
- "discard": "At",
- "done": "Tamam",
- "download": "İndir",
- "edit": "Düzenle",
- "edit-avatar": "Avatar Değiştir",
- "edit-profile": "Profili Düzenle",
- "edit-wip-limit": "Devam Eden İş Sınırını Düzenle",
- "soft-wip-limit": "Zayıf Devam Eden İş Sınırı",
- "editCardStartDatePopup-title": "Başlangıç tarihini değiştir",
- "editCardDueDatePopup-title": "Bitiş tarihini değiştir",
- "editCustomFieldPopup-title": "Alanı düzenle",
- "editCardSpentTimePopup-title": "Harcanan zamanı değiştir",
- "editLabelPopup-title": "Etiket Değiştir",
- "editNotificationPopup-title": "Bildirimi değiştir",
- "editProfilePopup-title": "Profili Düzenle",
- "email": "E-posta",
- "email-enrollAccount-subject": "Hesabınız __siteName__ üzerinde oluşturuldu",
- "email-enrollAccount-text": "Merhaba __user__,\n\nBu servisi kullanmaya başlamak için aşağıdaki linke tıklamalısın:\n\n__url__\n\nTeşekkürler.",
- "email-fail": "E-posta gönderimi başarısız",
- "email-fail-text": "E-Posta gönderilme çalışırken hata oluştu",
- "email-invalid": "Geçersiz e-posta",
- "email-invite": "E-posta ile davet et",
- "email-invite-subject": "__inviter__ size bir davetiye gönderdi",
- "email-invite-text": "Sevgili __user__,\n\n__inviter__ seni birlikte çalışmak için \"__board__\" panosuna davet ediyor.\n\nLütfen aşağıdaki linke tıkla:\n\n__url__\n\nTeşekkürler.",
- "email-resetPassword-subject": "__siteName__ üzerinde parolanı sıfırla",
- "email-resetPassword-text": "Merhaba __user__,\n\nParolanı sıfırlaman için aşağıdaki linke tıklaman yeterli.\n\n__url__\n\nTeşekkürler.",
- "email-sent": "E-posta gönderildi",
- "email-verifyEmail-subject": "__siteName__ üzerindeki e-posta adresini doğrulama",
- "email-verifyEmail-text": "Merhaba __user__,\n\nHesap e-posta adresini doğrulamak için aşağıdaki linke tıklaman yeterli.\n\n__url__\n\nTeşekkürler.",
- "enable-wip-limit": "Devam Eden İş Sınırını Aç",
- "error-board-doesNotExist": "Pano bulunamadı",
- "error-board-notAdmin": "Bu işlemi yapmak için pano yöneticisi olmalısın.",
- "error-board-notAMember": "Bu işlemi yapmak için panoya üye olmalısın.",
- "error-json-malformed": "Girilen metin geçerli bir JSON formatında değil",
- "error-json-schema": "Girdiğin JSON metni tüm bilgileri doğru biçimde barındırmıyor",
- "error-list-doesNotExist": "Liste bulunamadı",
- "error-user-doesNotExist": "Kullanıcı bulunamadı",
- "error-user-notAllowSelf": "Kendi kendini davet edemezsin",
- "error-user-notCreated": "Bu üye oluşturulmadı",
- "error-username-taken": "Kullanıcı adı zaten alınmış",
- "error-email-taken": "Bu e-posta adresi daha önceden alınmış",
- "export-board": "Panoyu dışarı aktar",
- "filter": "Filtre",
- "filter-cards": "Kartları Filtrele",
- "filter-clear": "Filtreyi temizle",
- "filter-no-label": "Etiket yok",
- "filter-no-member": "Üye yok",
- "filter-no-custom-fields": "Hiç özel alan yok",
- "filter-on": "Filtre aktif",
- "filter-on-desc": "Bu panodaki kartları filtreliyorsunuz. Fitreyi düzenlemek için tıklayın.",
- "filter-to-selection": "Seçime göre filtreleme yap",
- "advanced-filter-label": "Gelişmiş Filtreleme",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Ad Soyad",
- "header-logo-title": "Panolar sayfanıza geri dön.",
- "hide-system-messages": "Sistem mesajlarını gizle",
- "headerBarCreateBoardPopup-title": "Pano Oluşturma",
- "home": "Ana Sayfa",
- "import": "İçeri aktar",
- "link": "Bağlantı",
- "import-board": "panoyu içe aktar",
- "import-board-c": "Panoyu içe aktar",
- "import-board-title-trello": "Trello'dan panoyu içeri aktar",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "İçe aktarılan pano şu anki panonun verilerinin üzerine yazılacak ve var olan veriler silinecek.",
- "from-trello": "Trello'dan",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "Trello panonuzda 'Menü'ye gidip 'Daha fazlası'na tıklayın, ardından 'Yazdır ve Çıktı Al'ı seçip 'JSON biçiminde çıktı al' diyerek çıkan metni buraya kopyalayın.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Geçerli JSON verisini buraya yapıştırın",
- "import-map-members": "Üyeleri eşleştirme",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Üye eşleştirmesini kontrol et",
- "import-user-select": "Bu üye olarak kullanmak istediğiniz mevcut kullanıcınızı seçin",
- "importMapMembersAddPopup-title": "Üye seç",
- "info": "Sürüm",
- "initials": "İlk Harfleri",
- "invalid-date": "Geçersiz tarih",
- "invalid-time": "Geçersiz zaman",
- "invalid-user": "Geçersiz kullanıcı",
- "joined": "katıldı",
- "just-invited": "Bu panoya şimdi davet edildin.",
- "keyboard-shortcuts": "Klavye kısayolları",
- "label-create": "Etiket Oluşturma",
- "label-default": "%s etiket (varsayılan)",
- "label-delete-pop": "Bu işlem geri alınamaz. Bu etiket tüm kartlardan kaldırılacaktır ve geçmişi yok edecektir.",
- "labels": "Etiketler",
- "language": "Dil",
- "last-admin-desc": "En az bir yönetici olması gerektiğinden rolleri değiştiremezsiniz.",
- "leave-board": "Panodan ayrıl",
- "leave-board-pop": "__boardTitle__ panosundan ayrılmak istediğinize emin misiniz? Panodaki tüm kartlardan kaldırılacaksınız.",
- "leaveBoardPopup-title": "Panodan ayrılmak istediğinize emin misiniz?",
- "link-card": "Bu kartın bağlantısı",
- "list-archive-cards": "Bu listedeki tüm kartları arşive taşı",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Listedeki tüm kartları taşı",
- "list-select-cards": "Listedeki tüm kartları seç",
- "set-color-list": "Rengi Ayarla",
- "listActionPopup-title": "Liste İşlemleri",
- "swimlaneActionPopup-title": "Kulvar İşlemleri",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Bir Trello kartını içeri aktar",
- "listMorePopup-title": "Daha",
- "link-list": "Listeye doğrudan bağlantı",
- "list-delete-pop": "Etkinlik akışınızdaki tüm eylemler geri kurtarılamaz şekilde kaldırılacak. Bu işlem geri alınamaz.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Listeler",
- "swimlanes": "Kulvarlar",
- "log-out": "Oturum Kapat",
- "log-in": "Oturum Aç",
- "loginPopup-title": "Oturum Aç",
- "memberMenuPopup-title": "Üye Ayarları",
- "members": "Üyeler",
- "menu": "Menü",
- "move-selection": "Seçimi taşı",
- "moveCardPopup-title": "Kartı taşı",
- "moveCardToBottom-title": "Aşağı taşı",
- "moveCardToTop-title": "Yukarı taşı",
- "moveSelectionPopup-title": "Seçimi taşı",
- "multi-selection": "Çoklu seçim",
- "multi-selection-on": "Çoklu seçim açık",
- "muted": "Sessiz",
- "muted-info": "Bu panodaki hiçbir değişiklik hakkında bildirim almayacaksınız",
- "my-boards": "Panolarım",
- "name": "Adı",
- "no-archived-cards": "Arşivde kart yok",
- "no-archived-lists": "Arşivde liste yok",
- "no-archived-swimlanes": "Arşivde kulvar yok",
- "no-results": "Sonuç yok",
- "normal": "Normal",
- "normal-desc": "Kartları görüntüleyebilir ve düzenleyebilir. Ayarları değiştiremez.",
- "not-accepted-yet": "Davet henüz kabul edilmemiş",
- "notify-participate": "Oluşturduğunuz veya üye olduğunuz tüm kartlar hakkında bildirim al",
- "notify-watch": "Takip ettiğiniz tüm pano, liste ve kartlar hakkında bildirim al",
- "optional": "isteğe bağlı",
- "or": "veya",
- "page-maybe-private": "Bu sayfa gizli olabilir. <a href='%s'>Oturum açarak</a> görmeyi deneyin.",
- "page-not-found": "Sayda bulunamadı.",
- "password": "Parola",
- "paste-or-dragdrop": "Dosya eklemek için yapıştırabilir, veya (eğer resimse) sürükle bırak yapabilirsiniz",
- "participating": "Katılımcılar",
- "preview": "Önizleme",
- "previewAttachedImagePopup-title": "Önizleme",
- "previewClipboardImagePopup-title": "Önizleme",
- "private": "Gizli",
- "private-desc": "Bu pano gizli. Sadece panoya ekli kişiler görüntüleyebilir ve düzenleyebilir.",
- "profile": "Kullanıcı Sayfası",
- "public": "Genel",
- "public-desc": "Bu pano genel. Bağlantı adresi ile herhangi bir kimseye görünür ve Google gibi arama motorlarında gösterilecektir. Panoyu, sadece eklenen kişiler düzenleyebilir.",
- "quick-access-description": "Bu bara kısayol olarak bir pano eklemek için panoyu yıldızlamalısınız",
- "remove-cover": "Kapak Resmini Kaldır",
- "remove-from-board": "Panodan Kaldır",
- "remove-label": "Etiketi Kaldır",
- "listDeletePopup-title": "Liste silinsin mi?",
- "remove-member": "Üyeyi Çıkar",
- "remove-member-from-card": "Karttan Çıkar",
- "remove-member-pop": "__boardTitle__ panosundan __name__ (__username__) çıkarılsın mı? Üye, bu panodaki tüm kartlardan çıkarılacak. Panodan çıkarıldığı üyeye bildirilecektir.",
- "removeMemberPopup-title": "Üye çıkarılsın mı?",
- "rename": "Yeniden adlandır",
- "rename-board": "Panonun Adını Değiştir",
- "restore": "Geri Getir",
- "save": "Kaydet",
- "search": "Arama",
- "rules": "Kurallar",
- "search-cards": "Bu panoda kart başlıkları ve açıklamalarında arama yap",
- "search-example": "Aranılacak metin?",
- "select-color": "Renk Seç",
- "set-wip-limit-value": "Bu listedeki en fazla öğe sayısı için bir sınır belirleyin",
- "setWipLimitPopup-title": "Devam Eden İş Sınırı Belirle",
- "shortcut-assign-self": "Kendini karta ata",
- "shortcut-autocomplete-emoji": "Emojileri otomatik tamamla",
- "shortcut-autocomplete-members": "Üye isimlerini otomatik tamamla",
- "shortcut-clear-filters": "Tüm filtreleri temizle",
- "shortcut-close-dialog": "Diyaloğu kapat",
- "shortcut-filter-my-cards": "Kartlarımı filtrele",
- "shortcut-show-shortcuts": "Kısayollar listesini getir",
- "shortcut-toggle-filterbar": "Filtre kenar çubuğunu aç/kapa",
- "shortcut-toggle-sidebar": "Pano kenar çubuğunu aç/kapa",
- "show-cards-minimum-count": "Eğer listede şu sayıdan fazla öğe varsa kart sayısını göster: ",
- "sidebar-open": "Kenar Çubuğunu Aç",
- "sidebar-close": "Kenar Çubuğunu Kapat",
- "signupPopup-title": "Bir Hesap Oluştur",
- "star-board-title": "Bu panoyu yıldızlamak için tıkla. Yıldızlı panolar pano listesinin en üstünde gösterilir.",
- "starred-boards": "Yıldızlı Panolar",
- "starred-boards-description": "Yıldızlanmış panolar, pano listesinin en üstünde gösterilir.",
- "subscribe": "Abone ol",
- "team": "Takım",
- "this-board": "bu panoyu",
- "this-card": "bu kart",
- "spent-time-hours": "Harcanan zaman (saat)",
- "overtime-hours": "Aşılan süre (saat)",
- "overtime": "Aşılan süre",
- "has-overtime-cards": "Süresi aşılmış kartlar",
- "has-spenttime-cards": "Zaman geçirilmiş kartlar",
- "time": "Zaman",
- "title": "Başlık",
- "tracking": "Takip",
- "tracking-info": "Oluşturduğunuz veya üyesi olduğunuz tüm kartlardaki değişiklikler size bildirim olarak gelecek.",
- "type": "Tür",
- "unassign-member": "Üyeye atamayı kaldır",
- "unsaved-description": "Kaydedilmemiş bir açıklama metnin bulunmakta",
- "unwatch": "Takibi bırak",
- "upload": "Yükle",
- "upload-avatar": "Avatar yükle",
- "uploaded-avatar": "Avatar yüklendi",
- "username": "Kullanıcı adı",
- "view-it": "Görüntüle",
- "warn-list-archived": "Uyarı: Bu kart arşivdeki bir listede",
- "watch": "Takip Et",
- "watching": "Takip Ediliyor",
- "watching-info": "Bu pano hakkındaki tüm değişiklikler hakkında bildirim alacaksınız",
- "welcome-board": "Hoş Geldiniz Panosu",
- "welcome-swimlane": "Kilometre taşı",
- "welcome-list1": "Temel",
- "welcome-list2": "Gelişmiş",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "Ne yapmak istiyorsunuz?",
- "wipLimitErrorPopup-title": "Geçersiz Devam Eden İş Sınırı",
- "wipLimitErrorPopup-dialog-pt1": "Bu listedeki iş sayısı belirlediğiniz sınırdan daha fazla.",
- "wipLimitErrorPopup-dialog-pt2": "Lütfen bazı işleri bu listeden başka listeye taşıyın ya da devam eden iş sınırını yükseltin.",
- "admin-panel": "Yönetici Paneli",
- "settings": "Ayarlar",
- "people": "Kullanıcılar",
- "registration": "Kayıt",
- "disable-self-registration": "Ziyaretçilere kaydı kapa",
- "invite": "Davet",
- "invite-people": "Kullanıcı davet et",
- "to-boards": "Şu pano(lar)a",
- "email-addresses": "E-posta adresleri",
- "smtp-host-description": "E-posta gönderimi yapan SMTP sunucu adresi",
- "smtp-port-description": "E-posta gönderimi yapan SMTP sunucu portu",
- "smtp-tls-description": "SMTP mail sunucusu için TLS kriptolama desteği açılsın",
- "smtp-host": "SMTP sunucu adresi",
- "smtp-port": "SMTP portu",
- "smtp-username": "Kullanıcı adı",
- "smtp-password": "Parola",
- "smtp-tls": "TLS desteği",
- "send-from": "Gönderen",
- "send-smtp-test": "Kendinize deneme E-Postası gönderin",
- "invitation-code": "Davetiye kodu",
- "email-invite-register-subject": "__inviter__ size bir davetiye gönderdi",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test E-postası",
- "email-smtp-test-text": "E-Posta başarıyla gönderildi",
- "error-invitation-code-not-exist": "Davetiye kodu bulunamadı",
- "error-notAuthorized": "Bu sayfayı görmek için yetkiniz yok.",
- "outgoing-webhooks": "Dışarı giden bağlantılar",
- "outgoingWebhooksPopup-title": "Dışarı giden bağlantılar",
- "boardCardTitlePopup-title": "Kart Başlığı Filtresi",
- "new-outgoing-webhook": "Yeni Dışarı Giden Web Bağlantısı",
- "no-name": "(Bilinmeyen)",
- "Node_version": "Node sürümü",
- "OS_Arch": "İşletim Sistemi Mimarisi",
- "OS_Cpus": "İşletim Sistemi İşlemci Sayısı",
- "OS_Freemem": "İşletim Sistemi Kullanılmayan Bellek",
- "OS_Loadavg": "İşletim Sistemi Ortalama Yük",
- "OS_Platform": "İşletim Sistemi Platformu",
- "OS_Release": "İşletim Sistemi Sürümü",
- "OS_Totalmem": "İşletim Sistemi Toplam Belleği",
- "OS_Type": "İşletim Sistemi Tipi",
- "OS_Uptime": "İşletim Sistemi Toplam Açık Kalınan Süre",
- "days": "günler",
- "hours": "saat",
- "minutes": "dakika",
- "seconds": "saniye",
- "show-field-on-card": "Bu alanı kartta göster",
- "automatically-field-on-card": "Tüm kartlara otomatik alan oluştur",
- "showLabel-field-on-card": "Minikard üzerindeki alan etiketini göster",
- "yes": "Evet",
- "no": "Hayır",
- "accounts": "Hesaplar",
- "accounts-allowEmailChange": "E-posta Değiştirmeye İzin Ver",
- "accounts-allowUserNameChange": "Kullanıcı adı değiştirmeye izin ver",
- "createdAt": "Oluşturulma tarihi",
- "verified": "Doğrulanmış",
- "active": "Aktif",
- "card-received": "Giriş",
- "card-received-on": "Giriş zamanı",
- "card-end": "Bitiş",
- "card-end-on": "Bitiş zamanı",
- "editCardReceivedDatePopup-title": "Giriş tarihini değiştir",
- "editCardEndDatePopup-title": "Bitiş tarihini değiştir",
- "setCardColorPopup-title": "Renk ayarla",
- "setCardActionsColorPopup-title": "Renk seçimi yap",
- "setSwimlaneColorPopup-title": "Renk seçimi yap",
- "setListColorPopup-title": "Renk seçimi yap",
- "assigned-by": "Atamayı yapan",
- "requested-by": "Talep Eden",
- "board-delete-notice": "Silme kalıcıdır. Bu kartla ilişkili tüm listeleri, kartları ve işlemleri kaybedeceksiniz.",
- "delete-board-confirm-popup": "Tüm listeler, kartlar, etiketler ve etkinlikler silinecek ve pano içeriğini kurtaramayacaksınız. Geri dönüş yok.",
- "boardDeletePopup-title": "Panoyu Sil?",
- "delete-board": "Panoyu Sil",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Varsayılan",
- "queue": "Sıra",
- "subtask-settings": "Alt Görev ayarları",
- "boardSubtaskSettingsPopup-title": "Pano alt görev ayarları",
- "show-subtasks-field": "Kartların alt görevleri olabilir",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Alt görevlerin açılacağı liste:",
- "show-parent-in-minicard": "Mini kart içinde üst kartı göster",
- "prefix-with-full-path": "Tam yolunu önüne ekle",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Tam yolu ile alt metin",
- "subtext-with-parent": "üst öge ile alt metin",
- "change-card-parent": "Kartın üst kartını değiştir",
- "parent-card": "Ana kart",
- "source-board": "Kaynak panosu",
- "no-parent": "Üst ögeyi gösterme",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "etiket eklendi '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "Ek silindi",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Kural",
- "r-add-trigger": "Tetikleyici ekle",
- "r-add-action": "Eylem ekle",
- "r-board-rules": "Pano Kuralları",
- "r-add-rule": "Kural ekle",
- "r-view-rule": "Kuralı göster",
- "r-delete-rule": "Kuralı sil",
- "r-new-rule-name": "Yeni kural başlığı",
- "r-no-rules": "Kural yok",
- "r-when-a-card": "Kart eklendiğinde",
- "r-is": "is",
- "r-is-moved": "taşındı",
- "r-added-to": "eklendi",
- "r-removed-from": "Removed from",
- "r-the-board": "pano",
- "r-list": "liste",
- "set-filter": "Filtrele",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Arşive taşındı",
- "r-unarchived": "Arşivden geri çıkarıldı",
- "r-a-card": "Kart",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "liste adı",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "isim",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Tamamlandı",
- "r-made-incomplete": "Tamamlanmamış",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "İşaretlendi",
- "r-unchecked": "İşaret Kaldırıldı",
- "r-move-card-to": "Kartı taşı",
- "r-top-of": "En üst",
- "r-bottom-of": "En alt",
- "r-its-list": "its list",
- "r-archive": "Arşive Taşı",
- "r-unarchive": "Arşivden Geri Yükle",
- "r-card": "Kart",
- "r-add": "Ekle",
- "r-remove": "Kaldır",
- "r-label": "etiket",
- "r-member": "üye",
- "r-remove-all": "Tüm üyeleri karttan çıkarın",
- "r-set-color": "Set color to",
- "r-checklist": "Kontrol Listesi",
- "r-check-all": "Tümünü işaretle",
- "r-uncheck-all": "Tüm işaretleri kaldır",
- "r-items-check": "Kontrol Listesi maddeleri",
- "r-check": "işaretle",
- "r-uncheck": "İşareti Kaldır",
- "r-item": "öge",
- "r-of-checklist": "of checklist",
- "r-send-email": "E-Posta Gönder",
- "r-to": "to",
- "r-subject": "Konu",
- "r-rule-details": "Kural Detayları",
- "r-d-move-to-top-gen": "Kartı listesinin en üstüne taşı",
- "r-d-move-to-top-spec": "Kartı listenin en üstüne taşı",
- "r-d-move-to-bottom-gen": "Kartı listesinin en altına taşı",
- "r-d-move-to-bottom-spec": "Kartı listenin en altına taşı",
- "r-d-send-email": "E-Posta gönder",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "Konu",
- "r-d-send-email-message": "mesaj",
- "r-d-archive": "Kartı Arşive Taşı",
- "r-d-unarchive": "Kartı arşivden geri yükle",
- "r-d-add-label": "Etiket ekle",
- "r-d-remove-label": "Etiketi kaldır",
- "r-create-card": "Yeni kart oluştur",
- "r-in-list": ", listesinde",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Üye Ekle",
- "r-d-remove-member": "Üye Sil",
- "r-d-remove-all-member": "Tüm Üyeleri Sil",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Ögeyi kontrol et",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Kontrol listesine ekle",
- "r-d-remove-checklist": "Kontrol listesini kaldır",
- "r-by": "tarafından",
- "r-add-checklist": "Kontrol listesine ekle",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Kulvar ekle",
- "r-swimlane-name": "kulvar adı",
- "r-board-note": "Not: Her olası değere uyması için bir alanı boş bırakın.",
- "r-checklist-note": "Not: kontrol listesindeki öğelerin virgülle ayrılmış değerler olarak yazılması gerekir.",
- "r-when-a-card-is-moved": "Bir kart başka bir listeye taşındığında",
- "r-set": "Set",
- "r-update": "Güncelle",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "Oauth2",
- "cas": "CAS",
- "authentication-method": "Kimlik doğrulama yöntemi",
- "authentication-type": "Kimlik doğrulama türü",
- "custom-product-name": "Özel Ürün Adı",
- "layout": "Düzen",
- "hide-logo": "Logoyu Gizle",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Bir şeyler yanlış gitti",
- "error-ldap-login": "Giriş yapmaya çalışırken bir hata oluştu",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Kulvar silinsin mi?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Her şeyi eski haline getir",
- "delete-all": "Hepsini sil",
- "loading": "Yükleniyor, lütfen bekleyiniz",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Kabul Et",
+ "act-activity-notify": "Etkinlik Bildirimi",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "__board__ panosu oluşturuldu",
+ "act-createSwimlane": "__board__ panosuna __swimlane__ kulvarı oluşturuldu",
+ "act-createCard": "__board__ panosunun __swimlane__ kulvarının __list__ listesinin __card__ kartı oluşturuldu",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "__board__ panosuna __member__ kullanıcısı eklendi",
+ "act-archivedBoard": "__board__ panosu Arşiv'e taşındı",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "__board__ panosu içeriye aktarıldı",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "İşlemler",
+ "activities": "Etkinlikler",
+ "activity": "Etkinlik",
+ "activity-added": "%s içine %s ekledi",
+ "activity-archived": "%s arşive taşındı",
+ "activity-attached": "%s içine %s ekledi",
+ "activity-created": "%s öğesini oluşturdu",
+ "activity-customfield-created": "%s adlı özel alan yaratıldı",
+ "activity-excluded": "%s içinden %s çıkarttı",
+ "activity-imported": "%s kaynağından %s öğesini %s öğesinin içine taşıdı ",
+ "activity-imported-board": "%s i %s içinden aktardı",
+ "activity-joined": "şuna katıldı: %s",
+ "activity-moved": "%s i %s içinden %s içine taşıdı",
+ "activity-on": "%s",
+ "activity-removed": "%s i %s ten kaldırdı",
+ "activity-sent": "%s i %s e gönderdi",
+ "activity-unjoined": "%s içinden ayrıldı",
+ "activity-subtask-added": "Alt-görev %s'e eklendi",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "%s içine yapılacak listesi ekledi",
+ "activity-checklist-removed": "%s Tarafından yapılacaklar listesi silinmiştir",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "%s içinde %s yapılacak listesine öğe ekledi",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Ekle",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Ek Ekle",
+ "add-board": "Pano Ekle",
+ "add-card": "Kart Ekle",
+ "add-swimlane": "Kulvar Ekle",
+ "add-subtask": "Alt Görev Ekle",
+ "add-checklist": "Yapılacak Listesi Ekle",
+ "add-checklist-item": "Yapılacak listesine yeni bir öğe ekle",
+ "add-cover": "Kapak resmi ekle",
+ "add-label": "Etiket Ekle",
+ "add-list": "Liste Ekle",
+ "add-members": "Üye ekle",
+ "added": "Eklendi",
+ "addMemberPopup-title": "Üyeler",
+ "admin": "Yönetici",
+ "admin-desc": "Kartları görüntüleyebilir ve düzenleyebilir, üyeleri çıkarabilir ve pano ayarlarını değiştirebilir.",
+ "admin-announcement": "Duyuru",
+ "admin-announcement-active": "Tüm Sistemde Etkin Duyuru",
+ "admin-announcement-title": "Yöneticiden Duyuru",
+ "all-boards": "Tüm panolar",
+ "and-n-other-card": "Ve __count__ diğer kart",
+ "and-n-other-card_plural": "Ve __count__ diğer kart",
+ "apply": "Uygula",
+ "app-is-offline": "Yükleniyor lütfen bekleyin. Sayfayı yenilemek veri kaybına neden olur. Yükleme çalışmıyorsa, lütfen sunucunun durmadığını kontrol edin.",
+ "archive": "Arşive Taşı",
+ "archive-all": "Hepsini Arşive Taşı",
+ "archive-board": "Panoyu Arşive Taşı",
+ "archive-card": "Kartı Arşive Taşı",
+ "archive-list": "Listeyi Arşive Taşı",
+ "archive-swimlane": "Kulvarı Arşive Taşı",
+ "archive-selection": "Seçimi arşive taşı",
+ "archiveBoardPopup-title": "Panoyu arşive taşı?",
+ "archived-items": "Arşivle",
+ "archived-boards": "Panolar Arşivde",
+ "restore-board": "Panoyu Geri Getir",
+ "no-archived-boards": "Arşivde Pano Yok.",
+ "archives": "Arşivle",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Üye ata",
+ "attached": "dosya(sı) eklendi",
+ "attachment": "Ek Dosya",
+ "attachment-delete-pop": "Ek silme işlemi kalıcıdır ve geri alınamaz.",
+ "attachmentDeletePopup-title": "Ek Silinsin mi?",
+ "attachments": "Ekler",
+ "auto-watch": "Oluşan yeni panoları kendiliğinden izlemeye al",
+ "avatar-too-big": "Avatar boyutu çok büyük (En fazla 70KB olabilir)",
+ "back": "Geri",
+ "board-change-color": "Renk değiştir",
+ "board-nb-stars": "%s yıldız",
+ "board-not-found": "Pano bulunamadı",
+ "board-private-info": "Bu pano <strong>gizli</strong> olacak.",
+ "board-public-info": "Bu pano <strong>genel</strong>e açılacaktır.",
+ "boardChangeColorPopup-title": "Pano arkaplan rengini değiştir",
+ "boardChangeTitlePopup-title": "Panonun Adını Değiştir",
+ "boardChangeVisibilityPopup-title": "Görünebilirliği Değiştir",
+ "boardChangeWatchPopup-title": "İzleme Durumunu Değiştir",
+ "boardMenuPopup-title": "Pano Ayarları",
+ "boards": "Panolar",
+ "board-view": "Pano Görünümü",
+ "board-view-cal": "Takvim",
+ "board-view-swimlanes": "Kulvarlar",
+ "board-view-lists": "Listeler",
+ "bucket-example": "Örn: \"Marketten Alacaklarım\"",
+ "cancel": "İptal",
+ "card-archived": "Bu kart arşive taşındı.",
+ "board-archived": "Bu pano arşive taşındı.",
+ "card-comments-title": "Bu kartta %s yorum var.",
+ "card-delete-notice": "Silme işlemi kalıcıdır. Bu kartla ilişkili tüm eylemleri kaybedersiniz.",
+ "card-delete-pop": "Son hareketler alanındaki tüm veriler silinecek, ayrıca bu kartı yeniden açamayacaksın. Bu işlemin geri dönüşü yok.",
+ "card-delete-suggest-archive": "Bir kartı tahtadan çıkarmak ve etkinliği korumak için Arşive taşıyabilirsiniz.",
+ "card-due": "Bitiş",
+ "card-due-on": "Bitiş tarihi:",
+ "card-spent": "Harcanan Zaman",
+ "card-edit-attachments": "Ek dosyasını düzenle",
+ "card-edit-custom-fields": "Özel alanları düzenle",
+ "card-edit-labels": "Etiketleri düzenle",
+ "card-edit-members": "Üyeleri düzenle",
+ "card-labels-title": "Bu kart için etiketleri düzenle",
+ "card-members-title": "Karta pano içindeki üyeleri ekler veya çıkartır.",
+ "card-start": "Başlama",
+ "card-start-on": "Başlama tarihi:",
+ "cardAttachmentsPopup-title": "Eklenme",
+ "cardCustomField-datePopup-title": "Tarihi değiştir",
+ "cardCustomFieldsPopup-title": "Özel alanları düzenle",
+ "cardDeletePopup-title": "Kart Silinsin mi?",
+ "cardDetailsActionsPopup-title": "Kart işlemleri",
+ "cardLabelsPopup-title": "Etiketler",
+ "cardMembersPopup-title": "Üyeler",
+ "cardMorePopup-title": "Daha",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Kartlar",
+ "cards-count": "Kartlar",
+ "casSignIn": "CAS ile giriş yapın",
+ "cardType-card": "Kart",
+ "cardType-linkedCard": "Bağlantılı kart",
+ "cardType-linkedBoard": "Bağlantılı Pano",
+ "change": "Değiştir",
+ "change-avatar": "Avatar Değiştir",
+ "change-password": "Parola Değiştir",
+ "change-permissions": "İzinleri değiştir",
+ "change-settings": "Ayarları değiştir",
+ "changeAvatarPopup-title": "Avatar Değiştir",
+ "changeLanguagePopup-title": "Dil Değiştir",
+ "changePasswordPopup-title": "Parola Değiştir",
+ "changePermissionsPopup-title": "Yetkileri Değiştirme",
+ "changeSettingsPopup-title": "Ayarları değiştir",
+ "subtasks": "Alt Görevler",
+ "checklists": "Yapılacak Listeleri",
+ "click-to-star": "Bu panoyu yıldızlamak için tıkla.",
+ "click-to-unstar": "Bu panunun yıldızını kaldırmak için tıkla.",
+ "clipboard": "Yapıştır veya sürükleyip bırak",
+ "close": "Kapat",
+ "close-board": "Panoyu kapat",
+ "close-board-pop": "\n92/5000\nAna başlıktaki “Arşiv” düğmesine tıklayarak tahtayı geri yükleyebilirsiniz.",
+ "color-black": "siyah",
+ "color-blue": "mavi",
+ "color-crimson": "crimson",
+ "color-darkgreen": "koyu yeşil",
+ "color-gold": "altın rengi",
+ "color-gray": "gri",
+ "color-green": "yeşil",
+ "color-indigo": "indigo",
+ "color-lime": "misket limonu",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "turuncu",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pembe",
+ "color-plum": "plum",
+ "color-purple": "mor",
+ "color-red": "kırmızı",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "gümüş rengi",
+ "color-sky": "açık mavi",
+ "color-slateblue": "slateblue",
+ "color-white": "beyaz",
+ "color-yellow": "sarı",
+ "unset-color": "Unset",
+ "comment": "Yorum",
+ "comment-placeholder": "Yorum Yaz",
+ "comment-only": "Sadece yorum",
+ "comment-only-desc": "Sadece kartlara yorum yazabilir.",
+ "no-comments": "Yorum Yok",
+ "no-comments-desc": "Yorumlar ve aktiviteleri göremiyorum.",
+ "computer": "Bilgisayar",
+ "confirm-subtask-delete-dialog": "Alt görevi silmek istediğinizden emin misiniz?",
+ "confirm-checklist-delete-dialog": "Kontrol listesini silmek istediğinden emin misin?",
+ "copy-card-link-to-clipboard": "Kartın linkini kopyala",
+ "linkCardPopup-title": "Bağlantı kartı",
+ "searchElementPopup-title": "Arama",
+ "copyCardPopup-title": "Kartı Kopyala",
+ "copyChecklistToManyCardsPopup-title": "Yapılacaklar Listesi şemasını birden çok karta kopyala",
+ "copyChecklistToManyCardsPopup-instructions": "Hedef Kart Başlıkları ve Açıklamaları bu JSON formatında",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"İlk kart başlığı\", \"description\":\"İlk kart açıklaması\"}, {\"title\":\"İkinci kart başlığı\",\"description\":\"İkinci kart açıklaması\"},{\"title\":\"Son kart başlığı\",\"description\":\"Son kart açıklaması\"} ]",
+ "create": "Oluştur",
+ "createBoardPopup-title": "Pano Oluşturma",
+ "chooseBoardSourcePopup-title": "Panoyu içe aktar",
+ "createLabelPopup-title": "Etiket Oluşturma",
+ "createCustomField": "Alanı yarat",
+ "createCustomFieldPopup-title": "Alanı yarat",
+ "current": "mevcut",
+ "custom-field-delete-pop": "Bunun geri dönüşü yoktur. Bu özel alan tüm kartlardan kaldırılıp tarihçesi yokedilecektir.",
+ "custom-field-checkbox": "İşaret kutusu",
+ "custom-field-date": "Tarih",
+ "custom-field-dropdown": "Açılır liste",
+ "custom-field-dropdown-none": "(hiçbiri)",
+ "custom-field-dropdown-options": "Liste seçenekleri",
+ "custom-field-dropdown-options-placeholder": "Başka seçenekler eklemek için giriş tuşuna basınız",
+ "custom-field-dropdown-unknown": "(bilinmeyen)",
+ "custom-field-number": "Sayı",
+ "custom-field-text": "Metin",
+ "custom-fields": "Özel alanlar",
+ "date": "Tarih",
+ "decline": "Reddet",
+ "default-avatar": "Varsayılan avatar",
+ "delete": "Sil",
+ "deleteCustomFieldPopup-title": "Özel alan silinsin mi?",
+ "deleteLabelPopup-title": "Etiket Silinsin mi?",
+ "description": "Açıklama",
+ "disambiguateMultiLabelPopup-title": "Etiket işlemini izah et",
+ "disambiguateMultiMemberPopup-title": "Üye işlemini izah et",
+ "discard": "At",
+ "done": "Tamam",
+ "download": "İndir",
+ "edit": "Düzenle",
+ "edit-avatar": "Avatar Değiştir",
+ "edit-profile": "Profili Düzenle",
+ "edit-wip-limit": "Devam Eden İş Sınırını Düzenle",
+ "soft-wip-limit": "Zayıf Devam Eden İş Sınırı",
+ "editCardStartDatePopup-title": "Başlangıç tarihini değiştir",
+ "editCardDueDatePopup-title": "Bitiş tarihini değiştir",
+ "editCustomFieldPopup-title": "Alanı düzenle",
+ "editCardSpentTimePopup-title": "Harcanan zamanı değiştir",
+ "editLabelPopup-title": "Etiket Değiştir",
+ "editNotificationPopup-title": "Bildirimi değiştir",
+ "editProfilePopup-title": "Profili Düzenle",
+ "email": "E-posta",
+ "email-enrollAccount-subject": "Hesabınız __siteName__ üzerinde oluşturuldu",
+ "email-enrollAccount-text": "Merhaba __user__,\n\nBu servisi kullanmaya başlamak için aşağıdaki linke tıklamalısın:\n\n__url__\n\nTeşekkürler.",
+ "email-fail": "E-posta gönderimi başarısız",
+ "email-fail-text": "E-Posta gönderilme çalışırken hata oluştu",
+ "email-invalid": "Geçersiz e-posta",
+ "email-invite": "E-posta ile davet et",
+ "email-invite-subject": "__inviter__ size bir davetiye gönderdi",
+ "email-invite-text": "Sevgili __user__,\n\n__inviter__ seni birlikte çalışmak için \"__board__\" panosuna davet ediyor.\n\nLütfen aşağıdaki linke tıkla:\n\n__url__\n\nTeşekkürler.",
+ "email-resetPassword-subject": "__siteName__ üzerinde parolanı sıfırla",
+ "email-resetPassword-text": "Merhaba __user__,\n\nParolanı sıfırlaman için aşağıdaki linke tıklaman yeterli.\n\n__url__\n\nTeşekkürler.",
+ "email-sent": "E-posta gönderildi",
+ "email-verifyEmail-subject": "__siteName__ üzerindeki e-posta adresini doğrulama",
+ "email-verifyEmail-text": "Merhaba __user__,\n\nHesap e-posta adresini doğrulamak için aşağıdaki linke tıklaman yeterli.\n\n__url__\n\nTeşekkürler.",
+ "enable-wip-limit": "Devam Eden İş Sınırını Aç",
+ "error-board-doesNotExist": "Pano bulunamadı",
+ "error-board-notAdmin": "Bu işlemi yapmak için pano yöneticisi olmalısın.",
+ "error-board-notAMember": "Bu işlemi yapmak için panoya üye olmalısın.",
+ "error-json-malformed": "Girilen metin geçerli bir JSON formatında değil",
+ "error-json-schema": "Girdiğin JSON metni tüm bilgileri doğru biçimde barındırmıyor",
+ "error-list-doesNotExist": "Liste bulunamadı",
+ "error-user-doesNotExist": "Kullanıcı bulunamadı",
+ "error-user-notAllowSelf": "Kendi kendini davet edemezsin",
+ "error-user-notCreated": "Bu üye oluşturulmadı",
+ "error-username-taken": "Kullanıcı adı zaten alınmış",
+ "error-email-taken": "Bu e-posta adresi daha önceden alınmış",
+ "export-board": "Panoyu dışarı aktar",
+ "filter": "Filtre",
+ "filter-cards": "Kartları Filtrele",
+ "filter-clear": "Filtreyi temizle",
+ "filter-no-label": "Etiket yok",
+ "filter-no-member": "Üye yok",
+ "filter-no-custom-fields": "Hiç özel alan yok",
+ "filter-on": "Filtre aktif",
+ "filter-on-desc": "Bu panodaki kartları filtreliyorsunuz. Fitreyi düzenlemek için tıklayın.",
+ "filter-to-selection": "Seçime göre filtreleme yap",
+ "advanced-filter-label": "Gelişmiş Filtreleme",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Ad Soyad",
+ "header-logo-title": "Panolar sayfanıza geri dön.",
+ "hide-system-messages": "Sistem mesajlarını gizle",
+ "headerBarCreateBoardPopup-title": "Pano Oluşturma",
+ "home": "Ana Sayfa",
+ "import": "İçeri aktar",
+ "link": "Bağlantı",
+ "import-board": "panoyu içe aktar",
+ "import-board-c": "Panoyu içe aktar",
+ "import-board-title-trello": "Trello'dan panoyu içeri aktar",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "İçe aktarılan pano şu anki panonun verilerinin üzerine yazılacak ve var olan veriler silinecek.",
+ "from-trello": "Trello'dan",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "Trello panonuzda 'Menü'ye gidip 'Daha fazlası'na tıklayın, ardından 'Yazdır ve Çıktı Al'ı seçip 'JSON biçiminde çıktı al' diyerek çıkan metni buraya kopyalayın.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Geçerli JSON verisini buraya yapıştırın",
+ "import-map-members": "Üyeleri eşleştirme",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Üye eşleştirmesini kontrol et",
+ "import-user-select": "Bu üye olarak kullanmak istediğiniz mevcut kullanıcınızı seçin",
+ "importMapMembersAddPopup-title": "Üye seç",
+ "info": "Sürüm",
+ "initials": "İlk Harfleri",
+ "invalid-date": "Geçersiz tarih",
+ "invalid-time": "Geçersiz zaman",
+ "invalid-user": "Geçersiz kullanıcı",
+ "joined": "katıldı",
+ "just-invited": "Bu panoya şimdi davet edildin.",
+ "keyboard-shortcuts": "Klavye kısayolları",
+ "label-create": "Etiket Oluşturma",
+ "label-default": "%s etiket (varsayılan)",
+ "label-delete-pop": "Bu işlem geri alınamaz. Bu etiket tüm kartlardan kaldırılacaktır ve geçmişi yok edecektir.",
+ "labels": "Etiketler",
+ "language": "Dil",
+ "last-admin-desc": "En az bir yönetici olması gerektiğinden rolleri değiştiremezsiniz.",
+ "leave-board": "Panodan ayrıl",
+ "leave-board-pop": "__boardTitle__ panosundan ayrılmak istediğinize emin misiniz? Panodaki tüm kartlardan kaldırılacaksınız.",
+ "leaveBoardPopup-title": "Panodan ayrılmak istediğinize emin misiniz?",
+ "link-card": "Bu kartın bağlantısı",
+ "list-archive-cards": "Bu listedeki tüm kartları arşive taşı",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Listedeki tüm kartları taşı",
+ "list-select-cards": "Listedeki tüm kartları seç",
+ "set-color-list": "Rengi Ayarla",
+ "listActionPopup-title": "Liste İşlemleri",
+ "swimlaneActionPopup-title": "Kulvar İşlemleri",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Bir Trello kartını içeri aktar",
+ "listMorePopup-title": "Daha",
+ "link-list": "Listeye doğrudan bağlantı",
+ "list-delete-pop": "Etkinlik akışınızdaki tüm eylemler geri kurtarılamaz şekilde kaldırılacak. Bu işlem geri alınamaz.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Listeler",
+ "swimlanes": "Kulvarlar",
+ "log-out": "Oturum Kapat",
+ "log-in": "Oturum Aç",
+ "loginPopup-title": "Oturum Aç",
+ "memberMenuPopup-title": "Üye Ayarları",
+ "members": "Üyeler",
+ "menu": "Menü",
+ "move-selection": "Seçimi taşı",
+ "moveCardPopup-title": "Kartı taşı",
+ "moveCardToBottom-title": "Aşağı taşı",
+ "moveCardToTop-title": "Yukarı taşı",
+ "moveSelectionPopup-title": "Seçimi taşı",
+ "multi-selection": "Çoklu seçim",
+ "multi-selection-on": "Çoklu seçim açık",
+ "muted": "Sessiz",
+ "muted-info": "Bu panodaki hiçbir değişiklik hakkında bildirim almayacaksınız",
+ "my-boards": "Panolarım",
+ "name": "Adı",
+ "no-archived-cards": "Arşivde kart yok",
+ "no-archived-lists": "Arşivde liste yok",
+ "no-archived-swimlanes": "Arşivde kulvar yok",
+ "no-results": "Sonuç yok",
+ "normal": "Normal",
+ "normal-desc": "Kartları görüntüleyebilir ve düzenleyebilir. Ayarları değiştiremez.",
+ "not-accepted-yet": "Davet henüz kabul edilmemiş",
+ "notify-participate": "Oluşturduğunuz veya üye olduğunuz tüm kartlar hakkında bildirim al",
+ "notify-watch": "Takip ettiğiniz tüm pano, liste ve kartlar hakkında bildirim al",
+ "optional": "isteğe bağlı",
+ "or": "veya",
+ "page-maybe-private": "Bu sayfa gizli olabilir. <a href='%s'>Oturum açarak</a> görmeyi deneyin.",
+ "page-not-found": "Sayda bulunamadı.",
+ "password": "Parola",
+ "paste-or-dragdrop": "Dosya eklemek için yapıştırabilir, veya (eğer resimse) sürükle bırak yapabilirsiniz",
+ "participating": "Katılımcılar",
+ "preview": "Önizleme",
+ "previewAttachedImagePopup-title": "Önizleme",
+ "previewClipboardImagePopup-title": "Önizleme",
+ "private": "Gizli",
+ "private-desc": "Bu pano gizli. Sadece panoya ekli kişiler görüntüleyebilir ve düzenleyebilir.",
+ "profile": "Kullanıcı Sayfası",
+ "public": "Genel",
+ "public-desc": "Bu pano genel. Bağlantı adresi ile herhangi bir kimseye görünür ve Google gibi arama motorlarında gösterilecektir. Panoyu, sadece eklenen kişiler düzenleyebilir.",
+ "quick-access-description": "Bu bara kısayol olarak bir pano eklemek için panoyu yıldızlamalısınız",
+ "remove-cover": "Kapak Resmini Kaldır",
+ "remove-from-board": "Panodan Kaldır",
+ "remove-label": "Etiketi Kaldır",
+ "listDeletePopup-title": "Liste silinsin mi?",
+ "remove-member": "Üyeyi Çıkar",
+ "remove-member-from-card": "Karttan Çıkar",
+ "remove-member-pop": "__boardTitle__ panosundan __name__ (__username__) çıkarılsın mı? Üye, bu panodaki tüm kartlardan çıkarılacak. Panodan çıkarıldığı üyeye bildirilecektir.",
+ "removeMemberPopup-title": "Üye çıkarılsın mı?",
+ "rename": "Yeniden adlandır",
+ "rename-board": "Panonun Adını Değiştir",
+ "restore": "Geri Getir",
+ "save": "Kaydet",
+ "search": "Arama",
+ "rules": "Kurallar",
+ "search-cards": "Bu panoda kart başlıkları ve açıklamalarında arama yap",
+ "search-example": "Aranılacak metin?",
+ "select-color": "Renk Seç",
+ "set-wip-limit-value": "Bu listedeki en fazla öğe sayısı için bir sınır belirleyin",
+ "setWipLimitPopup-title": "Devam Eden İş Sınırı Belirle",
+ "shortcut-assign-self": "Kendini karta ata",
+ "shortcut-autocomplete-emoji": "Emojileri otomatik tamamla",
+ "shortcut-autocomplete-members": "Üye isimlerini otomatik tamamla",
+ "shortcut-clear-filters": "Tüm filtreleri temizle",
+ "shortcut-close-dialog": "Diyaloğu kapat",
+ "shortcut-filter-my-cards": "Kartlarımı filtrele",
+ "shortcut-show-shortcuts": "Kısayollar listesini getir",
+ "shortcut-toggle-filterbar": "Filtre kenar çubuğunu aç/kapa",
+ "shortcut-toggle-sidebar": "Pano kenar çubuğunu aç/kapa",
+ "show-cards-minimum-count": "Eğer listede şu sayıdan fazla öğe varsa kart sayısını göster: ",
+ "sidebar-open": "Kenar Çubuğunu Aç",
+ "sidebar-close": "Kenar Çubuğunu Kapat",
+ "signupPopup-title": "Bir Hesap Oluştur",
+ "star-board-title": "Bu panoyu yıldızlamak için tıkla. Yıldızlı panolar pano listesinin en üstünde gösterilir.",
+ "starred-boards": "Yıldızlı Panolar",
+ "starred-boards-description": "Yıldızlanmış panolar, pano listesinin en üstünde gösterilir.",
+ "subscribe": "Abone ol",
+ "team": "Takım",
+ "this-board": "bu panoyu",
+ "this-card": "bu kart",
+ "spent-time-hours": "Harcanan zaman (saat)",
+ "overtime-hours": "Aşılan süre (saat)",
+ "overtime": "Aşılan süre",
+ "has-overtime-cards": "Süresi aşılmış kartlar",
+ "has-spenttime-cards": "Zaman geçirilmiş kartlar",
+ "time": "Zaman",
+ "title": "Başlık",
+ "tracking": "Takip",
+ "tracking-info": "Oluşturduğunuz veya üyesi olduğunuz tüm kartlardaki değişiklikler size bildirim olarak gelecek.",
+ "type": "Tür",
+ "unassign-member": "Üyeye atamayı kaldır",
+ "unsaved-description": "Kaydedilmemiş bir açıklama metnin bulunmakta",
+ "unwatch": "Takibi bırak",
+ "upload": "Yükle",
+ "upload-avatar": "Avatar yükle",
+ "uploaded-avatar": "Avatar yüklendi",
+ "username": "Kullanıcı adı",
+ "view-it": "Görüntüle",
+ "warn-list-archived": "Uyarı: Bu kart arşivdeki bir listede",
+ "watch": "Takip Et",
+ "watching": "Takip Ediliyor",
+ "watching-info": "Bu pano hakkındaki tüm değişiklikler hakkında bildirim alacaksınız",
+ "welcome-board": "Hoş Geldiniz Panosu",
+ "welcome-swimlane": "Kilometre taşı",
+ "welcome-list1": "Temel",
+ "welcome-list2": "Gelişmiş",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "Ne yapmak istiyorsunuz?",
+ "wipLimitErrorPopup-title": "Geçersiz Devam Eden İş Sınırı",
+ "wipLimitErrorPopup-dialog-pt1": "Bu listedeki iş sayısı belirlediğiniz sınırdan daha fazla.",
+ "wipLimitErrorPopup-dialog-pt2": "Lütfen bazı işleri bu listeden başka listeye taşıyın ya da devam eden iş sınırını yükseltin.",
+ "admin-panel": "Yönetici Paneli",
+ "settings": "Ayarlar",
+ "people": "Kullanıcılar",
+ "registration": "Kayıt",
+ "disable-self-registration": "Ziyaretçilere kaydı kapa",
+ "invite": "Davet",
+ "invite-people": "Kullanıcı davet et",
+ "to-boards": "Şu pano(lar)a",
+ "email-addresses": "E-posta adresleri",
+ "smtp-host-description": "E-posta gönderimi yapan SMTP sunucu adresi",
+ "smtp-port-description": "E-posta gönderimi yapan SMTP sunucu portu",
+ "smtp-tls-description": "SMTP mail sunucusu için TLS kriptolama desteği açılsın",
+ "smtp-host": "SMTP sunucu adresi",
+ "smtp-port": "SMTP portu",
+ "smtp-username": "Kullanıcı adı",
+ "smtp-password": "Parola",
+ "smtp-tls": "TLS desteği",
+ "send-from": "Gönderen",
+ "send-smtp-test": "Kendinize deneme E-Postası gönderin",
+ "invitation-code": "Davetiye kodu",
+ "email-invite-register-subject": "__inviter__ size bir davetiye gönderdi",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test E-postası",
+ "email-smtp-test-text": "E-Posta başarıyla gönderildi",
+ "error-invitation-code-not-exist": "Davetiye kodu bulunamadı",
+ "error-notAuthorized": "Bu sayfayı görmek için yetkiniz yok.",
+ "outgoing-webhooks": "Dışarı giden bağlantılar",
+ "outgoingWebhooksPopup-title": "Dışarı giden bağlantılar",
+ "boardCardTitlePopup-title": "Kart Başlığı Filtresi",
+ "new-outgoing-webhook": "Yeni Dışarı Giden Web Bağlantısı",
+ "no-name": "(Bilinmeyen)",
+ "Node_version": "Node sürümü",
+ "OS_Arch": "İşletim Sistemi Mimarisi",
+ "OS_Cpus": "İşletim Sistemi İşlemci Sayısı",
+ "OS_Freemem": "İşletim Sistemi Kullanılmayan Bellek",
+ "OS_Loadavg": "İşletim Sistemi Ortalama Yük",
+ "OS_Platform": "İşletim Sistemi Platformu",
+ "OS_Release": "İşletim Sistemi Sürümü",
+ "OS_Totalmem": "İşletim Sistemi Toplam Belleği",
+ "OS_Type": "İşletim Sistemi Tipi",
+ "OS_Uptime": "İşletim Sistemi Toplam Açık Kalınan Süre",
+ "days": "günler",
+ "hours": "saat",
+ "minutes": "dakika",
+ "seconds": "saniye",
+ "show-field-on-card": "Bu alanı kartta göster",
+ "automatically-field-on-card": "Tüm kartlara otomatik alan oluştur",
+ "showLabel-field-on-card": "Minikard üzerindeki alan etiketini göster",
+ "yes": "Evet",
+ "no": "Hayır",
+ "accounts": "Hesaplar",
+ "accounts-allowEmailChange": "E-posta Değiştirmeye İzin Ver",
+ "accounts-allowUserNameChange": "Kullanıcı adı değiştirmeye izin ver",
+ "createdAt": "Oluşturulma tarihi",
+ "verified": "Doğrulanmış",
+ "active": "Aktif",
+ "card-received": "Giriş",
+ "card-received-on": "Giriş zamanı",
+ "card-end": "Bitiş",
+ "card-end-on": "Bitiş zamanı",
+ "editCardReceivedDatePopup-title": "Giriş tarihini değiştir",
+ "editCardEndDatePopup-title": "Bitiş tarihini değiştir",
+ "setCardColorPopup-title": "Renk ayarla",
+ "setCardActionsColorPopup-title": "Renk seçimi yap",
+ "setSwimlaneColorPopup-title": "Renk seçimi yap",
+ "setListColorPopup-title": "Renk seçimi yap",
+ "assigned-by": "Atamayı yapan",
+ "requested-by": "Talep Eden",
+ "board-delete-notice": "Silme kalıcıdır. Bu kartla ilişkili tüm listeleri, kartları ve işlemleri kaybedeceksiniz.",
+ "delete-board-confirm-popup": "Tüm listeler, kartlar, etiketler ve etkinlikler silinecek ve pano içeriğini kurtaramayacaksınız. Geri dönüş yok.",
+ "boardDeletePopup-title": "Panoyu Sil?",
+ "delete-board": "Panoyu Sil",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Varsayılan",
+ "queue": "Sıra",
+ "subtask-settings": "Alt Görev ayarları",
+ "boardSubtaskSettingsPopup-title": "Pano alt görev ayarları",
+ "show-subtasks-field": "Kartların alt görevleri olabilir",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Alt görevlerin açılacağı liste:",
+ "show-parent-in-minicard": "Mini kart içinde üst kartı göster",
+ "prefix-with-full-path": "Tam yolunu önüne ekle",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Tam yolu ile alt metin",
+ "subtext-with-parent": "üst öge ile alt metin",
+ "change-card-parent": "Kartın üst kartını değiştir",
+ "parent-card": "Ana kart",
+ "source-board": "Kaynak panosu",
+ "no-parent": "Üst ögeyi gösterme",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "etiket eklendi '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "Ek silindi",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Kural",
+ "r-add-trigger": "Tetikleyici ekle",
+ "r-add-action": "Eylem ekle",
+ "r-board-rules": "Pano Kuralları",
+ "r-add-rule": "Kural ekle",
+ "r-view-rule": "Kuralı göster",
+ "r-delete-rule": "Kuralı sil",
+ "r-new-rule-name": "Yeni kural başlığı",
+ "r-no-rules": "Kural yok",
+ "r-when-a-card": "Kart eklendiğinde",
+ "r-is": "is",
+ "r-is-moved": "taşındı",
+ "r-added-to": "eklendi",
+ "r-removed-from": "Removed from",
+ "r-the-board": "pano",
+ "r-list": "liste",
+ "set-filter": "Filtrele",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Arşive taşındı",
+ "r-unarchived": "Arşivden geri çıkarıldı",
+ "r-a-card": "Kart",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "liste adı",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "isim",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Tamamlandı",
+ "r-made-incomplete": "Tamamlanmamış",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "İşaretlendi",
+ "r-unchecked": "İşaret Kaldırıldı",
+ "r-move-card-to": "Kartı taşı",
+ "r-top-of": "En üst",
+ "r-bottom-of": "En alt",
+ "r-its-list": "its list",
+ "r-archive": "Arşive Taşı",
+ "r-unarchive": "Arşivden Geri Yükle",
+ "r-card": "Kart",
+ "r-add": "Ekle",
+ "r-remove": "Kaldır",
+ "r-label": "etiket",
+ "r-member": "üye",
+ "r-remove-all": "Tüm üyeleri karttan çıkarın",
+ "r-set-color": "Set color to",
+ "r-checklist": "Kontrol Listesi",
+ "r-check-all": "Tümünü işaretle",
+ "r-uncheck-all": "Tüm işaretleri kaldır",
+ "r-items-check": "Kontrol Listesi maddeleri",
+ "r-check": "işaretle",
+ "r-uncheck": "İşareti Kaldır",
+ "r-item": "öge",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "E-Posta Gönder",
+ "r-to": "to",
+ "r-subject": "Konu",
+ "r-rule-details": "Kural Detayları",
+ "r-d-move-to-top-gen": "Kartı listesinin en üstüne taşı",
+ "r-d-move-to-top-spec": "Kartı listenin en üstüne taşı",
+ "r-d-move-to-bottom-gen": "Kartı listesinin en altına taşı",
+ "r-d-move-to-bottom-spec": "Kartı listenin en altına taşı",
+ "r-d-send-email": "E-Posta gönder",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "Konu",
+ "r-d-send-email-message": "mesaj",
+ "r-d-archive": "Kartı Arşive Taşı",
+ "r-d-unarchive": "Kartı arşivden geri yükle",
+ "r-d-add-label": "Etiket ekle",
+ "r-d-remove-label": "Etiketi kaldır",
+ "r-create-card": "Yeni kart oluştur",
+ "r-in-list": ", listesinde",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Üye Ekle",
+ "r-d-remove-member": "Üye Sil",
+ "r-d-remove-all-member": "Tüm Üyeleri Sil",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Ögeyi kontrol et",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Kontrol listesine ekle",
+ "r-d-remove-checklist": "Kontrol listesini kaldır",
+ "r-by": "tarafından",
+ "r-add-checklist": "Kontrol listesine ekle",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Kulvar ekle",
+ "r-swimlane-name": "kulvar adı",
+ "r-board-note": "Not: Her olası değere uyması için bir alanı boş bırakın.",
+ "r-checklist-note": "Not: kontrol listesindeki öğelerin virgülle ayrılmış değerler olarak yazılması gerekir.",
+ "r-when-a-card-is-moved": "Bir kart başka bir listeye taşındığında",
+ "r-set": "Set",
+ "r-update": "Güncelle",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "Oauth2",
+ "cas": "CAS",
+ "authentication-method": "Kimlik doğrulama yöntemi",
+ "authentication-type": "Kimlik doğrulama türü",
+ "custom-product-name": "Özel Ürün Adı",
+ "layout": "Düzen",
+ "hide-logo": "Logoyu Gizle",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Bir şeyler yanlış gitti",
+ "error-ldap-login": "Giriş yapmaya çalışırken bir hata oluştu",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Kulvar silinsin mi?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Her şeyi eski haline getir",
+ "delete-all": "Hepsini sil",
+ "loading": "Yükleniyor, lütfen bekleyiniz",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/uk.i18n.json b/i18n/uk.i18n.json
index 0ce8c430..eaa3f6b5 100644
--- a/i18n/uk.i18n.json
+++ b/i18n/uk.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Прийняти",
- "act-activity-notify": "Сповіщення активності",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "Дошку __board__створено",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Дії",
- "activities": "Діяльності",
- "activity": "Діяльність",
- "activity-added": "%s додано до %s",
- "activity-archived": "%s перенесено до архіву",
- "activity-attached": "%s прикріплено до %s",
- "activity-created": "%sстворено",
- "activity-customfield-created": "Створено спеціальне поле",
- "activity-excluded": "%s виключено з %s",
- "activity-imported": "%s імпортовано до %s з %s",
- "activity-imported-board": "%s імпортовано з %s",
- "activity-joined": "%s приєднано",
- "activity-moved": "%s переміщено з %s до %s",
- "activity-on": "%s",
- "activity-removed": "%s видалено з %s",
- "activity-sent": "%s відправлено до %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "Додано підзадачу до %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "Додано контрольний список до %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Додати",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Додати дошку",
- "add-card": "Додати картку",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Додати елемент в список",
- "add-cover": "Додати обкладинку",
- "add-label": "Додати мітку",
- "add-list": "Додати список",
- "add-members": "Додати користувача",
- "added": "Доданно",
- "addMemberPopup-title": "Користувачі",
- "admin": "Адмін",
- "admin-desc": "Може переглядати і редагувати картки, відаляти учасників та змінювати налаштування для дошки.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Всі дошки",
- "and-n-other-card": "та __count__ інших карток",
- "and-n-other-card_plural": "та __count__ інших карток",
- "apply": "Прийняти",
- "app-is-offline": "Завантаження, будь ласка, зачекайте. Оновлення сторінки призведе до втрати даних. Якщо завантаження не працює, перевірте, чи не зупинився сервер.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Архів",
- "archived-boards": "Дошки в архіві",
- "restore-board": "Відновити дошку",
- "no-archived-boards": "Немає дошок в архіві",
- "archives": "Архів",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "доданно",
- "attachment": "Додаток",
- "attachment-delete-pop": "Видалення Додатку безповоротне. Тут нема відміні (undo).",
- "attachmentDeletePopup-title": "Видалити Додаток?",
- "attachments": "Додатки",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Назад",
- "board-change-color": "Змінити колір",
- "board-nb-stars": "%s stars",
- "board-not-found": "Дошка не знайдена",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Перейменувати дошку",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Дошки",
- "board-view": "Board View",
- "board-view-cal": "Календар",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Відміна",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Цю дію неможливо буде скасувати. Всі зміни, які ви вносили в картку будуть втрачені.",
- "card-delete-pop": "Усі дії буде видалено з каналу активності, і ви не зможете повторно відкрити картку. Цю дію не можна скасувати.",
- "card-delete-suggest-archive": "Ви можете перемістити картку до архіву, щоб прибрати її з дошки, зберігаючи всю історію дій учасників.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Витрачено часу",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Редагувати мітки",
- "card-edit-members": "Редагувати учасників",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Видалити картку?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Користувачі",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Картки",
- "cards-count": "Картки",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Картка",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Змінити",
- "change-avatar": "Змінити аватар",
- "change-password": "Змінити пароль",
- "change-permissions": "Change permissions",
- "change-settings": "Змінити налаштування",
- "changeAvatarPopup-title": "Змінити аватар",
- "changeLanguagePopup-title": "Змінити мову",
- "changePasswordPopup-title": "Змінити пароль",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Змінити налаштування",
- "subtasks": "Підзадачі",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Закрити",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "чорний",
- "color-blue": "синій",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "зелений",
- "color-indigo": "indigo",
- "color-lime": "лайм",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "помаранчевий",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "рожевий",
- "color-plum": "plum",
- "color-purple": "фіолетовий",
- "color-red": "червоний",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "жовтий",
- "unset-color": "Unset",
- "comment": "Коментар",
- "comment-placeholder": "Написати коментар",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "Немає коментарів",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Скопіювати посилання на картку в буфер обміну",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Змінити аватар",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Не видаляйте імпортовані дані з раніше збереженої дошки або Trello, поки не переконаєтеся, що імпорт завершився успішно - вдається закрити і знову відкрити дошку, і не з'являється помилка «Дошка не знайдена», що означає втрату даних.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Користувачі",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "Цю дошку можуть переглядати усі, у кого є посилання. Також ця дошка може бути проіндексована пошуковими системами. Вносити зміни можуть тільки учасники.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Перейменувати дошку",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "Ви будете повідомлені про будь-які зміни в тих картках, в яких ви є творцем або учасником.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "Кількість завдань у цьому списку перевищує встановлений вами ліміт",
- "wipLimitErrorPopup-dialog-pt2": "Будь ласка, перенесіть деякі завдання з цього списку або збільште ліміт на кількість завдань",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Правило",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Дошка правил",
- "r-add-rule": "Add rule",
- "r-view-rule": "Переглянути правило",
- "r-delete-rule": "Видалити правило",
- "r-new-rule-name": "Заголовок нового правила\n",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Видалити з",
- "r-the-board": "Дошка",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "переміщено до",
- "r-moved-from": "переміщено з",
- "r-archived": "переміщено до Архіву",
- "r-unarchived": "Відновлено з Архіву",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "Картка",
- "r-add": "Додати",
- "r-remove": "Видалити\n",
- "r-label": "label",
- "r-member": "Користувач",
- "r-remove-all": "Видалити усіх учасників картки",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "Об'єкт",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Відправити email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "Об'єкт",
- "r-d-send-email-message": "повідомлення",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Додати користувача",
- "r-d-remove-member": "Видалити користувача",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Прийняти",
+ "act-activity-notify": "Сповіщення активності",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "Дошку __board__створено",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Дії",
+ "activities": "Діяльності",
+ "activity": "Діяльність",
+ "activity-added": "%s додано до %s",
+ "activity-archived": "%s перенесено до архіву",
+ "activity-attached": "%s прикріплено до %s",
+ "activity-created": "%sстворено",
+ "activity-customfield-created": "Створено спеціальне поле",
+ "activity-excluded": "%s виключено з %s",
+ "activity-imported": "%s імпортовано до %s з %s",
+ "activity-imported-board": "%s імпортовано з %s",
+ "activity-joined": "%s приєднано",
+ "activity-moved": "%s переміщено з %s до %s",
+ "activity-on": "%s",
+ "activity-removed": "%s видалено з %s",
+ "activity-sent": "%s відправлено до %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "Додано підзадачу до %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "Додано контрольний список до %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Додати",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Додати дошку",
+ "add-card": "Додати картку",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Додати елемент в список",
+ "add-cover": "Додати обкладинку",
+ "add-label": "Додати мітку",
+ "add-list": "Додати список",
+ "add-members": "Додати користувача",
+ "added": "Доданно",
+ "addMemberPopup-title": "Користувачі",
+ "admin": "Адмін",
+ "admin-desc": "Може переглядати і редагувати картки, відаляти учасників та змінювати налаштування для дошки.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Всі дошки",
+ "and-n-other-card": "та __count__ інших карток",
+ "and-n-other-card_plural": "та __count__ інших карток",
+ "apply": "Прийняти",
+ "app-is-offline": "Завантаження, будь ласка, зачекайте. Оновлення сторінки призведе до втрати даних. Якщо завантаження не працює, перевірте, чи не зупинився сервер.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Архів",
+ "archived-boards": "Дошки в архіві",
+ "restore-board": "Відновити дошку",
+ "no-archived-boards": "Немає дошок в архіві",
+ "archives": "Архів",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "доданно",
+ "attachment": "Додаток",
+ "attachment-delete-pop": "Видалення Додатку безповоротне. Тут нема відміні (undo).",
+ "attachmentDeletePopup-title": "Видалити Додаток?",
+ "attachments": "Додатки",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Назад",
+ "board-change-color": "Змінити колір",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Дошка не знайдена",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Перейменувати дошку",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Дошки",
+ "board-view": "Board View",
+ "board-view-cal": "Календар",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Відміна",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Цю дію неможливо буде скасувати. Всі зміни, які ви вносили в картку будуть втрачені.",
+ "card-delete-pop": "Усі дії буде видалено з каналу активності, і ви не зможете повторно відкрити картку. Цю дію не можна скасувати.",
+ "card-delete-suggest-archive": "Ви можете перемістити картку до архіву, щоб прибрати її з дошки, зберігаючи всю історію дій учасників.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Витрачено часу",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Редагувати мітки",
+ "card-edit-members": "Редагувати учасників",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Видалити картку?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Користувачі",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Картки",
+ "cards-count": "Картки",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Картка",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Змінити",
+ "change-avatar": "Змінити аватар",
+ "change-password": "Змінити пароль",
+ "change-permissions": "Change permissions",
+ "change-settings": "Змінити налаштування",
+ "changeAvatarPopup-title": "Змінити аватар",
+ "changeLanguagePopup-title": "Змінити мову",
+ "changePasswordPopup-title": "Змінити пароль",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Змінити налаштування",
+ "subtasks": "Підзадачі",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Закрити",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "чорний",
+ "color-blue": "синій",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "зелений",
+ "color-indigo": "indigo",
+ "color-lime": "лайм",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "помаранчевий",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "рожевий",
+ "color-plum": "plum",
+ "color-purple": "фіолетовий",
+ "color-red": "червоний",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "жовтий",
+ "unset-color": "Unset",
+ "comment": "Коментар",
+ "comment-placeholder": "Написати коментар",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "Немає коментарів",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Скопіювати посилання на картку в буфер обміну",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Змінити аватар",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Не видаляйте імпортовані дані з раніше збереженої дошки або Trello, поки не переконаєтеся, що імпорт завершився успішно - вдається закрити і знову відкрити дошку, і не з'являється помилка «Дошка не знайдена», що означає втрату даних.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Користувачі",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "Цю дошку можуть переглядати усі, у кого є посилання. Також ця дошка може бути проіндексована пошуковими системами. Вносити зміни можуть тільки учасники.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Перейменувати дошку",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "Ви будете повідомлені про будь-які зміни в тих картках, в яких ви є творцем або учасником.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "Кількість завдань у цьому списку перевищує встановлений вами ліміт",
+ "wipLimitErrorPopup-dialog-pt2": "Будь ласка, перенесіть деякі завдання з цього списку або збільште ліміт на кількість завдань",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Правило",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Дошка правил",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "Переглянути правило",
+ "r-delete-rule": "Видалити правило",
+ "r-new-rule-name": "Заголовок нового правила\n",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Видалити з",
+ "r-the-board": "Дошка",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "переміщено до",
+ "r-moved-from": "переміщено з",
+ "r-archived": "переміщено до Архіву",
+ "r-unarchived": "Відновлено з Архіву",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "Картка",
+ "r-add": "Додати",
+ "r-remove": "Видалити\n",
+ "r-label": "label",
+ "r-member": "Користувач",
+ "r-remove-all": "Видалити усіх учасників картки",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "Об'єкт",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Відправити email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "Об'єкт",
+ "r-d-send-email-message": "повідомлення",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Додати користувача",
+ "r-d-remove-member": "Видалити користувача",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/vi.i18n.json b/i18n/vi.i18n.json
index 2d885de1..b9775dec 100644
--- a/i18n/vi.i18n.json
+++ b/i18n/vi.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Chấp nhận",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Hành Động",
- "activities": "Hoạt Động",
- "activity": "Hoạt Động",
- "activity-added": "đã thêm %s vào %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "đã đính kèm %s vào %s",
- "activity-created": "đã tạo %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "đã loại bỏ %s khỏi %s",
- "activity-imported": "đã nạp %s vào %s từ %s",
- "activity-imported-board": "đã nạp %s từ %s",
- "activity-joined": "đã tham gia %s",
- "activity-moved": "đã di chuyển %s từ %s đến %s",
- "activity-on": "trên %s",
- "activity-removed": "đã xóa %s từ %s",
- "activity-sent": "gửi %s đến %s",
- "activity-unjoined": "đã rời khỏi %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "đã thêm checklist vào %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Thêm",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Thêm Bản Đính Kèm",
- "add-board": "Thêm Bảng",
- "add-card": "Thêm Thẻ",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Thêm Danh Sách Kiểm Tra",
- "add-checklist-item": "Thêm Một Mục Vào Danh Sách Kiểm Tra",
- "add-cover": "Thêm Bìa",
- "add-label": "Thêm Nhãn",
- "add-list": "Thêm Danh Sách",
- "add-members": "Thêm Thành Viên",
- "added": "Đã Thêm",
- "addMemberPopup-title": "Thành Viên",
- "admin": "Quản Trị Viên",
- "admin-desc": "Có thể xem và chỉnh sửa những thẻ, xóa thành viên và thay đổi cài đặt cho bảng.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "Tất cả các bảng",
- "and-n-other-card": "Và __count__ thẻ khác",
- "and-n-other-card_plural": "Và __count__ thẻ khác",
- "apply": "Ứng Dụng",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Lưu Trữ",
- "archived-boards": "Boards in Archive",
- "restore-board": "Khôi Phục Bảng",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Lưu Trữ",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Chỉ định thành viên",
- "attached": "đã đính kèm",
- "attachment": "Phần đính kèm",
- "attachment-delete-pop": "Xóa tệp đính kèm là vĩnh viễn. Không có khôi phục.",
- "attachmentDeletePopup-title": "Xóa tệp đính kèm không?",
- "attachments": "Tệp Đính Kèm",
- "auto-watch": "Tự động xem bảng lúc được tạo ra",
- "avatar-too-big": "Hình đại diện quá to (70KB tối đa)",
- "back": "Trở Lại",
- "board-change-color": "Đổi màu",
- "board-nb-stars": "%s sao",
- "board-not-found": "Không tìm được bảng",
- "board-private-info": "Bảng này sẽ chuyển sang <strong> chế độ private</strong>.",
- "board-public-info": "Bảng này sẽ chuyển sang <strong> chế độ public</strong>.",
- "boardChangeColorPopup-title": "Thay hình nền của bảng",
- "boardChangeTitlePopup-title": "Đổi tên bảng",
- "boardChangeVisibilityPopup-title": "Đổi cách hiển thị",
- "boardChangeWatchPopup-title": "Đổi cách xem",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Bảng",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Hủy",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "Thẻ này có %s bình luận.",
- "card-delete-notice": "Hành động xóa là không thể khôi phục. Bạn sẽ mất hết các hoạt động liên quan đến thẻ này.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Thành Viên",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "Log In",
- "loginPopup-title": "Log In",
- "memberMenuPopup-title": "Member Settings",
- "members": "Thành Viên",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Đổi tên bảng",
- "restore": "Restore",
- "save": "Save",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Thêm",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Chấp nhận",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Hành Động",
+ "activities": "Hoạt Động",
+ "activity": "Hoạt Động",
+ "activity-added": "đã thêm %s vào %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "đã đính kèm %s vào %s",
+ "activity-created": "đã tạo %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "đã loại bỏ %s khỏi %s",
+ "activity-imported": "đã nạp %s vào %s từ %s",
+ "activity-imported-board": "đã nạp %s từ %s",
+ "activity-joined": "đã tham gia %s",
+ "activity-moved": "đã di chuyển %s từ %s đến %s",
+ "activity-on": "trên %s",
+ "activity-removed": "đã xóa %s từ %s",
+ "activity-sent": "gửi %s đến %s",
+ "activity-unjoined": "đã rời khỏi %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "đã thêm checklist vào %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Thêm",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Thêm Bản Đính Kèm",
+ "add-board": "Thêm Bảng",
+ "add-card": "Thêm Thẻ",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Thêm Danh Sách Kiểm Tra",
+ "add-checklist-item": "Thêm Một Mục Vào Danh Sách Kiểm Tra",
+ "add-cover": "Thêm Bìa",
+ "add-label": "Thêm Nhãn",
+ "add-list": "Thêm Danh Sách",
+ "add-members": "Thêm Thành Viên",
+ "added": "Đã Thêm",
+ "addMemberPopup-title": "Thành Viên",
+ "admin": "Quản Trị Viên",
+ "admin-desc": "Có thể xem và chỉnh sửa những thẻ, xóa thành viên và thay đổi cài đặt cho bảng.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "Tất cả các bảng",
+ "and-n-other-card": "Và __count__ thẻ khác",
+ "and-n-other-card_plural": "Và __count__ thẻ khác",
+ "apply": "Ứng Dụng",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Lưu Trữ",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Khôi Phục Bảng",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Lưu Trữ",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Chỉ định thành viên",
+ "attached": "đã đính kèm",
+ "attachment": "Phần đính kèm",
+ "attachment-delete-pop": "Xóa tệp đính kèm là vĩnh viễn. Không có khôi phục.",
+ "attachmentDeletePopup-title": "Xóa tệp đính kèm không?",
+ "attachments": "Tệp Đính Kèm",
+ "auto-watch": "Tự động xem bảng lúc được tạo ra",
+ "avatar-too-big": "Hình đại diện quá to (70KB tối đa)",
+ "back": "Trở Lại",
+ "board-change-color": "Đổi màu",
+ "board-nb-stars": "%s sao",
+ "board-not-found": "Không tìm được bảng",
+ "board-private-info": "Bảng này sẽ chuyển sang <strong> chế độ private</strong>.",
+ "board-public-info": "Bảng này sẽ chuyển sang <strong> chế độ public</strong>.",
+ "boardChangeColorPopup-title": "Thay hình nền của bảng",
+ "boardChangeTitlePopup-title": "Đổi tên bảng",
+ "boardChangeVisibilityPopup-title": "Đổi cách hiển thị",
+ "boardChangeWatchPopup-title": "Đổi cách xem",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Bảng",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Hủy",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "Thẻ này có %s bình luận.",
+ "card-delete-notice": "Hành động xóa là không thể khôi phục. Bạn sẽ mất hết các hoạt động liên quan đến thẻ này.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Thành Viên",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "Log In",
+ "loginPopup-title": "Log In",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Thành Viên",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Đổi tên bảng",
+ "restore": "Restore",
+ "save": "Save",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Thêm",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json
index 44ed703a..72503701 100644
--- a/i18n/zh-CN.i18n.json
+++ b/i18n/zh-CN.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "接受",
- "act-activity-notify": "活动通知",
- "act-addAttachment": "添加附件 __attachment__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
- "act-deleteAttachment": "删除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的附件 __attachment__",
- "act-addSubtask": "添加子任务 __subtask__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
- "act-addLabel": "添加标签 __label__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
- "act-addedLabel": "添加标签 __label__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
- "act-removeLabel": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的标签 __label__",
- "act-removedLabel": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的标签 __label__",
- "act-addChecklist": "添加清单 __checklist__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
- "act-addChecklistItem": "添加清单项 __checklistItem__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__",
- "act-removeChecklist": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__",
- "act-removeChecklistItem": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 清单项 __checklistItem__",
- "act-checkedItem": "选中看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 的清单项 __checklistItem__",
- "act-uncheckedItem": "反选看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 的清单项 __checklistItem__",
- "act-completeChecklist": "完成检查列表__checklist__ 卡片 __card__ 列表 __list__ 泳道 __swimlane__ 看板 __board__",
- "act-uncompleteChecklist": "看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 未完成",
- "act-addComment": "对看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 发表了评论: __comment__",
- "act-editComment": "编辑卡片中的评论:看板__board__中的泳道__swimlane__中的列表__list__中的评论__comment__",
- "act-deleteComment": "删除卡片中的评论:看板__board__中的泳道__swimlane__中的列表__list__中的评论__comment__",
- "act-createBoard": "创建看板 __board__",
- "act-createSwimlane": "创建泳道 __swimlane__ 到看板 __board__",
- "act-createCard": "在看板 __board__ 的泳道 __swimlane__ 的列表 __list__ 中添加卡片 __card__",
- "act-createCustomField": "已创建看板__board__中的自定义字段__customField__",
- "act-deleteCustomField": "已删除看板__board__中的自定义字段__customField__",
- "act-setCustomField": "编辑定制字段__customField__:看板__board__中的泳道__swimlane__中的列表__list__中的卡片__card__中的__customFieldValue__",
- "act-createList": "添加列表 __list__ 至看板 __board__",
- "act-addBoardMember": "添加成员 __member__ 到看板 __board__",
- "act-archivedBoard": "看板 __board__ 已被移入归档",
- "act-archivedCard": "将看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 移动到归档中",
- "act-archivedList": "看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 已被移入归档",
- "act-archivedSwimlane": "看板 __board__ 中的泳道 __swimlane__ 已被移入归档",
- "act-importBoard": "导入看板 __board__",
- "act-importCard": "已将卡片 __card__ 导入到 __board__ 看板中的 __swimlane__ 泳道中的 __list__ 列表中",
- "act-importList": "已将列表导入到 __board__ 看板中的 __swimlane__  泳道中的 __list__  列表中",
- "act-joinMember": "已将成员 __member__  添加到 __board__ 看板中的 __swimlane__ 泳道中的 __list__  列表中的 __card__ 卡片中",
- "act-moveCard": "移动卡片 __card__ 到看板 __board__ 从列表 __oldList__ 泳道 __oldSwimlane__ 至列表 __list__ 泳道 __swimlane__",
- "act-moveCardToOtherBoard": "移动卡片 __card__ 从列表 __oldList__ 泳道 __oldSwimlane__ 看板 __oldBoard__ 至列表 __list__ 泳道 __swimlane__ 看板 __board__",
- "act-removeBoardMember": "从看板 __board__ 移除成员 __member__",
- "act-restoredCard": "恢复卡片 __card__ 至列表 __list__ 泳道 __swimlane__ 看板 __board__",
- "act-unjoinMember": "移除成员 __member__ 从卡片 __card__ 列表 __list__ a泳道 __swimlane__ 看板 __board__",
- "act-withBoardTitle": "看板__board__",
- "act-withCardTitle": "[看板 __board__] 卡片 __card__",
- "actions": "操作",
- "activities": "活动",
- "activity": "活动",
- "activity-added": "添加 %s 至 %s",
- "activity-archived": "%s 已被移入归档",
- "activity-attached": "添加附件 %s 至 %s",
- "activity-created": "创建 %s",
- "activity-customfield-created": "创建了自定义字段 %s",
- "activity-excluded": "排除 %s 从 %s",
- "activity-imported": "导入 %s 至 %s 从 %s 中",
- "activity-imported-board": "已导入 %s 从 %s 中",
- "activity-joined": "已关联 %s",
- "activity-moved": "将 %s 从 %s 移动到 %s",
- "activity-on": "在 %s",
- "activity-removed": "从 %s 中移除 %s",
- "activity-sent": "发送 %s 至 %s",
- "activity-unjoined": "已解除 %s 关联",
- "activity-subtask-added": "添加子任务到%s",
- "activity-checked-item": "勾选%s于清单%s 共 %s",
- "activity-unchecked-item": "未勾选 %s 于清单 %s 共 %s",
- "activity-checklist-added": "已经将清单添加到 %s",
- "activity-checklist-removed": "已从%s移除待办清单",
- "activity-checklist-completed": "完成检查列表__checklist__ 卡片 __card__ 列表 __list__ 泳道 __swimlane__ 看板 __board__",
- "activity-checklist-uncompleted": "未完成清单 %s 共 %s",
- "activity-checklist-item-added": "添加清单项至'%s' 于 %s",
- "activity-checklist-item-removed": "已从 '%s' 于 %s中 移除一个清单项",
- "add": "添加",
- "activity-checked-item-card": "勾选 %s 与清单 %s 中",
- "activity-unchecked-item-card": "取消勾选 %s 于清单 %s中",
- "activity-checklist-completed-card": "完成检查列表 __checklist__ 卡片 __card__ 列表 __list__ 泳道 __swimlane__ 看板 __board__",
- "activity-checklist-uncompleted-card": "未完成清单 %s",
- "add-attachment": "添加附件",
- "add-board": "添加看板",
- "add-card": "添加卡片",
- "add-swimlane": "添加泳道图",
- "add-subtask": "添加子任务",
- "add-checklist": "添加待办清单",
- "add-checklist-item": "扩充清单",
- "add-cover": "添加封面",
- "add-label": "添加标签",
- "add-list": "添加列表",
- "add-members": "添加成员",
- "added": "添加",
- "addMemberPopup-title": "成员",
- "admin": "管理员",
- "admin-desc": "可以浏览并编辑卡片,移除成员,并且更改该看板的设置",
- "admin-announcement": "通知",
- "admin-announcement-active": "激活系统通知",
- "admin-announcement-title": "管理员的通知",
- "all-boards": "全部看板",
- "and-n-other-card": "和其他 __count__ 个卡片",
- "and-n-other-card_plural": "和其他 __count__ 个卡片",
- "apply": "应用",
- "app-is-offline": "加载中,请稍后。刷新页面将导致数据丢失,如果加载长时间不起作用,请检查服务器是否已经停止工作。",
- "archive": "归档",
- "archive-all": "全部归档",
- "archive-board": "将看板归档",
- "archive-card": "将卡片归档",
- "archive-list": "将列表归档",
- "archive-swimlane": "将泳道归档",
- "archive-selection": "将选择归档",
- "archiveBoardPopup-title": "是否归档看板?",
- "archived-items": "归档",
- "archived-boards": "归档的看板",
- "restore-board": "还原看板",
- "no-archived-boards": "没有归档的看板。",
- "archives": "归档",
- "template": "模板",
- "templates": "模板",
- "assign-member": "分配成员",
- "attached": "附加",
- "attachment": "附件",
- "attachment-delete-pop": "删除附件的操作不可逆。",
- "attachmentDeletePopup-title": "删除附件?",
- "attachments": "附件",
- "auto-watch": "自动关注新建的看板",
- "avatar-too-big": "头像过大 (上限 70 KB)",
- "back": "返回",
- "board-change-color": "更改颜色",
- "board-nb-stars": "%s 星标",
- "board-not-found": "看板不存在",
- "board-private-info": "该看板将被设为 <strong>私有</strong>.",
- "board-public-info": "该看板将被设为 <strong>公开</strong>.",
- "boardChangeColorPopup-title": "修改看板背景",
- "boardChangeTitlePopup-title": "重命名看板",
- "boardChangeVisibilityPopup-title": "更改可视级别",
- "boardChangeWatchPopup-title": "更改关注状态",
- "boardMenuPopup-title": "看板设置",
- "boards": "看板",
- "board-view": "看板视图",
- "board-view-cal": "日历",
- "board-view-swimlanes": "泳道图",
- "board-view-lists": "列表",
- "bucket-example": "例如 “目标清单”",
- "cancel": "取消",
- "card-archived": "归档这个卡片。",
- "board-archived": "归档这个看板。",
- "card-comments-title": "该卡片有 %s 条评论",
- "card-delete-notice": "彻底删除的操作不可恢复,你将会丢失该卡片相关的所有操作记录。",
- "card-delete-pop": "所有的活动将从活动摘要中被移除且您将无法重新打开该卡片。此操作无法撤销。",
- "card-delete-suggest-archive": "您可以移动卡片到活动以便从看板中删除并保持活动。",
- "card-due": "到期",
- "card-due-on": "期限",
- "card-spent": "耗时",
- "card-edit-attachments": "编辑附件",
- "card-edit-custom-fields": "编辑自定义字段",
- "card-edit-labels": "编辑标签",
- "card-edit-members": "编辑成员",
- "card-labels-title": "更改该卡片上的标签",
- "card-members-title": "在该卡片中添加或移除看板成员",
- "card-start": "开始",
- "card-start-on": "始于",
- "cardAttachmentsPopup-title": "附件来源",
- "cardCustomField-datePopup-title": "修改日期",
- "cardCustomFieldsPopup-title": "编辑自定义字段",
- "cardDeletePopup-title": "彻底删除卡片?",
- "cardDetailsActionsPopup-title": "卡片操作",
- "cardLabelsPopup-title": "标签",
- "cardMembersPopup-title": "成员",
- "cardMorePopup-title": "更多",
- "cardTemplatePopup-title": "新建模板",
- "cards": "卡片",
- "cards-count": "卡片",
- "casSignIn": "用CAS登录",
- "cardType-card": "卡片",
- "cardType-linkedCard": "已链接卡片",
- "cardType-linkedBoard": "已链接看板",
- "change": "变更",
- "change-avatar": "更改头像",
- "change-password": "更改密码",
- "change-permissions": "更改权限",
- "change-settings": "更改设置",
- "changeAvatarPopup-title": "更改头像",
- "changeLanguagePopup-title": "更改语言",
- "changePasswordPopup-title": "更改密码",
- "changePermissionsPopup-title": "更改权限",
- "changeSettingsPopup-title": "更改设置",
- "subtasks": "子任务",
- "checklists": "清单",
- "click-to-star": "点此来标记该看板",
- "click-to-unstar": "点此来去除该看板的标记",
- "clipboard": "剪贴板或者拖放文件",
- "close": "关闭",
- "close-board": "关闭看板",
- "close-board-pop": "您可以通过主页头部的“归档”按钮,来恢复看板。",
- "color-black": "黑色",
- "color-blue": "蓝色",
- "color-crimson": "深红",
- "color-darkgreen": "墨绿",
- "color-gold": "金",
- "color-gray": "灰",
- "color-green": "绿色",
- "color-indigo": "靛蓝",
- "color-lime": "绿黄",
- "color-magenta": "洋红",
- "color-mistyrose": "玫瑰红",
- "color-navy": "藏青",
- "color-orange": "橙色",
- "color-paleturquoise": "宝石绿",
- "color-peachpuff": "桃红",
- "color-pink": "粉红",
- "color-plum": "紫红",
- "color-purple": "紫色",
- "color-red": "红色",
- "color-saddlebrown": "棕褐",
- "color-silver": "银",
- "color-sky": "天蓝",
- "color-slateblue": "石板蓝",
- "color-white": "白",
- "color-yellow": "黄色",
- "unset-color": "复原",
- "comment": "评论",
- "comment-placeholder": "添加评论",
- "comment-only": "仅能评论",
- "comment-only-desc": "只能在卡片上评论。",
- "no-comments": "暂无评论",
- "no-comments-desc": "无法查看评论和活动。",
- "computer": "从本机上传",
- "confirm-subtask-delete-dialog": "确定要删除子任务吗?",
- "confirm-checklist-delete-dialog": "确定要删除清单吗?",
- "copy-card-link-to-clipboard": "复制卡片链接到剪贴板",
- "linkCardPopup-title": "链接卡片",
- "searchElementPopup-title": "搜索",
- "copyCardPopup-title": "复制卡片",
- "copyChecklistToManyCardsPopup-title": "复制清单模板至多个卡片",
- "copyChecklistToManyCardsPopup-instructions": "以JSON格式表示目标卡片的标题和描述",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"第一个卡片的标题\", \"description\":\"第一个卡片的描述\"}, {\"title\":\"第二个卡片的标题\",\"description\":\"第二个卡片的描述\"},{\"title\":\"最后一个卡片的标题\",\"description\":\"最后一个卡片的描述\"} ]",
- "create": "创建",
- "createBoardPopup-title": "创建看板",
- "chooseBoardSourcePopup-title": "导入看板",
- "createLabelPopup-title": "创建标签",
- "createCustomField": "创建字段",
- "createCustomFieldPopup-title": "创建字段",
- "current": "当前",
- "custom-field-delete-pop": "没有撤销,此动作将从所有卡片中移除自定义字段并销毁历史。",
- "custom-field-checkbox": "选择框",
- "custom-field-date": "日期",
- "custom-field-dropdown": "下拉列表",
- "custom-field-dropdown-none": "(无)",
- "custom-field-dropdown-options": "列表选项",
- "custom-field-dropdown-options-placeholder": "回车可以加入更多选项",
- "custom-field-dropdown-unknown": "(未知)",
- "custom-field-number": "数字",
- "custom-field-text": "文本",
- "custom-fields": "自定义字段",
- "date": "日期",
- "decline": "拒绝",
- "default-avatar": "默认头像",
- "delete": "删除",
- "deleteCustomFieldPopup-title": "删除自定义字段?",
- "deleteLabelPopup-title": "删除标签?",
- "description": "描述",
- "disambiguateMultiLabelPopup-title": "消除标签歧义",
- "disambiguateMultiMemberPopup-title": "消除成员歧义",
- "discard": "放弃",
- "done": "完成",
- "download": "下载",
- "edit": "编辑",
- "edit-avatar": "更改头像",
- "edit-profile": "编辑资料",
- "edit-wip-limit": "编辑最大任务数",
- "soft-wip-limit": "最大任务数软限制",
- "editCardStartDatePopup-title": "修改起始日期",
- "editCardDueDatePopup-title": "修改截止日期",
- "editCustomFieldPopup-title": "编辑字段",
- "editCardSpentTimePopup-title": "修改耗时",
- "editLabelPopup-title": "更改标签",
- "editNotificationPopup-title": "编辑通知",
- "editProfilePopup-title": "编辑资料",
- "email": "邮箱",
- "email-enrollAccount-subject": "已为您在 __siteName__ 创建帐号",
- "email-enrollAccount-text": "尊敬的 __user__,\n\n点击下面的链接,即刻开始使用这项服务。\n\n__url__\n\n谢谢。",
- "email-fail": "邮件发送失败",
- "email-fail-text": "尝试发送邮件时出错",
- "email-invalid": "邮件地址错误",
- "email-invite": "发送邮件邀请",
- "email-invite-subject": "__inviter__ 向您发出邀请",
- "email-invite-text": "尊敬的 __user__,\n\n__inviter__ 邀请您加入看板 \"__board__\" 参与协作。\n\n请点击下面的链接访问看板:\n\n__url__\n\n谢谢。",
- "email-resetPassword-subject": "重置您的 __siteName__ 密码",
- "email-resetPassword-text": "尊敬的 __user__,\n\n点击下面的链接,重置您的密码:\n\n__url__\n\n谢谢。",
- "email-sent": "邮件已发送",
- "email-verifyEmail-subject": "在 __siteName__ 验证您的邮件地址",
- "email-verifyEmail-text": "尊敬的 __user__,\n\n点击下面的链接,验证您的邮件地址:\n\n__url__\n\n谢谢。",
- "enable-wip-limit": "启用最大任务数限制",
- "error-board-doesNotExist": "该看板不存在",
- "error-board-notAdmin": "需要成为管理员才能执行此操作",
- "error-board-notAMember": "需要成为看板成员才能执行此操作",
- "error-json-malformed": "文本不是合法的 JSON",
- "error-json-schema": "JSON 数据没有用正确的格式包含合适的信息",
- "error-list-doesNotExist": "不存在此列表",
- "error-user-doesNotExist": "该用户不存在",
- "error-user-notAllowSelf": "无法邀请自己",
- "error-user-notCreated": "该用户未能成功创建",
- "error-username-taken": "此用户名已存在",
- "error-email-taken": "此EMail已存在",
- "export-board": "导出看板",
- "filter": "过滤",
- "filter-cards": "过滤卡片",
- "filter-clear": "清空过滤器",
- "filter-no-label": "无标签",
- "filter-no-member": "无成员",
- "filter-no-custom-fields": "无自定义字段",
- "filter-on": "过滤器启用",
- "filter-on-desc": "你正在过滤该看板上的卡片,点此编辑过滤。",
- "filter-to-selection": "要选择的过滤器",
- "advanced-filter-label": "高级过滤器",
- "advanced-filter-description": "高级过滤器可以使用包含如下操作符的字符串进行过滤:== != <= >= && || ( ) 。操作符之间用空格隔开。输入字段名和数值就可以过滤所有自定义字段。例如:Field1 == Value1。注意如果字段名或数值包含空格,需要用单引号。例如: 'Field 1' == 'Value 1'。要跳过单个控制字符(' \\/),请使用 \\ 转义字符。例如: Field1 = I\\'m。支持组合使用多个条件,例如: F1 == V1 || F1 == V2。通常以从左到右的顺序进行判断。可以通过括号修改顺序,例如:F1 == V1 && ( F2 == V2 || F2 == V3 )。也支持使用正则表达式搜索文本字段。",
- "fullname": "全称",
- "header-logo-title": "返回您的看板页",
- "hide-system-messages": "隐藏系统消息",
- "headerBarCreateBoardPopup-title": "创建看板",
- "home": "首页",
- "import": "导入",
- "link": "链接",
- "import-board": "导入看板",
- "import-board-c": "导入看板",
- "import-board-title-trello": "从Trello导入看板",
- "import-board-title-wekan": "从以前的导出数据导入看板",
- "import-sandstorm-backup-warning": "在检查此颗粒是否关闭和再次打开之前,不要删除从原始导出的看板或Trello导入的数据,否则看板会发生未知的错误,这将意味着数据丢失。",
- "import-sandstorm-warning": "导入的面板将删除所有已存在于面板上的数据并替换他们为导入的面板。",
- "from-trello": "自 Trello",
- "from-wekan": "自以前的导出",
- "import-board-instruction-trello": "在你的Trello看板中,点击“菜单”,然后选择“更多”,“打印与导出”,“导出为 JSON” 并拷贝结果文本",
- "import-board-instruction-wekan": "在您的看板,点击“菜单”,然后“导出看板”,复制下载文件中的文本。",
- "import-board-instruction-about-errors": "如果在导入看板时出现错误,导入工作可能仍然在进行中,并且看板已经出现在全部看板页。",
- "import-json-placeholder": "粘贴您有效的 JSON 数据至此",
- "import-map-members": "映射成员",
- "import-members-map": "您导入的看板有一些成员,请映射这些成员到您导入的用户。",
- "import-show-user-mapping": "核对成员映射",
- "import-user-select": "为这个成员选择您已经存在的用户",
- "importMapMembersAddPopup-title": "选择成员",
- "info": "版本",
- "initials": "缩写",
- "invalid-date": "无效日期",
- "invalid-time": "非法时间",
- "invalid-user": "非法用户",
- "joined": "关联",
- "just-invited": "您刚刚被邀请加入此看板",
- "keyboard-shortcuts": "键盘快捷键",
- "label-create": "创建标签",
- "label-default": "%s 标签 (默认)",
- "label-delete-pop": "此操作不可逆,这将会删除该标签并清除它的历史记录。",
- "labels": "标签",
- "language": "语言",
- "last-admin-desc": "你不能更改角色,因为至少需要一名管理员。",
- "leave-board": "离开看板",
- "leave-board-pop": "确认要离开 __boardTitle__ 吗?此看板的所有卡片都会将您移除。",
- "leaveBoardPopup-title": "离开看板?",
- "link-card": "关联至该卡片",
- "list-archive-cards": "将此列表中的所有卡片归档",
- "list-archive-cards-pop": "将移动看板中列表的所有卡片,查看或回复归档中的卡片,点击“菜单”->“归档”",
- "list-move-cards": "移动列表中的所有卡片",
- "list-select-cards": "选择列表中的所有卡片",
- "set-color-list": "设置颜色",
- "listActionPopup-title": "列表操作",
- "swimlaneActionPopup-title": "泳道图操作",
- "swimlaneAddPopup-title": "在下面添加一个泳道",
- "listImportCardPopup-title": "导入 Trello 卡片",
- "listMorePopup-title": "更多",
- "link-list": "关联到这个列表",
- "list-delete-pop": "所有活动将被从活动动态中删除并且你无法恢复他们,此操作无法撤销。",
- "list-delete-suggest-archive": "您可以移动列表到归档以将其从看板中移除并保留活动。",
- "lists": "列表",
- "swimlanes": "泳道图",
- "log-out": "登出",
- "log-in": "登录",
- "loginPopup-title": "登录",
- "memberMenuPopup-title": "成员设置",
- "members": "成员",
- "menu": "菜单",
- "move-selection": "移动选择",
- "moveCardPopup-title": "移动卡片",
- "moveCardToBottom-title": "移动至底端",
- "moveCardToTop-title": "移动至顶端",
- "moveSelectionPopup-title": "移动选择",
- "multi-selection": "多选",
- "multi-selection-on": "多选启用",
- "muted": "静默",
- "muted-info": "你将不会收到此看板的任何变更通知",
- "my-boards": "我的看板",
- "name": "名称",
- "no-archived-cards": "存档中没有卡片。",
- "no-archived-lists": "存档中没有清单。",
- "no-archived-swimlanes": "存档中没有泳道。",
- "no-results": "无结果",
- "normal": "普通",
- "normal-desc": "可以创建以及编辑卡片,无法更改设置。",
- "not-accepted-yet": "邀请尚未接受",
- "notify-participate": "接收以创建者或成员身份参与的卡片的更新",
- "notify-watch": "接收所有关注的面板、列表、及卡片的更新",
- "optional": "可选",
- "or": "或",
- "page-maybe-private": "本页面被设为私有. 您必须 <a href='%s'>登录</a>以浏览其中内容。",
- "page-not-found": "页面不存在。",
- "password": "密码",
- "paste-or-dragdrop": "从剪贴板粘贴,或者拖放文件到它上面 (仅限于图片)",
- "participating": "参与",
- "preview": "预览",
- "previewAttachedImagePopup-title": "预览",
- "previewClipboardImagePopup-title": "预览",
- "private": "私有",
- "private-desc": "该看板将被设为私有。只有该看板成员才可以进行查看和编辑。",
- "profile": "资料",
- "public": "公开",
- "public-desc": "该看板将被公开。任何人均可通过链接查看,并且将对Google和其他搜索引擎开放。只有添加至该看板的成员才可进行编辑。",
- "quick-access-description": "星标看板在导航条中添加快捷方式",
- "remove-cover": "移除封面",
- "remove-from-board": "从看板中删除",
- "remove-label": "移除标签",
- "listDeletePopup-title": "删除列表",
- "remove-member": "移除成员",
- "remove-member-from-card": "从该卡片中移除",
- "remove-member-pop": "确定从 __boardTitle__ 中移除 __name__ (__username__) 吗? 该成员将被从该看板的所有卡片中移除,同时他会收到一条提醒。",
- "removeMemberPopup-title": "删除成员?",
- "rename": "重命名",
- "rename-board": "重命名看板",
- "restore": "还原",
- "save": "保存",
- "search": "搜索",
- "rules": "规则",
- "search-cards": "搜索当前看板上的卡片标题和描述",
- "search-example": "搜索",
- "select-color": "选择颜色",
- "set-wip-limit-value": "设置此列表中的最大任务数",
- "setWipLimitPopup-title": "设置最大任务数",
- "shortcut-assign-self": "分配当前卡片给自己",
- "shortcut-autocomplete-emoji": "表情符号自动补全",
- "shortcut-autocomplete-members": "自动补全成员",
- "shortcut-clear-filters": "清空全部过滤器",
- "shortcut-close-dialog": "关闭对话框",
- "shortcut-filter-my-cards": "过滤我的卡片",
- "shortcut-show-shortcuts": "显示此快捷键列表",
- "shortcut-toggle-filterbar": "切换过滤器边栏",
- "shortcut-toggle-sidebar": "切换面板边栏",
- "show-cards-minimum-count": "当列表中的卡片多于此阈值时将显示数量",
- "sidebar-open": "打开侧栏",
- "sidebar-close": "打开侧栏",
- "signupPopup-title": "创建账户",
- "star-board-title": "点此来标记该看板,它将会出现在您的看板列表顶部。",
- "starred-boards": "已标记看板",
- "starred-boards-description": "已标记看板将会出现在您的看板列表顶部。",
- "subscribe": "订阅",
- "team": "团队",
- "this-board": "该看板",
- "this-card": "该卡片",
- "spent-time-hours": "耗时 (小时)",
- "overtime-hours": "超时 (小时)",
- "overtime": "超时",
- "has-overtime-cards": "有超时卡片",
- "has-spenttime-cards": "耗时卡",
- "time": "时间",
- "title": "标题",
- "tracking": "跟踪",
- "tracking-info": "当任何包含您(作为创建者或成员)的卡片发生变更时,您将得到通知。",
- "type": "类型",
- "unassign-member": "取消分配成员",
- "unsaved-description": "存在未保存的描述",
- "unwatch": "取消关注",
- "upload": "上传",
- "upload-avatar": "上传头像",
- "uploaded-avatar": "头像已经上传",
- "username": "用户名",
- "view-it": "查看",
- "warn-list-archived": "警告:此卡片在列表归档中",
- "watch": "关注",
- "watching": "关注",
- "watching-info": "当此看板发生变更时会通知你",
- "welcome-board": "“欢迎”看板",
- "welcome-swimlane": "里程碑 1",
- "welcome-list1": "基本",
- "welcome-list2": "高阶",
- "card-templates-swimlane": "卡片模板",
- "list-templates-swimlane": "列表模板",
- "board-templates-swimlane": "看板模板",
- "what-to-do": "要做什么?",
- "wipLimitErrorPopup-title": "无效的最大任务数",
- "wipLimitErrorPopup-dialog-pt1": "此列表中的任务数量已经超过了设置的最大任务数。",
- "wipLimitErrorPopup-dialog-pt2": "请将一些任务移出此列表,或者设置一个更大的最大任务数。",
- "admin-panel": "管理面板",
- "settings": "设置",
- "people": "人员",
- "registration": "注册",
- "disable-self-registration": "禁止自助注册",
- "invite": "邀请",
- "invite-people": "邀请人员",
- "to-boards": "邀请到看板 (可多选)",
- "email-addresses": "电子邮箱地址",
- "smtp-host-description": "用于发送邮件的SMTP服务器地址。",
- "smtp-port-description": "SMTP服务器端口。",
- "smtp-tls-description": "对SMTP服务器启用TLS支持",
- "smtp-host": "SMTP服务器",
- "smtp-port": "SMTP端口",
- "smtp-username": "用户名",
- "smtp-password": "密码",
- "smtp-tls": "TLS支持",
- "send-from": "发件人",
- "send-smtp-test": "给自己发送一封测试邮件",
- "invitation-code": "邀请码",
- "email-invite-register-subject": "__inviter__ 向您发出邀请",
- "email-invite-register-text": "亲爱的__user__:\n__inviter__ 邀请您加入到看板\n\n请点击下面的链接:\n__url__\n\n您的邀请码是:__icode__\n\n谢谢。",
- "email-smtp-test-subject": "通过SMTP发送测试邮件",
- "email-smtp-test-text": "你已成功发送邮件",
- "error-invitation-code-not-exist": "邀请码不存在",
- "error-notAuthorized": "您无权查看此页面。",
- "outgoing-webhooks": "外部Web挂钩",
- "outgoingWebhooksPopup-title": "外部Web挂钩",
- "boardCardTitlePopup-title": "卡片标题过滤",
- "new-outgoing-webhook": "新建外部Web挂钩",
- "no-name": "(未知)",
- "Node_version": "Node.js版本",
- "OS_Arch": "系统架构",
- "OS_Cpus": "系统 CPU数量",
- "OS_Freemem": "系统可用内存",
- "OS_Loadavg": "系统负载均衡",
- "OS_Platform": "系统平台",
- "OS_Release": "系统发布版本",
- "OS_Totalmem": "系统全部内存",
- "OS_Type": "系统类型",
- "OS_Uptime": "系统运行时间",
- "days": "天",
- "hours": "小时",
- "minutes": "分钟",
- "seconds": "秒",
- "show-field-on-card": "在卡片上显示此字段",
- "automatically-field-on-card": "自动创建所有卡片的字段",
- "showLabel-field-on-card": "在迷你卡片上显示字段标签",
- "yes": "是",
- "no": "否",
- "accounts": "账号",
- "accounts-allowEmailChange": "允许邮箱变更",
- "accounts-allowUserNameChange": "允许变更用户名",
- "createdAt": "创建于",
- "verified": "已验证",
- "active": "活跃",
- "card-received": "已接收",
- "card-received-on": "接收于",
- "card-end": "终止",
- "card-end-on": "终止于",
- "editCardReceivedDatePopup-title": "修改接收日期",
- "editCardEndDatePopup-title": "修改终止日期",
- "setCardColorPopup-title": "设置颜色",
- "setCardActionsColorPopup-title": "选择一种颜色",
- "setSwimlaneColorPopup-title": "选择一种颜色",
- "setListColorPopup-title": "选择一种颜色",
- "assigned-by": "分配人",
- "requested-by": "需求人",
- "board-delete-notice": "删除时永久操作,将会丢失此看板上的所有列表、卡片和动作。",
- "delete-board-confirm-popup": "所有列表、卡片、标签和活动都回被删除,将无法恢复看板内容。不支持撤销。",
- "boardDeletePopup-title": "删除看板?",
- "delete-board": "删除看板",
- "default-subtasks-board": "__board__ 看板的子任务",
- "default": "缺省",
- "queue": "队列",
- "subtask-settings": "子任务设置",
- "boardSubtaskSettingsPopup-title": "看板子任务设置",
- "show-subtasks-field": "卡片包含子任务",
- "deposit-subtasks-board": "将子任务放入以下看板:",
- "deposit-subtasks-list": "将子任务放入以下列表:",
- "show-parent-in-minicard": "显示上一级卡片:",
- "prefix-with-full-path": "完整路径前缀",
- "prefix-with-parent": "上级前缀",
- "subtext-with-full-path": "子标题显示完整路径",
- "subtext-with-parent": "子标题显示上级",
- "change-card-parent": "修改卡片的上级",
- "parent-card": "上级卡片",
- "source-board": "源看板",
- "no-parent": "不显示上级",
- "activity-added-label": "已添加标签 '%s' 到 %s",
- "activity-removed-label": "已将标签 '%s' 从 %s 移除",
- "activity-delete-attach": "已从 %s 删除附件",
- "activity-added-label-card": "已添加标签 '%s'",
- "activity-removed-label-card": "已移除标签 '%s'",
- "activity-delete-attach-card": "已删除附件",
- "activity-set-customfield": "设置自定义字段 '%s' 至 '%s' 于 %s",
- "activity-unset-customfield": "未设置自定义字段 '%s' 于 %s",
- "r-rule": "规则",
- "r-add-trigger": "添加触发器",
- "r-add-action": "添加行动",
- "r-board-rules": "看板规则",
- "r-add-rule": "添加规则",
- "r-view-rule": "查看规则",
- "r-delete-rule": "删除规则",
- "r-new-rule-name": "新建规则标题",
- "r-no-rules": "暂无规则",
- "r-when-a-card": "当一张卡片",
- "r-is": "是",
- "r-is-moved": "已经移动",
- "r-added-to": "添加到",
- "r-removed-from": "已移除",
- "r-the-board": "该看板",
- "r-list": "列表",
- "set-filter": "设置过滤器",
- "r-moved-to": "移至",
- "r-moved-from": "已移动",
- "r-archived": "已移动到归档",
- "r-unarchived": "已从归档中恢复",
- "r-a-card": "一个卡片",
- "r-when-a-label-is": "当一个标签是",
- "r-when-the-label": "当该标签是",
- "r-list-name": "列表名称",
- "r-when-a-member": "当一个成员是",
- "r-when-the-member": "当该成员",
- "r-name": "名称",
- "r-when-a-attach": "当一个附件",
- "r-when-a-checklist": "当一个清单是",
- "r-when-the-checklist": "当该清单",
- "r-completed": "已完成",
- "r-made-incomplete": "置为未完成",
- "r-when-a-item": "当一个清单项是",
- "r-when-the-item": "当该清单项",
- "r-checked": "勾选",
- "r-unchecked": "未勾选",
- "r-move-card-to": "移动卡片到",
- "r-top-of": "的顶部",
- "r-bottom-of": "的尾部",
- "r-its-list": "其列表",
- "r-archive": "归档",
- "r-unarchive": "从归档中恢复",
- "r-card": "卡片",
- "r-add": "添加",
- "r-remove": "移除",
- "r-label": "标签",
- "r-member": "成员",
- "r-remove-all": "从卡片移除所有成员",
- "r-set-color": "设置颜色",
- "r-checklist": "清单",
- "r-check-all": "勾选所有",
- "r-uncheck-all": "取消勾选所有",
- "r-items-check": "清单条目",
- "r-check": "勾选",
- "r-uncheck": "取消勾选",
- "r-item": "条目",
- "r-of-checklist": "清单的",
- "r-send-email": "发送邮件",
- "r-to": "收件人",
- "r-subject": "标题",
- "r-rule-details": "规则详情",
- "r-d-move-to-top-gen": "移动卡片到其列表顶部",
- "r-d-move-to-top-spec": "移动卡片到列表顶部",
- "r-d-move-to-bottom-gen": "移动卡片到其列表尾部",
- "r-d-move-to-bottom-spec": "移动卡片到列表尾部",
- "r-d-send-email": "发送邮件",
- "r-d-send-email-to": "收件人",
- "r-d-send-email-subject": "标题",
- "r-d-send-email-message": "消息",
- "r-d-archive": "将卡片归档",
- "r-d-unarchive": "从归档中恢复卡片",
- "r-d-add-label": "添加标签",
- "r-d-remove-label": "移除标签",
- "r-create-card": "创建新卡片",
- "r-in-list": "在列表中",
- "r-in-swimlane": "在泳道中",
- "r-d-add-member": "添加成员",
- "r-d-remove-member": "移除成员",
- "r-d-remove-all-member": "移除所有成员",
- "r-d-check-all": "勾选所有列表项",
- "r-d-uncheck-all": "取消勾选所有列表项",
- "r-d-check-one": "勾选该项",
- "r-d-uncheck-one": "取消勾选",
- "r-d-check-of-list": "清单的",
- "r-d-add-checklist": "添加待办清单",
- "r-d-remove-checklist": "移动待办清单",
- "r-by": "在",
- "r-add-checklist": "添加待办清单",
- "r-with-items": "与项目",
- "r-items-list": "项目1,项目2,项目3",
- "r-add-swimlane": "添加泳道",
- "r-swimlane-name": "泳道名",
- "r-board-note": "注意:保留一个空字段去匹配所有可能的值。",
- "r-checklist-note": "注意:清单中的项目必须用都好分割。",
- "r-when-a-card-is-moved": "当移动卡片到另一个列表时",
- "r-set": "设置",
- "r-update": "更新",
- "r-datefield": "日期字段",
- "r-df-start-at": "开始",
- "r-df-due-at": "至",
- "r-df-end-at": "结束",
- "r-df-received-at": "已接收",
- "r-to-current-datetime": "到当前日期/时间",
- "r-remove-value-from": "从变量中移动",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "认证方式",
- "authentication-type": "认证类型",
- "custom-product-name": "自定义产品名称",
- "layout": "布局",
- "hide-logo": "隐藏LOGO",
- "add-custom-html-after-body-start": "添加定制的HTML在开始<body>之前",
- "add-custom-html-before-body-end": "添加定制的HTML在结束</body>之后",
- "error-undefined": "出了点问题",
- "error-ldap-login": "尝试登陆时出错",
- "display-authentication-method": "显示认证方式",
- "default-authentication-method": "缺省认证方式",
- "duplicate-board": "复制看板",
- "people-number": "人数是:",
- "swimlaneDeletePopup-title": "是否删除泳道?",
- "swimlane-delete-pop": "所有活动将从活动源中删除,您将无法恢复泳道。此操作无法撤销。",
- "restore-all": "全部恢复",
- "delete-all": "全部删除",
- "loading": "加载中,请稍等。",
- "previous_as": "上次是",
- "act-a-dueAt": "修改到期时间:\n时间:__timeValue__\n位置:__card__\n上一个到期日是 __timeOldValue__",
- "act-a-endAt": "修改结束时间从 (__timeOldValue__) 至 __timeValue__",
- "act-a-startAt": "修改开始时间从 (__timeOldValue__) 至 __timeValue__",
- "act-a-receivedAt": "修改接收时间从 (__timeOldValue__) 至 __timeValue__",
- "a-dueAt": "修改到期时间",
- "a-endAt": "修改结束时间",
- "a-startAt": "修改开始时间",
- "a-receivedAt": "修改接收时间",
- "almostdue": "当前到期时间%s即将到来",
- "pastdue": "当前到期时间%s已过",
- "duenow": "当前到期时间%s为今天",
- "act-withDue": "__card__ 到期提醒[__board__]",
- "act-almostdue": "__card__ 的当前到期提醒(__timeValue__) 正在接近",
- "act-pastdue": "__card__ 的当前到期提醒(__timeValue__) 已经过去了",
- "act-duenow": "__card__ 的当前到期提醒(__timeValue__) 现在到期",
- "act-atUserComment": "您在 [__board__] __card__中被提到",
- "delete-user-confirm-popup": "确实要删除此帐户吗?此操作无法撤销。",
- "accounts-allowUserDelete": "允许用户自行删除其帐户"
-} \ No newline at end of file
+ "accept": "接受",
+ "act-activity-notify": "活动通知",
+ "act-addAttachment": "添加附件 __attachment__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
+ "act-deleteAttachment": "删除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的附件 __attachment__",
+ "act-addSubtask": "添加子任务 __subtask__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
+ "act-addLabel": "添加标签 __label__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
+ "act-addedLabel": "添加标签 __label__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
+ "act-removeLabel": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的标签 __label__",
+ "act-removedLabel": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的标签 __label__",
+ "act-addChecklist": "添加清单 __checklist__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中",
+ "act-addChecklistItem": "添加清单项 __checklistItem__ 到看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__",
+ "act-removeChecklist": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__",
+ "act-removeChecklistItem": "移除看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 清单项 __checklistItem__",
+ "act-checkedItem": "选中看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 的清单项 __checklistItem__",
+ "act-uncheckedItem": "反选看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 的清单项 __checklistItem__",
+ "act-completeChecklist": "完成检查列表__checklist__ 卡片 __card__ 列表 __list__ 泳道 __swimlane__ 看板 __board__",
+ "act-uncompleteChecklist": "看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 中的清单 __checklist__ 未完成",
+ "act-addComment": "对看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 __card__ 发表了评论: __comment__",
+ "act-editComment": "编辑卡片中的评论:看板__board__中的泳道__swimlane__中的列表__list__中的评论__comment__",
+ "act-deleteComment": "删除卡片中的评论:看板__board__中的泳道__swimlane__中的列表__list__中的评论__comment__",
+ "act-createBoard": "创建看板 __board__",
+ "act-createSwimlane": "创建泳道 __swimlane__ 到看板 __board__",
+ "act-createCard": "在看板 __board__ 的泳道 __swimlane__ 的列表 __list__ 中添加卡片 __card__",
+ "act-createCustomField": "已创建看板__board__中的自定义字段__customField__",
+ "act-deleteCustomField": "已删除看板__board__中的自定义字段__customField__",
+ "act-setCustomField": "编辑定制字段__customField__:看板__board__中的泳道__swimlane__中的列表__list__中的卡片__card__中的__customFieldValue__",
+ "act-createList": "添加列表 __list__ 至看板 __board__",
+ "act-addBoardMember": "添加成员 __member__ 到看板 __board__",
+ "act-archivedBoard": "看板 __board__ 已被移入归档",
+ "act-archivedCard": "将看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 中的卡片 移动到归档中",
+ "act-archivedList": "看板 __board__ 中的泳道 __swimlane__ 中的列表 __list__ 已被移入归档",
+ "act-archivedSwimlane": "看板 __board__ 中的泳道 __swimlane__ 已被移入归档",
+ "act-importBoard": "导入看板 __board__",
+ "act-importCard": "已将卡片 __card__ 导入到 __board__ 看板中的 __swimlane__ 泳道中的 __list__ 列表中",
+ "act-importList": "已将列表导入到 __board__ 看板中的 __swimlane__  泳道中的 __list__  列表中",
+ "act-joinMember": "已将成员 __member__  添加到 __board__ 看板中的 __swimlane__ 泳道中的 __list__  列表中的 __card__ 卡片中",
+ "act-moveCard": "移动卡片 __card__ 到看板 __board__ 从列表 __oldList__ 泳道 __oldSwimlane__ 至列表 __list__ 泳道 __swimlane__",
+ "act-moveCardToOtherBoard": "移动卡片 __card__ 从列表 __oldList__ 泳道 __oldSwimlane__ 看板 __oldBoard__ 至列表 __list__ 泳道 __swimlane__ 看板 __board__",
+ "act-removeBoardMember": "从看板 __board__ 移除成员 __member__",
+ "act-restoredCard": "恢复卡片 __card__ 至列表 __list__ 泳道 __swimlane__ 看板 __board__",
+ "act-unjoinMember": "移除成员 __member__ 从卡片 __card__ 列表 __list__ a泳道 __swimlane__ 看板 __board__",
+ "act-withBoardTitle": "看板__board__",
+ "act-withCardTitle": "[看板 __board__] 卡片 __card__",
+ "actions": "操作",
+ "activities": "活动",
+ "activity": "活动",
+ "activity-added": "添加 %s 至 %s",
+ "activity-archived": "%s 已被移入归档",
+ "activity-attached": "添加附件 %s 至 %s",
+ "activity-created": "创建 %s",
+ "activity-customfield-created": "创建了自定义字段 %s",
+ "activity-excluded": "排除 %s 从 %s",
+ "activity-imported": "导入 %s 至 %s 从 %s 中",
+ "activity-imported-board": "已导入 %s 从 %s 中",
+ "activity-joined": "已关联 %s",
+ "activity-moved": "将 %s 从 %s 移动到 %s",
+ "activity-on": "在 %s",
+ "activity-removed": "从 %s 中移除 %s",
+ "activity-sent": "发送 %s 至 %s",
+ "activity-unjoined": "已解除 %s 关联",
+ "activity-subtask-added": "添加子任务到%s",
+ "activity-checked-item": "勾选%s于清单%s 共 %s",
+ "activity-unchecked-item": "未勾选 %s 于清单 %s 共 %s",
+ "activity-checklist-added": "已经将清单添加到 %s",
+ "activity-checklist-removed": "已从%s移除待办清单",
+ "activity-checklist-completed": "完成检查列表__checklist__ 卡片 __card__ 列表 __list__ 泳道 __swimlane__ 看板 __board__",
+ "activity-checklist-uncompleted": "未完成清单 %s 共 %s",
+ "activity-checklist-item-added": "添加清单项至'%s' 于 %s",
+ "activity-checklist-item-removed": "已从 '%s' 于 %s中 移除一个清单项",
+ "add": "添加",
+ "activity-checked-item-card": "勾选 %s 与清单 %s 中",
+ "activity-unchecked-item-card": "取消勾选 %s 于清单 %s中",
+ "activity-checklist-completed-card": "完成检查列表 __checklist__ 卡片 __card__ 列表 __list__ 泳道 __swimlane__ 看板 __board__",
+ "activity-checklist-uncompleted-card": "未完成清单 %s",
+ "add-attachment": "添加附件",
+ "add-board": "添加看板",
+ "add-card": "添加卡片",
+ "add-swimlane": "添加泳道图",
+ "add-subtask": "添加子任务",
+ "add-checklist": "添加待办清单",
+ "add-checklist-item": "扩充清单",
+ "add-cover": "添加封面",
+ "add-label": "添加标签",
+ "add-list": "添加列表",
+ "add-members": "添加成员",
+ "added": "添加",
+ "addMemberPopup-title": "成员",
+ "admin": "管理员",
+ "admin-desc": "可以浏览并编辑卡片,移除成员,并且更改该看板的设置",
+ "admin-announcement": "通知",
+ "admin-announcement-active": "激活系统通知",
+ "admin-announcement-title": "管理员的通知",
+ "all-boards": "全部看板",
+ "and-n-other-card": "和其他 __count__ 个卡片",
+ "and-n-other-card_plural": "和其他 __count__ 个卡片",
+ "apply": "应用",
+ "app-is-offline": "加载中,请稍后。刷新页面将导致数据丢失,如果加载长时间不起作用,请检查服务器是否已经停止工作。",
+ "archive": "归档",
+ "archive-all": "全部归档",
+ "archive-board": "将看板归档",
+ "archive-card": "将卡片归档",
+ "archive-list": "将列表归档",
+ "archive-swimlane": "将泳道归档",
+ "archive-selection": "将选择归档",
+ "archiveBoardPopup-title": "是否归档看板?",
+ "archived-items": "归档",
+ "archived-boards": "归档的看板",
+ "restore-board": "还原看板",
+ "no-archived-boards": "没有归档的看板。",
+ "archives": "归档",
+ "template": "模板",
+ "templates": "模板",
+ "assign-member": "分配成员",
+ "attached": "附加",
+ "attachment": "附件",
+ "attachment-delete-pop": "删除附件的操作不可逆。",
+ "attachmentDeletePopup-title": "删除附件?",
+ "attachments": "附件",
+ "auto-watch": "自动关注新建的看板",
+ "avatar-too-big": "头像过大 (上限 70 KB)",
+ "back": "返回",
+ "board-change-color": "更改颜色",
+ "board-nb-stars": "%s 星标",
+ "board-not-found": "看板不存在",
+ "board-private-info": "该看板将被设为 <strong>私有</strong>.",
+ "board-public-info": "该看板将被设为 <strong>公开</strong>.",
+ "boardChangeColorPopup-title": "修改看板背景",
+ "boardChangeTitlePopup-title": "重命名看板",
+ "boardChangeVisibilityPopup-title": "更改可视级别",
+ "boardChangeWatchPopup-title": "更改关注状态",
+ "boardMenuPopup-title": "看板设置",
+ "boards": "看板",
+ "board-view": "看板视图",
+ "board-view-cal": "日历",
+ "board-view-swimlanes": "泳道图",
+ "board-view-lists": "列表",
+ "bucket-example": "例如 “目标清单”",
+ "cancel": "取消",
+ "card-archived": "归档这个卡片。",
+ "board-archived": "归档这个看板。",
+ "card-comments-title": "该卡片有 %s 条评论",
+ "card-delete-notice": "彻底删除的操作不可恢复,你将会丢失该卡片相关的所有操作记录。",
+ "card-delete-pop": "所有的活动将从活动摘要中被移除且您将无法重新打开该卡片。此操作无法撤销。",
+ "card-delete-suggest-archive": "您可以移动卡片到活动以便从看板中删除并保持活动。",
+ "card-due": "到期",
+ "card-due-on": "期限",
+ "card-spent": "耗时",
+ "card-edit-attachments": "编辑附件",
+ "card-edit-custom-fields": "编辑自定义字段",
+ "card-edit-labels": "编辑标签",
+ "card-edit-members": "编辑成员",
+ "card-labels-title": "更改该卡片上的标签",
+ "card-members-title": "在该卡片中添加或移除看板成员",
+ "card-start": "开始",
+ "card-start-on": "始于",
+ "cardAttachmentsPopup-title": "附件来源",
+ "cardCustomField-datePopup-title": "修改日期",
+ "cardCustomFieldsPopup-title": "编辑自定义字段",
+ "cardDeletePopup-title": "彻底删除卡片?",
+ "cardDetailsActionsPopup-title": "卡片操作",
+ "cardLabelsPopup-title": "标签",
+ "cardMembersPopup-title": "成员",
+ "cardMorePopup-title": "更多",
+ "cardTemplatePopup-title": "新建模板",
+ "cards": "卡片",
+ "cards-count": "卡片",
+ "casSignIn": "用CAS登录",
+ "cardType-card": "卡片",
+ "cardType-linkedCard": "已链接卡片",
+ "cardType-linkedBoard": "已链接看板",
+ "change": "变更",
+ "change-avatar": "更改头像",
+ "change-password": "更改密码",
+ "change-permissions": "更改权限",
+ "change-settings": "更改设置",
+ "changeAvatarPopup-title": "更改头像",
+ "changeLanguagePopup-title": "更改语言",
+ "changePasswordPopup-title": "更改密码",
+ "changePermissionsPopup-title": "更改权限",
+ "changeSettingsPopup-title": "更改设置",
+ "subtasks": "子任务",
+ "checklists": "清单",
+ "click-to-star": "点此来标记该看板",
+ "click-to-unstar": "点此来去除该看板的标记",
+ "clipboard": "剪贴板或者拖放文件",
+ "close": "关闭",
+ "close-board": "关闭看板",
+ "close-board-pop": "您可以通过主页头部的“归档”按钮,来恢复看板。",
+ "color-black": "黑色",
+ "color-blue": "蓝色",
+ "color-crimson": "深红",
+ "color-darkgreen": "墨绿",
+ "color-gold": "金",
+ "color-gray": "灰",
+ "color-green": "绿色",
+ "color-indigo": "靛蓝",
+ "color-lime": "绿黄",
+ "color-magenta": "洋红",
+ "color-mistyrose": "玫瑰红",
+ "color-navy": "藏青",
+ "color-orange": "橙色",
+ "color-paleturquoise": "宝石绿",
+ "color-peachpuff": "桃红",
+ "color-pink": "粉红",
+ "color-plum": "紫红",
+ "color-purple": "紫色",
+ "color-red": "红色",
+ "color-saddlebrown": "棕褐",
+ "color-silver": "银",
+ "color-sky": "天蓝",
+ "color-slateblue": "石板蓝",
+ "color-white": "白",
+ "color-yellow": "黄色",
+ "unset-color": "复原",
+ "comment": "评论",
+ "comment-placeholder": "添加评论",
+ "comment-only": "仅能评论",
+ "comment-only-desc": "只能在卡片上评论。",
+ "no-comments": "暂无评论",
+ "no-comments-desc": "无法查看评论和活动。",
+ "computer": "从本机上传",
+ "confirm-subtask-delete-dialog": "确定要删除子任务吗?",
+ "confirm-checklist-delete-dialog": "确定要删除清单吗?",
+ "copy-card-link-to-clipboard": "复制卡片链接到剪贴板",
+ "linkCardPopup-title": "链接卡片",
+ "searchElementPopup-title": "搜索",
+ "copyCardPopup-title": "复制卡片",
+ "copyChecklistToManyCardsPopup-title": "复制清单模板至多个卡片",
+ "copyChecklistToManyCardsPopup-instructions": "以JSON格式表示目标卡片的标题和描述",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"第一个卡片的标题\", \"description\":\"第一个卡片的描述\"}, {\"title\":\"第二个卡片的标题\",\"description\":\"第二个卡片的描述\"},{\"title\":\"最后一个卡片的标题\",\"description\":\"最后一个卡片的描述\"} ]",
+ "create": "创建",
+ "createBoardPopup-title": "创建看板",
+ "chooseBoardSourcePopup-title": "导入看板",
+ "createLabelPopup-title": "创建标签",
+ "createCustomField": "创建字段",
+ "createCustomFieldPopup-title": "创建字段",
+ "current": "当前",
+ "custom-field-delete-pop": "没有撤销,此动作将从所有卡片中移除自定义字段并销毁历史。",
+ "custom-field-checkbox": "选择框",
+ "custom-field-date": "日期",
+ "custom-field-dropdown": "下拉列表",
+ "custom-field-dropdown-none": "(无)",
+ "custom-field-dropdown-options": "列表选项",
+ "custom-field-dropdown-options-placeholder": "回车可以加入更多选项",
+ "custom-field-dropdown-unknown": "(未知)",
+ "custom-field-number": "数字",
+ "custom-field-text": "文本",
+ "custom-fields": "自定义字段",
+ "date": "日期",
+ "decline": "拒绝",
+ "default-avatar": "默认头像",
+ "delete": "删除",
+ "deleteCustomFieldPopup-title": "删除自定义字段?",
+ "deleteLabelPopup-title": "删除标签?",
+ "description": "描述",
+ "disambiguateMultiLabelPopup-title": "消除标签歧义",
+ "disambiguateMultiMemberPopup-title": "消除成员歧义",
+ "discard": "放弃",
+ "done": "完成",
+ "download": "下载",
+ "edit": "编辑",
+ "edit-avatar": "更改头像",
+ "edit-profile": "编辑资料",
+ "edit-wip-limit": "编辑最大任务数",
+ "soft-wip-limit": "最大任务数软限制",
+ "editCardStartDatePopup-title": "修改起始日期",
+ "editCardDueDatePopup-title": "修改截止日期",
+ "editCustomFieldPopup-title": "编辑字段",
+ "editCardSpentTimePopup-title": "修改耗时",
+ "editLabelPopup-title": "更改标签",
+ "editNotificationPopup-title": "编辑通知",
+ "editProfilePopup-title": "编辑资料",
+ "email": "邮箱",
+ "email-enrollAccount-subject": "已为您在 __siteName__ 创建帐号",
+ "email-enrollAccount-text": "尊敬的 __user__,\n\n点击下面的链接,即刻开始使用这项服务。\n\n__url__\n\n谢谢。",
+ "email-fail": "邮件发送失败",
+ "email-fail-text": "尝试发送邮件时出错",
+ "email-invalid": "邮件地址错误",
+ "email-invite": "发送邮件邀请",
+ "email-invite-subject": "__inviter__ 向您发出邀请",
+ "email-invite-text": "尊敬的 __user__,\n\n__inviter__ 邀请您加入看板 \"__board__\" 参与协作。\n\n请点击下面的链接访问看板:\n\n__url__\n\n谢谢。",
+ "email-resetPassword-subject": "重置您的 __siteName__ 密码",
+ "email-resetPassword-text": "尊敬的 __user__,\n\n点击下面的链接,重置您的密码:\n\n__url__\n\n谢谢。",
+ "email-sent": "邮件已发送",
+ "email-verifyEmail-subject": "在 __siteName__ 验证您的邮件地址",
+ "email-verifyEmail-text": "尊敬的 __user__,\n\n点击下面的链接,验证您的邮件地址:\n\n__url__\n\n谢谢。",
+ "enable-wip-limit": "启用最大任务数限制",
+ "error-board-doesNotExist": "该看板不存在",
+ "error-board-notAdmin": "需要成为管理员才能执行此操作",
+ "error-board-notAMember": "需要成为看板成员才能执行此操作",
+ "error-json-malformed": "文本不是合法的 JSON",
+ "error-json-schema": "JSON 数据没有用正确的格式包含合适的信息",
+ "error-list-doesNotExist": "不存在此列表",
+ "error-user-doesNotExist": "该用户不存在",
+ "error-user-notAllowSelf": "无法邀请自己",
+ "error-user-notCreated": "该用户未能成功创建",
+ "error-username-taken": "此用户名已存在",
+ "error-email-taken": "此EMail已存在",
+ "export-board": "导出看板",
+ "filter": "过滤",
+ "filter-cards": "过滤卡片",
+ "filter-clear": "清空过滤器",
+ "filter-no-label": "无标签",
+ "filter-no-member": "无成员",
+ "filter-no-custom-fields": "无自定义字段",
+ "filter-on": "过滤器启用",
+ "filter-on-desc": "你正在过滤该看板上的卡片,点此编辑过滤。",
+ "filter-to-selection": "要选择的过滤器",
+ "advanced-filter-label": "高级过滤器",
+ "advanced-filter-description": "高级过滤器可以使用包含如下操作符的字符串进行过滤:== != <= >= && || ( ) 。操作符之间用空格隔开。输入字段名和数值就可以过滤所有自定义字段。例如:Field1 == Value1。注意如果字段名或数值包含空格,需要用单引号。例如: 'Field 1' == 'Value 1'。要跳过单个控制字符(' \\/),请使用 \\ 转义字符。例如: Field1 = I\\'m。支持组合使用多个条件,例如: F1 == V1 || F1 == V2。通常以从左到右的顺序进行判断。可以通过括号修改顺序,例如:F1 == V1 && ( F2 == V2 || F2 == V3 )。也支持使用正则表达式搜索文本字段。",
+ "fullname": "全称",
+ "header-logo-title": "返回您的看板页",
+ "hide-system-messages": "隐藏系统消息",
+ "headerBarCreateBoardPopup-title": "创建看板",
+ "home": "首页",
+ "import": "导入",
+ "link": "链接",
+ "import-board": "导入看板",
+ "import-board-c": "导入看板",
+ "import-board-title-trello": "从Trello导入看板",
+ "import-board-title-wekan": "从以前的导出数据导入看板",
+ "import-sandstorm-backup-warning": "在检查此颗粒是否关闭和再次打开之前,不要删除从原始导出的看板或Trello导入的数据,否则看板会发生未知的错误,这将意味着数据丢失。",
+ "import-sandstorm-warning": "导入的面板将删除所有已存在于面板上的数据并替换他们为导入的面板。",
+ "from-trello": "自 Trello",
+ "from-wekan": "自以前的导出",
+ "import-board-instruction-trello": "在你的Trello看板中,点击“菜单”,然后选择“更多”,“打印与导出”,“导出为 JSON” 并拷贝结果文本",
+ "import-board-instruction-wekan": "在您的看板,点击“菜单”,然后“导出看板”,复制下载文件中的文本。",
+ "import-board-instruction-about-errors": "如果在导入看板时出现错误,导入工作可能仍然在进行中,并且看板已经出现在全部看板页。",
+ "import-json-placeholder": "粘贴您有效的 JSON 数据至此",
+ "import-map-members": "映射成员",
+ "import-members-map": "您导入的看板有一些成员,请映射这些成员到您导入的用户。",
+ "import-show-user-mapping": "核对成员映射",
+ "import-user-select": "为这个成员选择您已经存在的用户",
+ "importMapMembersAddPopup-title": "选择成员",
+ "info": "版本",
+ "initials": "缩写",
+ "invalid-date": "无效日期",
+ "invalid-time": "非法时间",
+ "invalid-user": "非法用户",
+ "joined": "关联",
+ "just-invited": "您刚刚被邀请加入此看板",
+ "keyboard-shortcuts": "键盘快捷键",
+ "label-create": "创建标签",
+ "label-default": "%s 标签 (默认)",
+ "label-delete-pop": "此操作不可逆,这将会删除该标签并清除它的历史记录。",
+ "labels": "标签",
+ "language": "语言",
+ "last-admin-desc": "你不能更改角色,因为至少需要一名管理员。",
+ "leave-board": "离开看板",
+ "leave-board-pop": "确认要离开 __boardTitle__ 吗?此看板的所有卡片都会将您移除。",
+ "leaveBoardPopup-title": "离开看板?",
+ "link-card": "关联至该卡片",
+ "list-archive-cards": "将此列表中的所有卡片归档",
+ "list-archive-cards-pop": "将移动看板中列表的所有卡片,查看或回复归档中的卡片,点击“菜单”->“归档”",
+ "list-move-cards": "移动列表中的所有卡片",
+ "list-select-cards": "选择列表中的所有卡片",
+ "set-color-list": "设置颜色",
+ "listActionPopup-title": "列表操作",
+ "swimlaneActionPopup-title": "泳道图操作",
+ "swimlaneAddPopup-title": "在下面添加一个泳道",
+ "listImportCardPopup-title": "导入 Trello 卡片",
+ "listMorePopup-title": "更多",
+ "link-list": "关联到这个列表",
+ "list-delete-pop": "所有活动将被从活动动态中删除并且你无法恢复他们,此操作无法撤销。",
+ "list-delete-suggest-archive": "您可以移动列表到归档以将其从看板中移除并保留活动。",
+ "lists": "列表",
+ "swimlanes": "泳道图",
+ "log-out": "登出",
+ "log-in": "登录",
+ "loginPopup-title": "登录",
+ "memberMenuPopup-title": "成员设置",
+ "members": "成员",
+ "menu": "菜单",
+ "move-selection": "移动选择",
+ "moveCardPopup-title": "移动卡片",
+ "moveCardToBottom-title": "移动至底端",
+ "moveCardToTop-title": "移动至顶端",
+ "moveSelectionPopup-title": "移动选择",
+ "multi-selection": "多选",
+ "multi-selection-on": "多选启用",
+ "muted": "静默",
+ "muted-info": "你将不会收到此看板的任何变更通知",
+ "my-boards": "我的看板",
+ "name": "名称",
+ "no-archived-cards": "存档中没有卡片。",
+ "no-archived-lists": "存档中没有清单。",
+ "no-archived-swimlanes": "存档中没有泳道。",
+ "no-results": "无结果",
+ "normal": "普通",
+ "normal-desc": "可以创建以及编辑卡片,无法更改设置。",
+ "not-accepted-yet": "邀请尚未接受",
+ "notify-participate": "接收以创建者或成员身份参与的卡片的更新",
+ "notify-watch": "接收所有关注的面板、列表、及卡片的更新",
+ "optional": "可选",
+ "or": "或",
+ "page-maybe-private": "本页面被设为私有. 您必须 <a href='%s'>登录</a>以浏览其中内容。",
+ "page-not-found": "页面不存在。",
+ "password": "密码",
+ "paste-or-dragdrop": "从剪贴板粘贴,或者拖放文件到它上面 (仅限于图片)",
+ "participating": "参与",
+ "preview": "预览",
+ "previewAttachedImagePopup-title": "预览",
+ "previewClipboardImagePopup-title": "预览",
+ "private": "私有",
+ "private-desc": "该看板将被设为私有。只有该看板成员才可以进行查看和编辑。",
+ "profile": "资料",
+ "public": "公开",
+ "public-desc": "该看板将被公开。任何人均可通过链接查看,并且将对Google和其他搜索引擎开放。只有添加至该看板的成员才可进行编辑。",
+ "quick-access-description": "星标看板在导航条中添加快捷方式",
+ "remove-cover": "移除封面",
+ "remove-from-board": "从看板中删除",
+ "remove-label": "移除标签",
+ "listDeletePopup-title": "删除列表",
+ "remove-member": "移除成员",
+ "remove-member-from-card": "从该卡片中移除",
+ "remove-member-pop": "确定从 __boardTitle__ 中移除 __name__ (__username__) 吗? 该成员将被从该看板的所有卡片中移除,同时他会收到一条提醒。",
+ "removeMemberPopup-title": "删除成员?",
+ "rename": "重命名",
+ "rename-board": "重命名看板",
+ "restore": "还原",
+ "save": "保存",
+ "search": "搜索",
+ "rules": "规则",
+ "search-cards": "搜索当前看板上的卡片标题和描述",
+ "search-example": "搜索",
+ "select-color": "选择颜色",
+ "set-wip-limit-value": "设置此列表中的最大任务数",
+ "setWipLimitPopup-title": "设置最大任务数",
+ "shortcut-assign-self": "分配当前卡片给自己",
+ "shortcut-autocomplete-emoji": "表情符号自动补全",
+ "shortcut-autocomplete-members": "自动补全成员",
+ "shortcut-clear-filters": "清空全部过滤器",
+ "shortcut-close-dialog": "关闭对话框",
+ "shortcut-filter-my-cards": "过滤我的卡片",
+ "shortcut-show-shortcuts": "显示此快捷键列表",
+ "shortcut-toggle-filterbar": "切换过滤器边栏",
+ "shortcut-toggle-sidebar": "切换面板边栏",
+ "show-cards-minimum-count": "当列表中的卡片多于此阈值时将显示数量",
+ "sidebar-open": "打开侧栏",
+ "sidebar-close": "打开侧栏",
+ "signupPopup-title": "创建账户",
+ "star-board-title": "点此来标记该看板,它将会出现在您的看板列表顶部。",
+ "starred-boards": "已标记看板",
+ "starred-boards-description": "已标记看板将会出现在您的看板列表顶部。",
+ "subscribe": "订阅",
+ "team": "团队",
+ "this-board": "该看板",
+ "this-card": "该卡片",
+ "spent-time-hours": "耗时 (小时)",
+ "overtime-hours": "超时 (小时)",
+ "overtime": "超时",
+ "has-overtime-cards": "有超时卡片",
+ "has-spenttime-cards": "耗时卡",
+ "time": "时间",
+ "title": "标题",
+ "tracking": "跟踪",
+ "tracking-info": "当任何包含您(作为创建者或成员)的卡片发生变更时,您将得到通知。",
+ "type": "类型",
+ "unassign-member": "取消分配成员",
+ "unsaved-description": "存在未保存的描述",
+ "unwatch": "取消关注",
+ "upload": "上传",
+ "upload-avatar": "上传头像",
+ "uploaded-avatar": "头像已经上传",
+ "username": "用户名",
+ "view-it": "查看",
+ "warn-list-archived": "警告:此卡片在列表归档中",
+ "watch": "关注",
+ "watching": "关注",
+ "watching-info": "当此看板发生变更时会通知你",
+ "welcome-board": "“欢迎”看板",
+ "welcome-swimlane": "里程碑 1",
+ "welcome-list1": "基本",
+ "welcome-list2": "高阶",
+ "card-templates-swimlane": "卡片模板",
+ "list-templates-swimlane": "列表模板",
+ "board-templates-swimlane": "看板模板",
+ "what-to-do": "要做什么?",
+ "wipLimitErrorPopup-title": "无效的最大任务数",
+ "wipLimitErrorPopup-dialog-pt1": "此列表中的任务数量已经超过了设置的最大任务数。",
+ "wipLimitErrorPopup-dialog-pt2": "请将一些任务移出此列表,或者设置一个更大的最大任务数。",
+ "admin-panel": "管理面板",
+ "settings": "设置",
+ "people": "人员",
+ "registration": "注册",
+ "disable-self-registration": "禁止自助注册",
+ "invite": "邀请",
+ "invite-people": "邀请人员",
+ "to-boards": "邀请到看板 (可多选)",
+ "email-addresses": "电子邮箱地址",
+ "smtp-host-description": "用于发送邮件的SMTP服务器地址。",
+ "smtp-port-description": "SMTP服务器端口。",
+ "smtp-tls-description": "对SMTP服务器启用TLS支持",
+ "smtp-host": "SMTP服务器",
+ "smtp-port": "SMTP端口",
+ "smtp-username": "用户名",
+ "smtp-password": "密码",
+ "smtp-tls": "TLS支持",
+ "send-from": "发件人",
+ "send-smtp-test": "给自己发送一封测试邮件",
+ "invitation-code": "邀请码",
+ "email-invite-register-subject": "__inviter__ 向您发出邀请",
+ "email-invite-register-text": "亲爱的__user__:\n__inviter__ 邀请您加入到看板\n\n请点击下面的链接:\n__url__\n\n您的邀请码是:__icode__\n\n谢谢。",
+ "email-smtp-test-subject": "通过SMTP发送测试邮件",
+ "email-smtp-test-text": "你已成功发送邮件",
+ "error-invitation-code-not-exist": "邀请码不存在",
+ "error-notAuthorized": "您无权查看此页面。",
+ "outgoing-webhooks": "外部Web挂钩",
+ "outgoingWebhooksPopup-title": "外部Web挂钩",
+ "boardCardTitlePopup-title": "卡片标题过滤",
+ "new-outgoing-webhook": "新建外部Web挂钩",
+ "no-name": "(未知)",
+ "Node_version": "Node.js版本",
+ "OS_Arch": "系统架构",
+ "OS_Cpus": "系统 CPU数量",
+ "OS_Freemem": "系统可用内存",
+ "OS_Loadavg": "系统负载均衡",
+ "OS_Platform": "系统平台",
+ "OS_Release": "系统发布版本",
+ "OS_Totalmem": "系统全部内存",
+ "OS_Type": "系统类型",
+ "OS_Uptime": "系统运行时间",
+ "days": "天",
+ "hours": "小时",
+ "minutes": "分钟",
+ "seconds": "秒",
+ "show-field-on-card": "在卡片上显示此字段",
+ "automatically-field-on-card": "自动创建所有卡片的字段",
+ "showLabel-field-on-card": "在迷你卡片上显示字段标签",
+ "yes": "是",
+ "no": "否",
+ "accounts": "账号",
+ "accounts-allowEmailChange": "允许邮箱变更",
+ "accounts-allowUserNameChange": "允许变更用户名",
+ "createdAt": "创建于",
+ "verified": "已验证",
+ "active": "活跃",
+ "card-received": "已接收",
+ "card-received-on": "接收于",
+ "card-end": "终止",
+ "card-end-on": "终止于",
+ "editCardReceivedDatePopup-title": "修改接收日期",
+ "editCardEndDatePopup-title": "修改终止日期",
+ "setCardColorPopup-title": "设置颜色",
+ "setCardActionsColorPopup-title": "选择一种颜色",
+ "setSwimlaneColorPopup-title": "选择一种颜色",
+ "setListColorPopup-title": "选择一种颜色",
+ "assigned-by": "分配人",
+ "requested-by": "需求人",
+ "board-delete-notice": "删除时永久操作,将会丢失此看板上的所有列表、卡片和动作。",
+ "delete-board-confirm-popup": "所有列表、卡片、标签和活动都回被删除,将无法恢复看板内容。不支持撤销。",
+ "boardDeletePopup-title": "删除看板?",
+ "delete-board": "删除看板",
+ "default-subtasks-board": "__board__ 看板的子任务",
+ "default": "缺省",
+ "queue": "队列",
+ "subtask-settings": "子任务设置",
+ "boardSubtaskSettingsPopup-title": "看板子任务设置",
+ "show-subtasks-field": "卡片包含子任务",
+ "deposit-subtasks-board": "将子任务放入以下看板:",
+ "deposit-subtasks-list": "将子任务放入以下列表:",
+ "show-parent-in-minicard": "显示上一级卡片:",
+ "prefix-with-full-path": "完整路径前缀",
+ "prefix-with-parent": "上级前缀",
+ "subtext-with-full-path": "子标题显示完整路径",
+ "subtext-with-parent": "子标题显示上级",
+ "change-card-parent": "修改卡片的上级",
+ "parent-card": "上级卡片",
+ "source-board": "源看板",
+ "no-parent": "不显示上级",
+ "activity-added-label": "已添加标签 '%s' 到 %s",
+ "activity-removed-label": "已将标签 '%s' 从 %s 移除",
+ "activity-delete-attach": "已从 %s 删除附件",
+ "activity-added-label-card": "已添加标签 '%s'",
+ "activity-removed-label-card": "已移除标签 '%s'",
+ "activity-delete-attach-card": "已删除附件",
+ "activity-set-customfield": "设置自定义字段 '%s' 至 '%s' 于 %s",
+ "activity-unset-customfield": "未设置自定义字段 '%s' 于 %s",
+ "r-rule": "规则",
+ "r-add-trigger": "添加触发器",
+ "r-add-action": "添加行动",
+ "r-board-rules": "看板规则",
+ "r-add-rule": "添加规则",
+ "r-view-rule": "查看规则",
+ "r-delete-rule": "删除规则",
+ "r-new-rule-name": "新建规则标题",
+ "r-no-rules": "暂无规则",
+ "r-when-a-card": "当一张卡片",
+ "r-is": "是",
+ "r-is-moved": "已经移动",
+ "r-added-to": "添加到",
+ "r-removed-from": "已移除",
+ "r-the-board": "该看板",
+ "r-list": "列表",
+ "set-filter": "设置过滤器",
+ "r-moved-to": "移至",
+ "r-moved-from": "已移动",
+ "r-archived": "已移动到归档",
+ "r-unarchived": "已从归档中恢复",
+ "r-a-card": "一个卡片",
+ "r-when-a-label-is": "当一个标签是",
+ "r-when-the-label": "当该标签是",
+ "r-list-name": "列表名称",
+ "r-when-a-member": "当一个成员是",
+ "r-when-the-member": "当该成员",
+ "r-name": "名称",
+ "r-when-a-attach": "当一个附件",
+ "r-when-a-checklist": "当一个清单是",
+ "r-when-the-checklist": "当该清单",
+ "r-completed": "已完成",
+ "r-made-incomplete": "置为未完成",
+ "r-when-a-item": "当一个清单项是",
+ "r-when-the-item": "当该清单项",
+ "r-checked": "勾选",
+ "r-unchecked": "未勾选",
+ "r-move-card-to": "移动卡片到",
+ "r-top-of": "的顶部",
+ "r-bottom-of": "的尾部",
+ "r-its-list": "其列表",
+ "r-archive": "归档",
+ "r-unarchive": "从归档中恢复",
+ "r-card": "卡片",
+ "r-add": "添加",
+ "r-remove": "移除",
+ "r-label": "标签",
+ "r-member": "成员",
+ "r-remove-all": "从卡片移除所有成员",
+ "r-set-color": "设置颜色",
+ "r-checklist": "清单",
+ "r-check-all": "勾选所有",
+ "r-uncheck-all": "取消勾选所有",
+ "r-items-check": "清单条目",
+ "r-check": "勾选",
+ "r-uncheck": "取消勾选",
+ "r-item": "条目",
+ "r-of-checklist": "清单的",
+ "r-send-email": "发送邮件",
+ "r-to": "收件人",
+ "r-subject": "标题",
+ "r-rule-details": "规则详情",
+ "r-d-move-to-top-gen": "移动卡片到其列表顶部",
+ "r-d-move-to-top-spec": "移动卡片到列表顶部",
+ "r-d-move-to-bottom-gen": "移动卡片到其列表尾部",
+ "r-d-move-to-bottom-spec": "移动卡片到列表尾部",
+ "r-d-send-email": "发送邮件",
+ "r-d-send-email-to": "收件人",
+ "r-d-send-email-subject": "标题",
+ "r-d-send-email-message": "消息",
+ "r-d-archive": "将卡片归档",
+ "r-d-unarchive": "从归档中恢复卡片",
+ "r-d-add-label": "添加标签",
+ "r-d-remove-label": "移除标签",
+ "r-create-card": "创建新卡片",
+ "r-in-list": "在列表中",
+ "r-in-swimlane": "在泳道中",
+ "r-d-add-member": "添加成员",
+ "r-d-remove-member": "移除成员",
+ "r-d-remove-all-member": "移除所有成员",
+ "r-d-check-all": "勾选所有列表项",
+ "r-d-uncheck-all": "取消勾选所有列表项",
+ "r-d-check-one": "勾选该项",
+ "r-d-uncheck-one": "取消勾选",
+ "r-d-check-of-list": "清单的",
+ "r-d-add-checklist": "添加待办清单",
+ "r-d-remove-checklist": "移动待办清单",
+ "r-by": "在",
+ "r-add-checklist": "添加待办清单",
+ "r-with-items": "与项目",
+ "r-items-list": "项目1,项目2,项目3",
+ "r-add-swimlane": "添加泳道",
+ "r-swimlane-name": "泳道名",
+ "r-board-note": "注意:保留一个空字段去匹配所有可能的值。",
+ "r-checklist-note": "注意:清单中的项目必须用都好分割。",
+ "r-when-a-card-is-moved": "当移动卡片到另一个列表时",
+ "r-set": "设置",
+ "r-update": "更新",
+ "r-datefield": "日期字段",
+ "r-df-start-at": "开始",
+ "r-df-due-at": "至",
+ "r-df-end-at": "结束",
+ "r-df-received-at": "已接收",
+ "r-to-current-datetime": "到当前日期/时间",
+ "r-remove-value-from": "从变量中移动",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "认证方式",
+ "authentication-type": "认证类型",
+ "custom-product-name": "自定义产品名称",
+ "layout": "布局",
+ "hide-logo": "隐藏LOGO",
+ "add-custom-html-after-body-start": "添加定制的HTML在开始<body>之前",
+ "add-custom-html-before-body-end": "添加定制的HTML在结束</body>之后",
+ "error-undefined": "出了点问题",
+ "error-ldap-login": "尝试登陆时出错",
+ "display-authentication-method": "显示认证方式",
+ "default-authentication-method": "缺省认证方式",
+ "duplicate-board": "复制看板",
+ "people-number": "人数是:",
+ "swimlaneDeletePopup-title": "是否删除泳道?",
+ "swimlane-delete-pop": "所有活动将从活动源中删除,您将无法恢复泳道。此操作无法撤销。",
+ "restore-all": "全部恢复",
+ "delete-all": "全部删除",
+ "loading": "加载中,请稍等。",
+ "previous_as": "上次是",
+ "act-a-dueAt": "修改到期时间:\n时间:__timeValue__\n位置:__card__\n上一个到期日是 __timeOldValue__",
+ "act-a-endAt": "修改结束时间从 (__timeOldValue__) 至 __timeValue__",
+ "act-a-startAt": "修改开始时间从 (__timeOldValue__) 至 __timeValue__",
+ "act-a-receivedAt": "修改接收时间从 (__timeOldValue__) 至 __timeValue__",
+ "a-dueAt": "修改到期时间",
+ "a-endAt": "修改结束时间",
+ "a-startAt": "修改开始时间",
+ "a-receivedAt": "修改接收时间",
+ "almostdue": "当前到期时间%s即将到来",
+ "pastdue": "当前到期时间%s已过",
+ "duenow": "当前到期时间%s为今天",
+ "act-withDue": "__card__ 到期提醒[__board__]",
+ "act-almostdue": "__card__ 的当前到期提醒(__timeValue__) 正在接近",
+ "act-pastdue": "__card__ 的当前到期提醒(__timeValue__) 已经过去了",
+ "act-duenow": "__card__ 的当前到期提醒(__timeValue__) 现在到期",
+ "act-atUserComment": "您在 [__board__] __card__中被提到",
+ "delete-user-confirm-popup": "确实要删除此帐户吗?此操作无法撤销。",
+ "accounts-allowUserDelete": "允许用户自行删除其帐户",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/zh-HK.i18n.json b/i18n/zh-HK.i18n.json
index 0d628e98..6f967634 100644
--- a/i18n/zh-HK.i18n.json
+++ b/i18n/zh-HK.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "Accept",
- "act-activity-notify": "Activity Notification",
- "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "created board __board__",
- "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "created custom field __customField__ at board __board__",
- "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "added list __list__ to board __board__",
- "act-addBoardMember": "added member __member__ to board __board__",
- "act-archivedBoard": "Board __board__ moved to Archive",
- "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
- "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
- "act-importBoard": "imported board __board__",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "removed member __member__ from board __board__",
- "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "Actions",
- "activities": "Activities",
- "activity": "Activity",
- "activity-added": "added %s to %s",
- "activity-archived": "%s moved to Archive",
- "activity-attached": "attached %s to %s",
- "activity-created": "created %s",
- "activity-customfield-created": "created custom field %s",
- "activity-excluded": "excluded %s from %s",
- "activity-imported": "imported %s into %s from %s",
- "activity-imported-board": "imported %s from %s",
- "activity-joined": "joined %s",
- "activity-moved": "moved %s from %s to %s",
- "activity-on": "on %s",
- "activity-removed": "removed %s from %s",
- "activity-sent": "sent %s to %s",
- "activity-unjoined": "unjoined %s",
- "activity-subtask-added": "added subtask to %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "added checklist to %s",
- "activity-checklist-removed": "removed a checklist from %s",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "added checklist item to '%s' in %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "Add",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "Add Attachment",
- "add-board": "Add Board",
- "add-card": "Add Card",
- "add-swimlane": "Add Swimlane",
- "add-subtask": "Add Subtask",
- "add-checklist": "Add Checklist",
- "add-checklist-item": "Add an item to checklist",
- "add-cover": "Add Cover",
- "add-label": "Add Label",
- "add-list": "Add List",
- "add-members": "Add Members",
- "added": "Added",
- "addMemberPopup-title": "Members",
- "admin": "Admin",
- "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
- "admin-announcement": "Announcement",
- "admin-announcement-active": "Active System-Wide Announcement",
- "admin-announcement-title": "Announcement from Administrator",
- "all-boards": "All boards",
- "and-n-other-card": "And __count__ other card",
- "and-n-other-card_plural": "And __count__ other cards",
- "apply": "Apply",
- "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
- "archive": "Move to Archive",
- "archive-all": "Move All to Archive",
- "archive-board": "Move Board to Archive",
- "archive-card": "Move Card to Archive",
- "archive-list": "Move List to Archive",
- "archive-swimlane": "Move Swimlane to Archive",
- "archive-selection": "Move selection to Archive",
- "archiveBoardPopup-title": "Move Board to Archive?",
- "archived-items": "Archive",
- "archived-boards": "Boards in Archive",
- "restore-board": "Restore Board",
- "no-archived-boards": "No Boards in Archive.",
- "archives": "Archive",
- "template": "Template",
- "templates": "Templates",
- "assign-member": "Assign member",
- "attached": "attached",
- "attachment": "Attachment",
- "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
- "attachmentDeletePopup-title": "Delete Attachment?",
- "attachments": "Attachments",
- "auto-watch": "Automatically watch boards when they are created",
- "avatar-too-big": "The avatar is too large (70KB max)",
- "back": "Back",
- "board-change-color": "Change color",
- "board-nb-stars": "%s stars",
- "board-not-found": "Board not found",
- "board-private-info": "This board will be <strong>private</strong>.",
- "board-public-info": "This board will be <strong>public</strong>.",
- "boardChangeColorPopup-title": "Change Board Background",
- "boardChangeTitlePopup-title": "Rename Board",
- "boardChangeVisibilityPopup-title": "Change Visibility",
- "boardChangeWatchPopup-title": "Change Watch",
- "boardMenuPopup-title": "Board Settings",
- "boards": "Boards",
- "board-view": "Board View",
- "board-view-cal": "Calendar",
- "board-view-swimlanes": "Swimlanes",
- "board-view-lists": "Lists",
- "bucket-example": "Like “Bucket List” for example",
- "cancel": "Cancel",
- "card-archived": "This card is moved to Archive.",
- "board-archived": "This board is moved to Archive.",
- "card-comments-title": "This card has %s comment.",
- "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
- "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
- "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
- "card-due": "Due",
- "card-due-on": "Due on",
- "card-spent": "Spent Time",
- "card-edit-attachments": "Edit attachments",
- "card-edit-custom-fields": "Edit custom fields",
- "card-edit-labels": "Edit labels",
- "card-edit-members": "Edit members",
- "card-labels-title": "Change the labels for the card.",
- "card-members-title": "Add or remove members of the board from the card.",
- "card-start": "Start",
- "card-start-on": "Starts on",
- "cardAttachmentsPopup-title": "Attach From",
- "cardCustomField-datePopup-title": "Change date",
- "cardCustomFieldsPopup-title": "Edit custom fields",
- "cardDeletePopup-title": "Delete Card?",
- "cardDetailsActionsPopup-title": "Card Actions",
- "cardLabelsPopup-title": "Labels",
- "cardMembersPopup-title": "Members",
- "cardMorePopup-title": "More",
- "cardTemplatePopup-title": "Create template",
- "cards": "Cards",
- "cards-count": "Cards",
- "casSignIn": "Sign In with CAS",
- "cardType-card": "Card",
- "cardType-linkedCard": "Linked Card",
- "cardType-linkedBoard": "Linked Board",
- "change": "Change",
- "change-avatar": "Change Avatar",
- "change-password": "Change Password",
- "change-permissions": "Change permissions",
- "change-settings": "Change Settings",
- "changeAvatarPopup-title": "Change Avatar",
- "changeLanguagePopup-title": "Change Language",
- "changePasswordPopup-title": "Change Password",
- "changePermissionsPopup-title": "Change Permissions",
- "changeSettingsPopup-title": "Change Settings",
- "subtasks": "Subtasks",
- "checklists": "Checklists",
- "click-to-star": "Click to star this board.",
- "click-to-unstar": "Click to unstar this board.",
- "clipboard": "Clipboard or drag & drop",
- "close": "Close",
- "close-board": "Close Board",
- "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
- "color-black": "black",
- "color-blue": "blue",
- "color-crimson": "crimson",
- "color-darkgreen": "darkgreen",
- "color-gold": "gold",
- "color-gray": "gray",
- "color-green": "green",
- "color-indigo": "indigo",
- "color-lime": "lime",
- "color-magenta": "magenta",
- "color-mistyrose": "mistyrose",
- "color-navy": "navy",
- "color-orange": "orange",
- "color-paleturquoise": "paleturquoise",
- "color-peachpuff": "peachpuff",
- "color-pink": "pink",
- "color-plum": "plum",
- "color-purple": "purple",
- "color-red": "red",
- "color-saddlebrown": "saddlebrown",
- "color-silver": "silver",
- "color-sky": "sky",
- "color-slateblue": "slateblue",
- "color-white": "white",
- "color-yellow": "yellow",
- "unset-color": "Unset",
- "comment": "Comment",
- "comment-placeholder": "Write Comment",
- "comment-only": "Comment only",
- "comment-only-desc": "Can comment on cards only.",
- "no-comments": "No comments",
- "no-comments-desc": "Can not see comments and activities.",
- "computer": "Computer",
- "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
- "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
- "copy-card-link-to-clipboard": "Copy card link to clipboard",
- "linkCardPopup-title": "Link Card",
- "searchElementPopup-title": "Search",
- "copyCardPopup-title": "Copy Card",
- "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
- "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
- "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
- "create": "Create",
- "createBoardPopup-title": "Create Board",
- "chooseBoardSourcePopup-title": "Import board",
- "createLabelPopup-title": "Create Label",
- "createCustomField": "Create Field",
- "createCustomFieldPopup-title": "Create Field",
- "current": "current",
- "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
- "custom-field-checkbox": "Checkbox",
- "custom-field-date": "Date",
- "custom-field-dropdown": "Dropdown List",
- "custom-field-dropdown-none": "(none)",
- "custom-field-dropdown-options": "List Options",
- "custom-field-dropdown-options-placeholder": "Press enter to add more options",
- "custom-field-dropdown-unknown": "(unknown)",
- "custom-field-number": "Number",
- "custom-field-text": "Text",
- "custom-fields": "Custom Fields",
- "date": "Date",
- "decline": "Decline",
- "default-avatar": "Default avatar",
- "delete": "Delete",
- "deleteCustomFieldPopup-title": "Delete Custom Field?",
- "deleteLabelPopup-title": "Delete Label?",
- "description": "Description",
- "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
- "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
- "discard": "Discard",
- "done": "Done",
- "download": "Download",
- "edit": "Edit",
- "edit-avatar": "Change Avatar",
- "edit-profile": "Edit Profile",
- "edit-wip-limit": "Edit WIP Limit",
- "soft-wip-limit": "Soft WIP Limit",
- "editCardStartDatePopup-title": "Change start date",
- "editCardDueDatePopup-title": "Change due date",
- "editCustomFieldPopup-title": "Edit Field",
- "editCardSpentTimePopup-title": "Change spent time",
- "editLabelPopup-title": "Change Label",
- "editNotificationPopup-title": "Edit Notification",
- "editProfilePopup-title": "Edit Profile",
- "email": "Email",
- "email-enrollAccount-subject": "An account created for you on __siteName__",
- "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
- "email-fail": "Sending email failed",
- "email-fail-text": "Error trying to send email",
- "email-invalid": "Invalid email",
- "email-invite": "Invite via Email",
- "email-invite-subject": "__inviter__ sent you an invitation",
- "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
- "email-resetPassword-subject": "Reset your password on __siteName__",
- "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
- "email-sent": "Email sent",
- "email-verifyEmail-subject": "Verify your email address on __siteName__",
- "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
- "enable-wip-limit": "Enable WIP Limit",
- "error-board-doesNotExist": "This board does not exist",
- "error-board-notAdmin": "You need to be admin of this board to do that",
- "error-board-notAMember": "You need to be a member of this board to do that",
- "error-json-malformed": "Your text is not valid JSON",
- "error-json-schema": "Your JSON data does not include the proper information in the correct format",
- "error-list-doesNotExist": "This list does not exist",
- "error-user-doesNotExist": "This user does not exist",
- "error-user-notAllowSelf": "You can not invite yourself",
- "error-user-notCreated": "This user is not created",
- "error-username-taken": "This username is already taken",
- "error-email-taken": "Email has already been taken",
- "export-board": "Export board",
- "filter": "Filter",
- "filter-cards": "Filter Cards",
- "filter-clear": "Clear filter",
- "filter-no-label": "No label",
- "filter-no-member": "No member",
- "filter-no-custom-fields": "No Custom Fields",
- "filter-on": "Filter is on",
- "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
- "filter-to-selection": "Filter to selection",
- "advanced-filter-label": "Advanced Filter",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "Full Name",
- "header-logo-title": "Go back to your boards page.",
- "hide-system-messages": "Hide system messages",
- "headerBarCreateBoardPopup-title": "Create Board",
- "home": "Home",
- "import": "Import",
- "link": "Link",
- "import-board": "import board",
- "import-board-c": "Import board",
- "import-board-title-trello": "Import board from Trello",
- "import-board-title-wekan": "Import board from previous export",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
- "from-trello": "From Trello",
- "from-wekan": "From previous export",
- "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "Paste your valid JSON data here",
- "import-map-members": "Map members",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "Review members mapping",
- "import-user-select": "Pick your existing user you want to use as this member",
- "importMapMembersAddPopup-title": "Select member",
- "info": "Version",
- "initials": "Initials",
- "invalid-date": "Invalid date",
- "invalid-time": "Invalid time",
- "invalid-user": "Invalid user",
- "joined": "joined",
- "just-invited": "You are just invited to this board",
- "keyboard-shortcuts": "Keyboard shortcuts",
- "label-create": "Create Label",
- "label-default": "%s label (default)",
- "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
- "labels": "Labels",
- "language": "Language",
- "last-admin-desc": "You can’t change roles because there must be at least one admin.",
- "leave-board": "Leave Board",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "Leave Board ?",
- "link-card": "Link to this card",
- "list-archive-cards": "Move all cards in this list to Archive",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "Move all cards in this list",
- "list-select-cards": "Select all cards in this list",
- "set-color-list": "Set Color",
- "listActionPopup-title": "List Actions",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "Add a Swimlane below",
- "listImportCardPopup-title": "Import a Trello card",
- "listMorePopup-title": "More",
- "link-list": "Link to this list",
- "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "Lists",
- "swimlanes": "Swimlanes",
- "log-out": "Log Out",
- "log-in": "登入",
- "loginPopup-title": "登入",
- "memberMenuPopup-title": "Member Settings",
- "members": "Members",
- "menu": "Menu",
- "move-selection": "Move selection",
- "moveCardPopup-title": "Move Card",
- "moveCardToBottom-title": "Move to Bottom",
- "moveCardToTop-title": "Move to Top",
- "moveSelectionPopup-title": "Move selection",
- "multi-selection": "Multi-Selection",
- "multi-selection-on": "Multi-Selection is on",
- "muted": "Muted",
- "muted-info": "You will never be notified of any changes in this board",
- "my-boards": "My Boards",
- "name": "Name",
- "no-archived-cards": "No cards in Archive.",
- "no-archived-lists": "No lists in Archive.",
- "no-archived-swimlanes": "No swimlanes in Archive.",
- "no-results": "No results",
- "normal": "Normal",
- "normal-desc": "Can view and edit cards. Can't change settings.",
- "not-accepted-yet": "Invitation not accepted yet",
- "notify-participate": "Receive updates to any cards you participate as creater or member",
- "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
- "optional": "optional",
- "or": "or",
- "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
- "page-not-found": "Page not found.",
- "password": "Password",
- "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
- "participating": "Participating",
- "preview": "Preview",
- "previewAttachedImagePopup-title": "Preview",
- "previewClipboardImagePopup-title": "Preview",
- "private": "Private",
- "private-desc": "This board is private. Only people added to the board can view and edit it.",
- "profile": "Profile",
- "public": "Public",
- "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
- "quick-access-description": "Star a board to add a shortcut in this bar.",
- "remove-cover": "Remove Cover",
- "remove-from-board": "Remove from Board",
- "remove-label": "Remove Label",
- "listDeletePopup-title": "Delete List ?",
- "remove-member": "Remove Member",
- "remove-member-from-card": "Remove from Card",
- "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
- "removeMemberPopup-title": "Remove Member?",
- "rename": "Rename",
- "rename-board": "Rename Board",
- "restore": "Restore",
- "save": "儲存",
- "search": "Search",
- "rules": "Rules",
- "search-cards": "Search from card titles and descriptions on this board",
- "search-example": "Text to search for?",
- "select-color": "Select Color",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "Set WIP Limit",
- "shortcut-assign-self": "Assign yourself to current card",
- "shortcut-autocomplete-emoji": "Autocomplete emoji",
- "shortcut-autocomplete-members": "Autocomplete members",
- "shortcut-clear-filters": "Clear all filters",
- "shortcut-close-dialog": "Close Dialog",
- "shortcut-filter-my-cards": "Filter my cards",
- "shortcut-show-shortcuts": "Bring up this shortcuts list",
- "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
- "shortcut-toggle-sidebar": "Toggle Board Sidebar",
- "show-cards-minimum-count": "Show cards count if list contains more than",
- "sidebar-open": "Open Sidebar",
- "sidebar-close": "Close Sidebar",
- "signupPopup-title": "Create an Account",
- "star-board-title": "Click to star this board. It will show up at top of your boards list.",
- "starred-boards": "Starred Boards",
- "starred-boards-description": "Starred boards show up at the top of your boards list.",
- "subscribe": "Subscribe",
- "team": "Team",
- "this-board": "this board",
- "this-card": "this card",
- "spent-time-hours": "Spent time (hours)",
- "overtime-hours": "Overtime (hours)",
- "overtime": "Overtime",
- "has-overtime-cards": "Has overtime cards",
- "has-spenttime-cards": "Has spent time cards",
- "time": "Time",
- "title": "Title",
- "tracking": "Tracking",
- "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
- "type": "Type",
- "unassign-member": "Unassign member",
- "unsaved-description": "You have an unsaved description.",
- "unwatch": "Unwatch",
- "upload": "Upload",
- "upload-avatar": "Upload an avatar",
- "uploaded-avatar": "Uploaded an avatar",
- "username": "Username",
- "view-it": "View it",
- "warn-list-archived": "warning: this card is in an list at Archive",
- "watch": "Watch",
- "watching": "Watching",
- "watching-info": "You will be notified of any change in this board",
- "welcome-board": "Welcome Board",
- "welcome-swimlane": "Milestone 1",
- "welcome-list1": "Basics",
- "welcome-list2": "Advanced",
- "card-templates-swimlane": "Card Templates",
- "list-templates-swimlane": "List Templates",
- "board-templates-swimlane": "Board Templates",
- "what-to-do": "What do you want to do?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "Admin Panel",
- "settings": "Settings",
- "people": "People",
- "registration": "Registration",
- "disable-self-registration": "Disable Self-Registration",
- "invite": "Invite",
- "invite-people": "Invite People",
- "to-boards": "To board(s)",
- "email-addresses": "Email Addresses",
- "smtp-host-description": "The address of the SMTP server that handles your emails.",
- "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
- "smtp-tls-description": "Enable TLS support for SMTP server",
- "smtp-host": "SMTP Host",
- "smtp-port": "SMTP Port",
- "smtp-username": "Username",
- "smtp-password": "Password",
- "smtp-tls": "TLS support",
- "send-from": "From",
- "send-smtp-test": "Send a test email to yourself",
- "invitation-code": "Invitation Code",
- "email-invite-register-subject": "__inviter__ sent you an invitation",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP Test Email",
- "email-smtp-test-text": "You have successfully sent an email",
- "error-invitation-code-not-exist": "Invitation code doesn't exist",
- "error-notAuthorized": "You are not authorized to view this page.",
- "outgoing-webhooks": "Outgoing Webhooks",
- "outgoingWebhooksPopup-title": "Outgoing Webhooks",
- "boardCardTitlePopup-title": "Card Title Filter",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(Unknown)",
- "Node_version": "Node version",
- "OS_Arch": "OS Arch",
- "OS_Cpus": "OS CPU Count",
- "OS_Freemem": "OS Free Memory",
- "OS_Loadavg": "OS Load Average",
- "OS_Platform": "OS Platform",
- "OS_Release": "OS Release",
- "OS_Totalmem": "OS Total Memory",
- "OS_Type": "OS Type",
- "OS_Uptime": "OS Uptime",
- "days": "days",
- "hours": "hours",
- "minutes": "minutes",
- "seconds": "seconds",
- "show-field-on-card": "Show this field on card",
- "automatically-field-on-card": "Auto create field to all cards",
- "showLabel-field-on-card": "Show field label on minicard",
- "yes": "Yes",
- "no": "No",
- "accounts": "Accounts",
- "accounts-allowEmailChange": "Allow Email Change",
- "accounts-allowUserNameChange": "Allow Username Change",
- "createdAt": "Created at",
- "verified": "Verified",
- "active": "Active",
- "card-received": "Received",
- "card-received-on": "Received on",
- "card-end": "End",
- "card-end-on": "Ends on",
- "editCardReceivedDatePopup-title": "Change received date",
- "editCardEndDatePopup-title": "Change end date",
- "setCardColorPopup-title": "Set color",
- "setCardActionsColorPopup-title": "Choose a color",
- "setSwimlaneColorPopup-title": "Choose a color",
- "setListColorPopup-title": "Choose a color",
- "assigned-by": "Assigned By",
- "requested-by": "Requested By",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "Delete Board?",
- "delete-board": "Delete Board",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "Default",
- "queue": "Queue",
- "subtask-settings": "Subtasks Settings",
- "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "Source board",
- "no-parent": "Don't show parent",
- "activity-added-label": "added label '%s' to %s",
- "activity-removed-label": "removed label '%s' from %s",
- "activity-delete-attach": "deleted an attachment from %s",
- "activity-added-label-card": "added label '%s'",
- "activity-removed-label-card": "removed label '%s'",
- "activity-delete-attach-card": "deleted an attachment",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "Rule",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "is",
- "r-is-moved": "is moved",
- "r-added-to": "added to",
- "r-removed-from": "Removed from",
- "r-the-board": "the board",
- "r-list": "list",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "a card",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "list name",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "name",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "Move to Archive",
- "r-unarchive": "Restore from Archive",
- "r-card": "card",
- "r-add": "Add",
- "r-remove": "Remove",
- "r-label": "label",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "Send an email",
- "r-to": "to",
- "r-subject": "subject",
- "r-rule-details": "Rule details",
- "r-d-move-to-top-gen": "Move card to top of its list",
- "r-d-move-to-top-spec": "Move card to top of list",
- "r-d-move-to-bottom-gen": "Move card to bottom of its list",
- "r-d-move-to-bottom-spec": "Move card to bottom of list",
- "r-d-send-email": "Send email",
- "r-d-send-email-to": "to",
- "r-d-send-email-subject": "subject",
- "r-d-send-email-message": "message",
- "r-d-archive": "Move card to Archive",
- "r-d-unarchive": "Restore card from Archive",
- "r-d-add-label": "Add label",
- "r-d-remove-label": "Remove label",
- "r-create-card": "Create new card",
- "r-in-list": "in list",
- "r-in-swimlane": "in swimlane",
- "r-d-add-member": "Add member",
- "r-d-remove-member": "Remove member",
- "r-d-remove-all-member": "Remove all member",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "Add checklist",
- "r-d-remove-checklist": "Remove checklist",
- "r-by": "by",
- "r-add-checklist": "Add checklist",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "Add swimlane",
- "r-swimlane-name": "swimlane name",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "Update",
- "r-datefield": "date field",
- "r-df-start-at": "start",
- "r-df-due-at": "due",
- "r-df-end-at": "end",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "Custom Product Name",
- "layout": "Layout",
- "hide-logo": "Hide Logo",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "Duplicate Board",
- "people-number": "The number of people is:",
- "swimlaneDeletePopup-title": "Delete Swimlane ?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "Restore all",
- "delete-all": "Delete all",
- "loading": "Loading, please wait.",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "Accept",
+ "act-activity-notify": "Activity Notification",
+ "act-addAttachment": "added attachment __attachment__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteAttachment": "deleted attachment __attachment__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "created board __board__",
+ "act-createSwimlane": "created swimlane __swimlane__ to board __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "created custom field __customField__ at board __board__",
+ "act-deleteCustomField": "deleted custom field __customField__ at board __board__",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "added list __list__ to board __board__",
+ "act-addBoardMember": "added member __member__ to board __board__",
+ "act-archivedBoard": "Board __board__ moved to Archive",
+ "act-archivedCard": "Card __card__ at list __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedList": "List __list__ at swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-archivedSwimlane": "Swimlane __swimlane__ at board __board__ moved to Archive",
+ "act-importBoard": "imported board __board__",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "removed member __member__ from board __board__",
+ "act-restoredCard": "restored card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-unjoinMember": "removed member __member__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "Actions",
+ "activities": "Activities",
+ "activity": "Activity",
+ "activity-added": "added %s to %s",
+ "activity-archived": "%s moved to Archive",
+ "activity-attached": "attached %s to %s",
+ "activity-created": "created %s",
+ "activity-customfield-created": "created custom field %s",
+ "activity-excluded": "excluded %s from %s",
+ "activity-imported": "imported %s into %s from %s",
+ "activity-imported-board": "imported %s from %s",
+ "activity-joined": "joined %s",
+ "activity-moved": "moved %s from %s to %s",
+ "activity-on": "on %s",
+ "activity-removed": "removed %s from %s",
+ "activity-sent": "sent %s to %s",
+ "activity-unjoined": "unjoined %s",
+ "activity-subtask-added": "added subtask to %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "added checklist to %s",
+ "activity-checklist-removed": "removed a checklist from %s",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "added checklist item to '%s' in %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "Add",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "Add Attachment",
+ "add-board": "Add Board",
+ "add-card": "Add Card",
+ "add-swimlane": "Add Swimlane",
+ "add-subtask": "Add Subtask",
+ "add-checklist": "Add Checklist",
+ "add-checklist-item": "Add an item to checklist",
+ "add-cover": "Add Cover",
+ "add-label": "Add Label",
+ "add-list": "Add List",
+ "add-members": "Add Members",
+ "added": "Added",
+ "addMemberPopup-title": "Members",
+ "admin": "Admin",
+ "admin-desc": "Can view and edit cards, remove members, and change settings for the board.",
+ "admin-announcement": "Announcement",
+ "admin-announcement-active": "Active System-Wide Announcement",
+ "admin-announcement-title": "Announcement from Administrator",
+ "all-boards": "All boards",
+ "and-n-other-card": "And __count__ other card",
+ "and-n-other-card_plural": "And __count__ other cards",
+ "apply": "Apply",
+ "app-is-offline": "Loading, please wait. Refreshing the page will cause data loss. If loading does not work, please check that server has not stopped.",
+ "archive": "Move to Archive",
+ "archive-all": "Move All to Archive",
+ "archive-board": "Move Board to Archive",
+ "archive-card": "Move Card to Archive",
+ "archive-list": "Move List to Archive",
+ "archive-swimlane": "Move Swimlane to Archive",
+ "archive-selection": "Move selection to Archive",
+ "archiveBoardPopup-title": "Move Board to Archive?",
+ "archived-items": "Archive",
+ "archived-boards": "Boards in Archive",
+ "restore-board": "Restore Board",
+ "no-archived-boards": "No Boards in Archive.",
+ "archives": "Archive",
+ "template": "Template",
+ "templates": "Templates",
+ "assign-member": "Assign member",
+ "attached": "attached",
+ "attachment": "Attachment",
+ "attachment-delete-pop": "Deleting an attachment is permanent. There is no undo.",
+ "attachmentDeletePopup-title": "Delete Attachment?",
+ "attachments": "Attachments",
+ "auto-watch": "Automatically watch boards when they are created",
+ "avatar-too-big": "The avatar is too large (70KB max)",
+ "back": "Back",
+ "board-change-color": "Change color",
+ "board-nb-stars": "%s stars",
+ "board-not-found": "Board not found",
+ "board-private-info": "This board will be <strong>private</strong>.",
+ "board-public-info": "This board will be <strong>public</strong>.",
+ "boardChangeColorPopup-title": "Change Board Background",
+ "boardChangeTitlePopup-title": "Rename Board",
+ "boardChangeVisibilityPopup-title": "Change Visibility",
+ "boardChangeWatchPopup-title": "Change Watch",
+ "boardMenuPopup-title": "Board Settings",
+ "boards": "Boards",
+ "board-view": "Board View",
+ "board-view-cal": "Calendar",
+ "board-view-swimlanes": "Swimlanes",
+ "board-view-lists": "Lists",
+ "bucket-example": "Like “Bucket List” for example",
+ "cancel": "Cancel",
+ "card-archived": "This card is moved to Archive.",
+ "board-archived": "This board is moved to Archive.",
+ "card-comments-title": "This card has %s comment.",
+ "card-delete-notice": "Deleting is permanent. You will lose all actions associated with this card.",
+ "card-delete-pop": "All actions will be removed from the activity feed and you won't be able to re-open the card. There is no undo.",
+ "card-delete-suggest-archive": "You can move a card to Archive to remove it from the board and preserve the activity.",
+ "card-due": "Due",
+ "card-due-on": "Due on",
+ "card-spent": "Spent Time",
+ "card-edit-attachments": "Edit attachments",
+ "card-edit-custom-fields": "Edit custom fields",
+ "card-edit-labels": "Edit labels",
+ "card-edit-members": "Edit members",
+ "card-labels-title": "Change the labels for the card.",
+ "card-members-title": "Add or remove members of the board from the card.",
+ "card-start": "Start",
+ "card-start-on": "Starts on",
+ "cardAttachmentsPopup-title": "Attach From",
+ "cardCustomField-datePopup-title": "Change date",
+ "cardCustomFieldsPopup-title": "Edit custom fields",
+ "cardDeletePopup-title": "Delete Card?",
+ "cardDetailsActionsPopup-title": "Card Actions",
+ "cardLabelsPopup-title": "Labels",
+ "cardMembersPopup-title": "Members",
+ "cardMorePopup-title": "More",
+ "cardTemplatePopup-title": "Create template",
+ "cards": "Cards",
+ "cards-count": "Cards",
+ "casSignIn": "Sign In with CAS",
+ "cardType-card": "Card",
+ "cardType-linkedCard": "Linked Card",
+ "cardType-linkedBoard": "Linked Board",
+ "change": "Change",
+ "change-avatar": "Change Avatar",
+ "change-password": "Change Password",
+ "change-permissions": "Change permissions",
+ "change-settings": "Change Settings",
+ "changeAvatarPopup-title": "Change Avatar",
+ "changeLanguagePopup-title": "Change Language",
+ "changePasswordPopup-title": "Change Password",
+ "changePermissionsPopup-title": "Change Permissions",
+ "changeSettingsPopup-title": "Change Settings",
+ "subtasks": "Subtasks",
+ "checklists": "Checklists",
+ "click-to-star": "Click to star this board.",
+ "click-to-unstar": "Click to unstar this board.",
+ "clipboard": "Clipboard or drag & drop",
+ "close": "Close",
+ "close-board": "Close Board",
+ "close-board-pop": "You will be able to restore the board by clicking the “Archive” button from the home header.",
+ "color-black": "black",
+ "color-blue": "blue",
+ "color-crimson": "crimson",
+ "color-darkgreen": "darkgreen",
+ "color-gold": "gold",
+ "color-gray": "gray",
+ "color-green": "green",
+ "color-indigo": "indigo",
+ "color-lime": "lime",
+ "color-magenta": "magenta",
+ "color-mistyrose": "mistyrose",
+ "color-navy": "navy",
+ "color-orange": "orange",
+ "color-paleturquoise": "paleturquoise",
+ "color-peachpuff": "peachpuff",
+ "color-pink": "pink",
+ "color-plum": "plum",
+ "color-purple": "purple",
+ "color-red": "red",
+ "color-saddlebrown": "saddlebrown",
+ "color-silver": "silver",
+ "color-sky": "sky",
+ "color-slateblue": "slateblue",
+ "color-white": "white",
+ "color-yellow": "yellow",
+ "unset-color": "Unset",
+ "comment": "Comment",
+ "comment-placeholder": "Write Comment",
+ "comment-only": "Comment only",
+ "comment-only-desc": "Can comment on cards only.",
+ "no-comments": "No comments",
+ "no-comments-desc": "Can not see comments and activities.",
+ "computer": "Computer",
+ "confirm-subtask-delete-dialog": "Are you sure you want to delete subtask?",
+ "confirm-checklist-delete-dialog": "Are you sure you want to delete checklist?",
+ "copy-card-link-to-clipboard": "Copy card link to clipboard",
+ "linkCardPopup-title": "Link Card",
+ "searchElementPopup-title": "Search",
+ "copyCardPopup-title": "Copy Card",
+ "copyChecklistToManyCardsPopup-title": "Copy Checklist Template to Many Cards",
+ "copyChecklistToManyCardsPopup-instructions": "Destination Card Titles and Descriptions in this JSON format",
+ "copyChecklistToManyCardsPopup-format": "[ {\"title\": \"First card title\", \"description\":\"First card description\"}, {\"title\":\"Second card title\",\"description\":\"Second card description\"},{\"title\":\"Last card title\",\"description\":\"Last card description\"} ]",
+ "create": "Create",
+ "createBoardPopup-title": "Create Board",
+ "chooseBoardSourcePopup-title": "Import board",
+ "createLabelPopup-title": "Create Label",
+ "createCustomField": "Create Field",
+ "createCustomFieldPopup-title": "Create Field",
+ "current": "current",
+ "custom-field-delete-pop": "There is no undo. This will remove this custom field from all cards and destroy its history.",
+ "custom-field-checkbox": "Checkbox",
+ "custom-field-date": "Date",
+ "custom-field-dropdown": "Dropdown List",
+ "custom-field-dropdown-none": "(none)",
+ "custom-field-dropdown-options": "List Options",
+ "custom-field-dropdown-options-placeholder": "Press enter to add more options",
+ "custom-field-dropdown-unknown": "(unknown)",
+ "custom-field-number": "Number",
+ "custom-field-text": "Text",
+ "custom-fields": "Custom Fields",
+ "date": "Date",
+ "decline": "Decline",
+ "default-avatar": "Default avatar",
+ "delete": "Delete",
+ "deleteCustomFieldPopup-title": "Delete Custom Field?",
+ "deleteLabelPopup-title": "Delete Label?",
+ "description": "Description",
+ "disambiguateMultiLabelPopup-title": "Disambiguate Label Action",
+ "disambiguateMultiMemberPopup-title": "Disambiguate Member Action",
+ "discard": "Discard",
+ "done": "Done",
+ "download": "Download",
+ "edit": "Edit",
+ "edit-avatar": "Change Avatar",
+ "edit-profile": "Edit Profile",
+ "edit-wip-limit": "Edit WIP Limit",
+ "soft-wip-limit": "Soft WIP Limit",
+ "editCardStartDatePopup-title": "Change start date",
+ "editCardDueDatePopup-title": "Change due date",
+ "editCustomFieldPopup-title": "Edit Field",
+ "editCardSpentTimePopup-title": "Change spent time",
+ "editLabelPopup-title": "Change Label",
+ "editNotificationPopup-title": "Edit Notification",
+ "editProfilePopup-title": "Edit Profile",
+ "email": "Email",
+ "email-enrollAccount-subject": "An account created for you on __siteName__",
+ "email-enrollAccount-text": "Hello __user__,\n\nTo start using the service, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-fail": "Sending email failed",
+ "email-fail-text": "Error trying to send email",
+ "email-invalid": "Invalid email",
+ "email-invite": "Invite via Email",
+ "email-invite-subject": "__inviter__ sent you an invitation",
+ "email-invite-text": "Dear __user__,\n\n__inviter__ invites you to join board \"__board__\" for collaborations.\n\nPlease follow the link below:\n\n__url__\n\nThanks.",
+ "email-resetPassword-subject": "Reset your password on __siteName__",
+ "email-resetPassword-text": "Hello __user__,\n\nTo reset your password, simply click the link below.\n\n__url__\n\nThanks.",
+ "email-sent": "Email sent",
+ "email-verifyEmail-subject": "Verify your email address on __siteName__",
+ "email-verifyEmail-text": "Hello __user__,\n\nTo verify your account email, simply click the link below.\n\n__url__\n\nThanks.",
+ "enable-wip-limit": "Enable WIP Limit",
+ "error-board-doesNotExist": "This board does not exist",
+ "error-board-notAdmin": "You need to be admin of this board to do that",
+ "error-board-notAMember": "You need to be a member of this board to do that",
+ "error-json-malformed": "Your text is not valid JSON",
+ "error-json-schema": "Your JSON data does not include the proper information in the correct format",
+ "error-list-doesNotExist": "This list does not exist",
+ "error-user-doesNotExist": "This user does not exist",
+ "error-user-notAllowSelf": "You can not invite yourself",
+ "error-user-notCreated": "This user is not created",
+ "error-username-taken": "This username is already taken",
+ "error-email-taken": "Email has already been taken",
+ "export-board": "Export board",
+ "filter": "Filter",
+ "filter-cards": "Filter Cards",
+ "filter-clear": "Clear filter",
+ "filter-no-label": "No label",
+ "filter-no-member": "No member",
+ "filter-no-custom-fields": "No Custom Fields",
+ "filter-on": "Filter is on",
+ "filter-on-desc": "You are filtering cards on this board. Click here to edit filter.",
+ "filter-to-selection": "Filter to selection",
+ "advanced-filter-label": "Advanced Filter",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "Full Name",
+ "header-logo-title": "Go back to your boards page.",
+ "hide-system-messages": "Hide system messages",
+ "headerBarCreateBoardPopup-title": "Create Board",
+ "home": "Home",
+ "import": "Import",
+ "link": "Link",
+ "import-board": "import board",
+ "import-board-c": "Import board",
+ "import-board-title-trello": "Import board from Trello",
+ "import-board-title-wekan": "Import board from previous export",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "Imported board will delete all existing data on board and replace it with imported board.",
+ "from-trello": "From Trello",
+ "from-wekan": "From previous export",
+ "import-board-instruction-trello": "In your Trello board, go to 'Menu', then 'More', 'Print and Export', 'Export JSON', and copy the resulting text.",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "Paste your valid JSON data here",
+ "import-map-members": "Map members",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "Review members mapping",
+ "import-user-select": "Pick your existing user you want to use as this member",
+ "importMapMembersAddPopup-title": "Select member",
+ "info": "Version",
+ "initials": "Initials",
+ "invalid-date": "Invalid date",
+ "invalid-time": "Invalid time",
+ "invalid-user": "Invalid user",
+ "joined": "joined",
+ "just-invited": "You are just invited to this board",
+ "keyboard-shortcuts": "Keyboard shortcuts",
+ "label-create": "Create Label",
+ "label-default": "%s label (default)",
+ "label-delete-pop": "There is no undo. This will remove this label from all cards and destroy its history.",
+ "labels": "Labels",
+ "language": "Language",
+ "last-admin-desc": "You can’t change roles because there must be at least one admin.",
+ "leave-board": "Leave Board",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "Leave Board ?",
+ "link-card": "Link to this card",
+ "list-archive-cards": "Move all cards in this list to Archive",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "Move all cards in this list",
+ "list-select-cards": "Select all cards in this list",
+ "set-color-list": "Set Color",
+ "listActionPopup-title": "List Actions",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "Add a Swimlane below",
+ "listImportCardPopup-title": "Import a Trello card",
+ "listMorePopup-title": "More",
+ "link-list": "Link to this list",
+ "list-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the list. There is no undo.",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "Lists",
+ "swimlanes": "Swimlanes",
+ "log-out": "Log Out",
+ "log-in": "登入",
+ "loginPopup-title": "登入",
+ "memberMenuPopup-title": "Member Settings",
+ "members": "Members",
+ "menu": "Menu",
+ "move-selection": "Move selection",
+ "moveCardPopup-title": "Move Card",
+ "moveCardToBottom-title": "Move to Bottom",
+ "moveCardToTop-title": "Move to Top",
+ "moveSelectionPopup-title": "Move selection",
+ "multi-selection": "Multi-Selection",
+ "multi-selection-on": "Multi-Selection is on",
+ "muted": "Muted",
+ "muted-info": "You will never be notified of any changes in this board",
+ "my-boards": "My Boards",
+ "name": "Name",
+ "no-archived-cards": "No cards in Archive.",
+ "no-archived-lists": "No lists in Archive.",
+ "no-archived-swimlanes": "No swimlanes in Archive.",
+ "no-results": "No results",
+ "normal": "Normal",
+ "normal-desc": "Can view and edit cards. Can't change settings.",
+ "not-accepted-yet": "Invitation not accepted yet",
+ "notify-participate": "Receive updates to any cards you participate as creater or member",
+ "notify-watch": "Receive updates to any boards, lists, or cards you’re watching",
+ "optional": "optional",
+ "or": "or",
+ "page-maybe-private": "This page may be private. You may be able to view it by <a href='%s'>logging in</a>.",
+ "page-not-found": "Page not found.",
+ "password": "Password",
+ "paste-or-dragdrop": "to paste, or drag & drop image file to it (image only)",
+ "participating": "Participating",
+ "preview": "Preview",
+ "previewAttachedImagePopup-title": "Preview",
+ "previewClipboardImagePopup-title": "Preview",
+ "private": "Private",
+ "private-desc": "This board is private. Only people added to the board can view and edit it.",
+ "profile": "Profile",
+ "public": "Public",
+ "public-desc": "This board is public. It's visible to anyone with the link and will show up in search engines like Google. Only people added to the board can edit.",
+ "quick-access-description": "Star a board to add a shortcut in this bar.",
+ "remove-cover": "Remove Cover",
+ "remove-from-board": "Remove from Board",
+ "remove-label": "Remove Label",
+ "listDeletePopup-title": "Delete List ?",
+ "remove-member": "Remove Member",
+ "remove-member-from-card": "Remove from Card",
+ "remove-member-pop": "Remove __name__ (__username__) from __boardTitle__? The member will be removed from all cards on this board. They will receive a notification.",
+ "removeMemberPopup-title": "Remove Member?",
+ "rename": "Rename",
+ "rename-board": "Rename Board",
+ "restore": "Restore",
+ "save": "儲存",
+ "search": "Search",
+ "rules": "Rules",
+ "search-cards": "Search from card titles and descriptions on this board",
+ "search-example": "Text to search for?",
+ "select-color": "Select Color",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "Set WIP Limit",
+ "shortcut-assign-self": "Assign yourself to current card",
+ "shortcut-autocomplete-emoji": "Autocomplete emoji",
+ "shortcut-autocomplete-members": "Autocomplete members",
+ "shortcut-clear-filters": "Clear all filters",
+ "shortcut-close-dialog": "Close Dialog",
+ "shortcut-filter-my-cards": "Filter my cards",
+ "shortcut-show-shortcuts": "Bring up this shortcuts list",
+ "shortcut-toggle-filterbar": "Toggle Filter Sidebar",
+ "shortcut-toggle-sidebar": "Toggle Board Sidebar",
+ "show-cards-minimum-count": "Show cards count if list contains more than",
+ "sidebar-open": "Open Sidebar",
+ "sidebar-close": "Close Sidebar",
+ "signupPopup-title": "Create an Account",
+ "star-board-title": "Click to star this board. It will show up at top of your boards list.",
+ "starred-boards": "Starred Boards",
+ "starred-boards-description": "Starred boards show up at the top of your boards list.",
+ "subscribe": "Subscribe",
+ "team": "Team",
+ "this-board": "this board",
+ "this-card": "this card",
+ "spent-time-hours": "Spent time (hours)",
+ "overtime-hours": "Overtime (hours)",
+ "overtime": "Overtime",
+ "has-overtime-cards": "Has overtime cards",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "Time",
+ "title": "Title",
+ "tracking": "Tracking",
+ "tracking-info": "You will be notified of any changes to those cards you are involved as creator or member.",
+ "type": "Type",
+ "unassign-member": "Unassign member",
+ "unsaved-description": "You have an unsaved description.",
+ "unwatch": "Unwatch",
+ "upload": "Upload",
+ "upload-avatar": "Upload an avatar",
+ "uploaded-avatar": "Uploaded an avatar",
+ "username": "Username",
+ "view-it": "View it",
+ "warn-list-archived": "warning: this card is in an list at Archive",
+ "watch": "Watch",
+ "watching": "Watching",
+ "watching-info": "You will be notified of any change in this board",
+ "welcome-board": "Welcome Board",
+ "welcome-swimlane": "Milestone 1",
+ "welcome-list1": "Basics",
+ "welcome-list2": "Advanced",
+ "card-templates-swimlane": "Card Templates",
+ "list-templates-swimlane": "List Templates",
+ "board-templates-swimlane": "Board Templates",
+ "what-to-do": "What do you want to do?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "Admin Panel",
+ "settings": "Settings",
+ "people": "People",
+ "registration": "Registration",
+ "disable-self-registration": "Disable Self-Registration",
+ "invite": "Invite",
+ "invite-people": "Invite People",
+ "to-boards": "To board(s)",
+ "email-addresses": "Email Addresses",
+ "smtp-host-description": "The address of the SMTP server that handles your emails.",
+ "smtp-port-description": "The port your SMTP server uses for outgoing emails.",
+ "smtp-tls-description": "Enable TLS support for SMTP server",
+ "smtp-host": "SMTP Host",
+ "smtp-port": "SMTP Port",
+ "smtp-username": "Username",
+ "smtp-password": "Password",
+ "smtp-tls": "TLS support",
+ "send-from": "From",
+ "send-smtp-test": "Send a test email to yourself",
+ "invitation-code": "Invitation Code",
+ "email-invite-register-subject": "__inviter__ sent you an invitation",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP Test Email",
+ "email-smtp-test-text": "You have successfully sent an email",
+ "error-invitation-code-not-exist": "Invitation code doesn't exist",
+ "error-notAuthorized": "You are not authorized to view this page.",
+ "outgoing-webhooks": "Outgoing Webhooks",
+ "outgoingWebhooksPopup-title": "Outgoing Webhooks",
+ "boardCardTitlePopup-title": "Card Title Filter",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(Unknown)",
+ "Node_version": "Node version",
+ "OS_Arch": "OS Arch",
+ "OS_Cpus": "OS CPU Count",
+ "OS_Freemem": "OS Free Memory",
+ "OS_Loadavg": "OS Load Average",
+ "OS_Platform": "OS Platform",
+ "OS_Release": "OS Release",
+ "OS_Totalmem": "OS Total Memory",
+ "OS_Type": "OS Type",
+ "OS_Uptime": "OS Uptime",
+ "days": "days",
+ "hours": "hours",
+ "minutes": "minutes",
+ "seconds": "seconds",
+ "show-field-on-card": "Show this field on card",
+ "automatically-field-on-card": "Auto create field to all cards",
+ "showLabel-field-on-card": "Show field label on minicard",
+ "yes": "Yes",
+ "no": "No",
+ "accounts": "Accounts",
+ "accounts-allowEmailChange": "Allow Email Change",
+ "accounts-allowUserNameChange": "Allow Username Change",
+ "createdAt": "Created at",
+ "verified": "Verified",
+ "active": "Active",
+ "card-received": "Received",
+ "card-received-on": "Received on",
+ "card-end": "End",
+ "card-end-on": "Ends on",
+ "editCardReceivedDatePopup-title": "Change received date",
+ "editCardEndDatePopup-title": "Change end date",
+ "setCardColorPopup-title": "Set color",
+ "setCardActionsColorPopup-title": "Choose a color",
+ "setSwimlaneColorPopup-title": "Choose a color",
+ "setListColorPopup-title": "Choose a color",
+ "assigned-by": "Assigned By",
+ "requested-by": "Requested By",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "Delete Board?",
+ "delete-board": "Delete Board",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "Default",
+ "queue": "Queue",
+ "subtask-settings": "Subtasks Settings",
+ "boardSubtaskSettingsPopup-title": "Board Subtasks Settings",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "Source board",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "added label '%s' to %s",
+ "activity-removed-label": "removed label '%s' from %s",
+ "activity-delete-attach": "deleted an attachment from %s",
+ "activity-added-label-card": "added label '%s'",
+ "activity-removed-label-card": "removed label '%s'",
+ "activity-delete-attach-card": "deleted an attachment",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "Rule",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "is",
+ "r-is-moved": "is moved",
+ "r-added-to": "added to",
+ "r-removed-from": "Removed from",
+ "r-the-board": "the board",
+ "r-list": "list",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "a card",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "list name",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "name",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "Move to Archive",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "card",
+ "r-add": "Add",
+ "r-remove": "Remove",
+ "r-label": "label",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "Send an email",
+ "r-to": "to",
+ "r-subject": "subject",
+ "r-rule-details": "Rule details",
+ "r-d-move-to-top-gen": "Move card to top of its list",
+ "r-d-move-to-top-spec": "Move card to top of list",
+ "r-d-move-to-bottom-gen": "Move card to bottom of its list",
+ "r-d-move-to-bottom-spec": "Move card to bottom of list",
+ "r-d-send-email": "Send email",
+ "r-d-send-email-to": "to",
+ "r-d-send-email-subject": "subject",
+ "r-d-send-email-message": "message",
+ "r-d-archive": "Move card to Archive",
+ "r-d-unarchive": "Restore card from Archive",
+ "r-d-add-label": "Add label",
+ "r-d-remove-label": "Remove label",
+ "r-create-card": "Create new card",
+ "r-in-list": "in list",
+ "r-in-swimlane": "in swimlane",
+ "r-d-add-member": "Add member",
+ "r-d-remove-member": "Remove member",
+ "r-d-remove-all-member": "Remove all member",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "Add checklist",
+ "r-d-remove-checklist": "Remove checklist",
+ "r-by": "by",
+ "r-add-checklist": "Add checklist",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "Add swimlane",
+ "r-swimlane-name": "swimlane name",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "Update",
+ "r-datefield": "date field",
+ "r-df-start-at": "start",
+ "r-df-due-at": "due",
+ "r-df-end-at": "end",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "Custom Product Name",
+ "layout": "Layout",
+ "hide-logo": "Hide Logo",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "Duplicate Board",
+ "people-number": "The number of people is:",
+ "swimlaneDeletePopup-title": "Delete Swimlane ?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "Restore all",
+ "delete-all": "Delete all",
+ "loading": "Loading, please wait.",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json
index ba691a23..d3ba3713 100644
--- a/i18n/zh-TW.i18n.json
+++ b/i18n/zh-TW.i18n.json
@@ -1,725 +1,726 @@
{
- "accept": "接受",
- "act-activity-notify": "活動通知",
- "act-addAttachment": "附件 __attachment__ 已新增到卡片 __card__ 位於清單 __list__  泳道流程圖  __swimlane__ 看板 __board__",
- "act-deleteAttachment": "卡片__card__ 附件 __attachment__ 已刪除,位於清單 __list__ 泳道流程圖  __swimlane__ 看板 __board__",
- "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createBoard": "看板 __board__ 已建立",
- "act-createSwimlane": "泳道流程圖 __swimlane__ 以新增至看板 __board__",
- "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-createCustomField": "看板 __board__ 自訂欄位 __customField__ 已建立",
- "act-deleteCustomField": "看板 __board__ 自訂欄位 __customField__ 已刪除",
- "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-createList": "清單 __list__ 已新增到看板 __board__",
- "act-addBoardMember": "已在看板 __board__ 中新增成員 __member__",
- "act-archivedBoard": "看板 __board__ 已被移到封存",
- "act-archivedCard": "卡片 __card__ 位於清單 __list__ 泳道流程圖 __swimlane__ 看板 __board__ 已被移到封存",
- "act-archivedList": "清單 __list__ 位於泳道流程圖 __swimlane__ 看板 __board__ 已被移到封存",
- "act-archivedSwimlane": "看板__board__的泳道流程圖__swimlane__已被移到封存",
- "act-importBoard": "看板 __board__ 已匯入",
- "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
- "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
- "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
- "act-removeBoardMember": "成員 __member__ 已從看板 __board__ 刪除",
- "act-restoredCard": "卡片__card__ 已還原到清單 __list__ ,位於泳道流程圖 __swimlane__ 看板 __board__",
- "act-unjoinMember": "成員 __member__ 已從卡片 __card__ 刪除 ,位於清單 __list__ 泳道流程圖 __swimlane__ 看板 __board__",
- "act-withBoardTitle": "__board__",
- "act-withCardTitle": "[__board__] __card__",
- "actions": "操作",
- "activities": "活動",
- "activity": "活動",
- "activity-added": "新增 %s 到 %s",
- "activity-archived": "%s 已被移到封存",
- "activity-attached": "已新增附件 %s 到 %s",
- "activity-created": "建立 %s",
- "activity-customfield-created": "已建立的自訂欄位 %s",
- "activity-excluded": "排除 %s 從 %s",
- "activity-imported": "匯入 %s 到 %s 從 %s 中",
- "activity-imported-board": "已匯入 %s 從 %s 中",
- "activity-joined": "已關聯 %s",
- "activity-moved": "將 %s 從 %s 移到 %s",
- "activity-on": "在 %s",
- "activity-removed": "已移除 %s 從 %s 中",
- "activity-sent": "已寄送 %s 到 %s",
- "activity-unjoined": "已解除關聯 %s",
- "activity-subtask-added": "已新增子任務到 %s",
- "activity-checked-item": "checked %s in checklist %s of %s",
- "activity-unchecked-item": "unchecked %s in checklist %s of %s",
- "activity-checklist-added": "已新增待辦清單到 %s",
- "activity-checklist-removed": "已刪除%s的待辦清單",
- "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
- "activity-checklist-item-added": "新增待辦清單項目從 %s 到 %s",
- "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
- "add": "新增",
- "activity-checked-item-card": "checked %s in checklist %s",
- "activity-unchecked-item-card": "unchecked %s in checklist %s",
- "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
- "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
- "add-attachment": "新增附件",
- "add-board": "新增看板",
- "add-card": "新增卡片",
- "add-swimlane": "新增泳道圖",
- "add-subtask": "新增子任務",
- "add-checklist": "新增待辦清單",
- "add-checklist-item": "新增項目",
- "add-cover": "新增封面",
- "add-label": "新增標籤",
- "add-list": "新增清單",
- "add-members": "新增成員",
- "added": "已新增",
- "addMemberPopup-title": "成員",
- "admin": "管理員",
- "admin-desc": "可以瀏覽並編輯卡片,移除成員,並且更改該看板的設定",
- "admin-announcement": "公告",
- "admin-announcement-active": "啟用全系統範圍公告",
- "admin-announcement-title": "來自 Administrator 的公告",
- "all-boards": "全部看板",
- "and-n-other-card": "和其他 __count__ 個卡片",
- "and-n-other-card_plural": "和其他 __count__ 個卡片",
- "apply": "送出",
- "app-is-offline": "請稍候,資料讀取中,重整頁面可能會導致資料遺失。如果讀取一直沒有進度, 請檢查伺服器是否還在運行。",
- "archive": "移到封存",
- "archive-all": "全部移到封存",
- "archive-board": "將看板移到封存",
- "archive-card": "將卡片移到封存",
- "archive-list": "將清單移到封存",
- "archive-swimlane": "將泳道圖移到封存",
- "archive-selection": "將選取內容移到封存",
- "archiveBoardPopup-title": "將看板移到封存?",
- "archived-items": "封存",
- "archived-boards": "封存中的看板",
- "restore-board": "還原看板",
- "no-archived-boards": "封存中沒有看板。",
- "archives": "封存",
- "template": "模板",
- "templates": "模板",
- "assign-member": "分配成員",
- "attached": "附加",
- "attachment": "附件",
- "attachment-delete-pop": "刪除附件的操作無法還原。",
- "attachmentDeletePopup-title": "刪除附件?",
- "attachments": "附件",
- "auto-watch": "新增看板時自動加入觀看",
- "avatar-too-big": "頭像檔案太大(最大 70 KB)",
- "back": "返回",
- "board-change-color": "更換顏色",
- "board-nb-stars": "%s 星號標記",
- "board-not-found": "看板不存在",
- "board-private-info": "此看板將被設為 <strong>私密</strong>.",
- "board-public-info": "此看板將被設為 <strong>公開</strong>.",
- "boardChangeColorPopup-title": "更換看板背景",
- "boardChangeTitlePopup-title": "重新命名看板",
- "boardChangeVisibilityPopup-title": "改變觀看權限",
- "boardChangeWatchPopup-title": "更改觀察",
- "boardMenuPopup-title": "看板設定",
- "boards": "看板",
- "board-view": "看板視圖",
- "board-view-cal": "行事曆",
- "board-view-swimlanes": "泳道圖",
- "board-view-lists": "清單",
- "bucket-example": "例如「目標清單」",
- "cancel": "取消",
- "card-archived": "此卡片已移到封存。",
- "board-archived": "此看板已移到封存。",
- "card-comments-title": "該卡片有 %s 則評論",
- "card-delete-notice": "刪除是永久性的,您將遺失該卡片的所有相關操作記錄。",
- "card-delete-pop": "所有活動中的內容都將被刪除,此操作無法撤消,您將無法重新開啟此卡片。",
- "card-delete-suggest-archive": "您可以將卡片移到封存來將卡片從看板上移除,並且保留其中的活動。",
- "card-due": "期限",
- "card-due-on": "期限日",
- "card-spent": "耗費時間",
- "card-edit-attachments": "編輯附件",
- "card-edit-custom-fields": "編輯自訂欄位",
- "card-edit-labels": "編輯標籤",
- "card-edit-members": "編輯成員",
- "card-labels-title": "更改該卡片上的標籤",
- "card-members-title": "在該卡片中新增或移除看板成員",
- "card-start": "開始",
- "card-start-on": "開始日",
- "cardAttachmentsPopup-title": "附件來源",
- "cardCustomField-datePopup-title": "更改日期",
- "cardCustomFieldsPopup-title": "編輯自訂欄位",
- "cardDeletePopup-title": "刪除卡片?",
- "cardDetailsActionsPopup-title": "卡片動作",
- "cardLabelsPopup-title": "標籤",
- "cardMembersPopup-title": "成員",
- "cardMorePopup-title": "更多",
- "cardTemplatePopup-title": "新增模板",
- "cards": "卡片",
- "cards-count": "卡片",
- "casSignIn": "以 CAS 登入",
- "cardType-card": "卡片",
- "cardType-linkedCard": "已連結卡片",
- "cardType-linkedBoard": "已連結看板",
- "change": "變更",
- "change-avatar": "更換大頭貼",
- "change-password": "變更密碼",
- "change-permissions": "更改許可權",
- "change-settings": "更改設定",
- "changeAvatarPopup-title": "更換大頭貼",
- "changeLanguagePopup-title": "更改語言",
- "changePasswordPopup-title": "變更密碼",
- "changePermissionsPopup-title": "更改許可權",
- "changeSettingsPopup-title": "更改設定",
- "subtasks": "子任務",
- "checklists": "待辦清單",
- "click-to-star": "點擊以添加標記於此看板。",
- "click-to-unstar": "點擊以移除標記於此看板。",
- "clipboard": "剪貼簿貼上或者拖曳檔案",
- "close": "關閉",
- "close-board": "關閉看板",
- "close-board-pop": "您可以通過點擊主頁眉中的「封存」按鈕來恢復看板。",
- "color-black": "黑色",
- "color-blue": "藍色",
- "color-crimson": "艷紅",
- "color-darkgreen": "暗綠",
- "color-gold": "金色",
- "color-gray": "灰色",
- "color-green": "綠色",
- "color-indigo": "紫藍",
- "color-lime": "綠黃",
- "color-magenta": "洋紅",
- "color-mistyrose": "玫瑰粉",
- "color-navy": "藏青",
- "color-orange": "橙色",
- "color-paleturquoise": "淡藍綠",
- "color-peachpuff": "桃色",
- "color-pink": "粉紅",
- "color-plum": "梅色",
- "color-purple": "紫色",
- "color-red": "紅色",
- "color-saddlebrown": "馬鞍棕",
- "color-silver": "銀色",
- "color-sky": "天藍",
- "color-slateblue": "青藍",
- "color-white": "白色",
- "color-yellow": "黃色",
- "unset-color": "未設置",
- "comment": "評論",
- "comment-placeholder": "撰寫評論",
- "comment-only": "只能發表評論",
- "comment-only-desc": "只能在卡片上發表評論",
- "no-comments": "沒有評論",
- "no-comments-desc": "無法檢視評論和活動。",
- "computer": "從本機上傳",
- "confirm-subtask-delete-dialog": "你確定要刪除子任務嗎?",
- "confirm-checklist-delete-dialog": "你確定要刪除待辦清單嗎?",
- "copy-card-link-to-clipboard": "將卡片連結複製到剪貼簿",
- "linkCardPopup-title": "連結卡片",
- "searchElementPopup-title": "搜尋",
- "copyCardPopup-title": "複製卡片",
- "copyChecklistToManyCardsPopup-title": "複製待辦清單的樣板到多個卡片",
- "copyChecklistToManyCardsPopup-instructions": "使用此 JSON 格式來表示目標卡片的標題和描述",
- "copyChecklistToManyCardsPopup-format": "[ {\\\"title\\\": \\\"第一個卡片標題\\\", \\\"description\\\":\\\"第一個卡片描述\\\"}, {\\\"title\\\":\\\"第二個卡片標題\\\",\\\"description\\\":\\\"第二個卡片描述\\\"},{\\\"title\\\":\\\"最後一個卡片標題\\\",\\\"description\\\":\\\"最後一個卡片描述\\\"} ]",
- "create": "建立",
- "createBoardPopup-title": "建立看板",
- "chooseBoardSourcePopup-title": "匯入看板",
- "createLabelPopup-title": "建立標籤",
- "createCustomField": "建立欄位",
- "createCustomFieldPopup-title": "建立欄位",
- "current": "目前",
- "custom-field-delete-pop": "此操作將會從所有卡片中移除自訂欄位以及銷毀歷史紀錄,並且無法撤消。",
- "custom-field-checkbox": "複選框",
- "custom-field-date": "日期",
- "custom-field-dropdown": "下拉式選單",
- "custom-field-dropdown-none": "(無)",
- "custom-field-dropdown-options": "清單選項",
- "custom-field-dropdown-options-placeholder": "按下 Enter 新增更多選項",
- "custom-field-dropdown-unknown": "(未知)",
- "custom-field-number": "數字",
- "custom-field-text": "文字",
- "custom-fields": "自訂欄位",
- "date": "日期",
- "decline": "拒絕",
- "default-avatar": "預設大頭貼",
- "delete": "刪除",
- "deleteCustomFieldPopup-title": "刪除自訂欄位?",
- "deleteLabelPopup-title": "刪除標籤?",
- "description": "描述",
- "disambiguateMultiLabelPopup-title": "清除標籤動作歧義",
- "disambiguateMultiMemberPopup-title": "清除成員動作歧義",
- "discard": "取消",
- "done": "完成",
- "download": "下載",
- "edit": "編輯",
- "edit-avatar": "更換大頭貼",
- "edit-profile": "編輯個人資料",
- "edit-wip-limit": "編輯 WIP 限制",
- "soft-wip-limit": "軟性 WIP 限制",
- "editCardStartDatePopup-title": "變更開始日期",
- "editCardDueDatePopup-title": "變更到期日期",
- "editCustomFieldPopup-title": "編輯欄位",
- "editCardSpentTimePopup-title": "變更耗費時間",
- "editLabelPopup-title": "更改標籤",
- "editNotificationPopup-title": "更改通知",
- "editProfilePopup-title": "編輯個人資料",
- "email": "電子郵件",
- "email-enrollAccount-subject": "您在 __siteName__ 的帳號已經建立",
- "email-enrollAccount-text": "親愛的 __user__,\n\n點選下面的連結,即刻開始使用這項服務。\n\n__url__\n\n謝謝。",
- "email-fail": "郵件寄送失敗",
- "email-fail-text": "嘗試發送郵件時出現錯誤",
- "email-invalid": "電子郵件地址錯誤",
- "email-invite": "寄送郵件邀請",
- "email-invite-subject": "__inviter__ 向您發出邀請",
- "email-invite-text": "親愛的 __user__,\n\n__inviter__ 邀請您加入看板 \"__board__\" 參與協作。\n\n請點選下面的連結訪問看板:\n\n__url__\n\n謝謝。",
- "email-resetPassword-subject": "重設您在 __siteName__ 的密碼",
- "email-resetPassword-text": "親愛的 __user__,\n\n點選下面的連結,重置您的密碼:\n\n__url__\n\n謝謝。",
- "email-sent": "郵件已寄送",
- "email-verifyEmail-subject": "驗證您在 __siteName__ 的電子郵件",
- "email-verifyEmail-text": "親愛的 __user__,\n\n點選下面的連結,驗證您的電子郵件地址:\n\n__url__\n\n謝謝。",
- "enable-wip-limit": "啟用 WIP 限制",
- "error-board-doesNotExist": "該看板不存在",
- "error-board-notAdmin": "需要成為管理員才能執行此操作",
- "error-board-notAMember": "需要成為看板成員才能執行此操作",
- "error-json-malformed": "不是有效的 JSON",
- "error-json-schema": "JSON 資料沒有用正確的格式包含合適的資訊",
- "error-list-doesNotExist": "不存在此列表",
- "error-user-doesNotExist": "該使用者不存在",
- "error-user-notAllowSelf": "不允許對自己執行此操作",
- "error-user-notCreated": "該使用者未能成功建立",
- "error-username-taken": "這個使用者名稱已被使用",
- "error-email-taken": "電子信箱已被使用",
- "export-board": "匯出看板",
- "filter": "篩選",
- "filter-cards": "篩選卡片",
- "filter-clear": "清除篩選條件",
- "filter-no-label": "沒有標籤",
- "filter-no-member": "沒有成員",
- "filter-no-custom-fields": "沒有自訂欄位",
- "filter-on": "篩選器已開啟",
- "filter-on-desc": "你正在篩選該看板上的卡片,點此編輯篩選條件。",
- "filter-to-selection": "選擇的篩選條件",
- "advanced-filter-label": "進階篩選",
- "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
- "fullname": "全稱",
- "header-logo-title": "返回您的看板頁面",
- "hide-system-messages": "隱藏系統訊息",
- "headerBarCreateBoardPopup-title": "建立看板",
- "home": "首頁",
- "import": "匯入",
- "link": "連結",
- "import-board": "匯入看板",
- "import-board-c": "匯入看板",
- "import-board-title-trello": "匯入在 Trello 的看板",
- "import-board-title-wekan": "從上次的匯出檔匯入看板",
- "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
- "import-sandstorm-warning": "匯入資料將會移除所有現有的看版資料,並取代成此次匯入的看板資料",
- "from-trello": "來自 Trello",
- "from-wekan": "從上次的匯出檔",
- "import-board-instruction-trello": "在你的Trello看板中,點選“功能表”,然後選擇“更多”,“列印與匯出”,“匯出為 JSON” 並拷貝結果文本",
- "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
- "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
- "import-json-placeholder": "貼上您有效的 JSON 資料至此",
- "import-map-members": "複製成員",
- "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
- "import-show-user-mapping": "核對成員映射",
- "import-user-select": "選擇現有使用者作為成員",
- "importMapMembersAddPopup-title": "選擇成員",
- "info": "版本",
- "initials": "縮寫",
- "invalid-date": "無效的日期",
- "invalid-time": "無效的時間",
- "invalid-user": "無效的使用者",
- "joined": "關聯",
- "just-invited": "您剛剛被邀請加入此看板",
- "keyboard-shortcuts": "鍵盤快速鍵",
- "label-create": "建立標籤",
- "label-default": "%s 標籤 (預設)",
- "label-delete-pop": "此操作無法還原,這將會刪除該標籤並清除它的歷史記錄。",
- "labels": "標籤",
- "language": "語言",
- "last-admin-desc": "你不能更改角色,因為至少需要一名管理員。",
- "leave-board": "離開看板",
- "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
- "leaveBoardPopup-title": "離開看板?",
- "link-card": "關聯至該卡片",
- "list-archive-cards": "封存清單內所有的卡片",
- "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
- "list-move-cards": "移動清單中的所有卡片",
- "list-select-cards": "選擇清單中的所有卡片",
- "set-color-list": "設定顏色",
- "listActionPopup-title": "清單操作",
- "swimlaneActionPopup-title": "Swimlane Actions",
- "swimlaneAddPopup-title": "在下面新增泳道流程圖",
- "listImportCardPopup-title": "匯入 Trello 卡片",
- "listMorePopup-title": "更多",
- "link-list": "連結到這個清單",
- "list-delete-pop": "所有的動作將從活動動態中被移除且您將無法再開啟該清單\b。此操作無法復原。",
- "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
- "lists": "清單",
- "swimlanes": "泳道圖",
- "log-out": "登出",
- "log-in": "登入",
- "loginPopup-title": "登入",
- "memberMenuPopup-title": "成員更改",
- "members": "成員",
- "menu": "選單",
- "move-selection": "移動被選擇的項目",
- "moveCardPopup-title": "移動卡片",
- "moveCardToBottom-title": "移至最下面",
- "moveCardToTop-title": "移至最上面",
- "moveSelectionPopup-title": "移動選取的項目",
- "multi-selection": "多選",
- "multi-selection-on": "多選啟用",
- "muted": "靜音",
- "muted-info": "您將不會收到有關這個看板的任何訊息",
- "my-boards": "我的看板",
- "name": "名稱",
- "no-archived-cards": "沒有封存的卡片",
- "no-archived-lists": "沒有封存的清單",
- "no-archived-swimlanes": "沒有封存的泳道流程圖",
- "no-results": "無結果",
- "normal": "普通",
- "normal-desc": "可以建立以及編輯卡片,無法更改。",
- "not-accepted-yet": "邀請尚未接受",
- "notify-participate": "接收與你有關的卡片更新",
- "notify-watch": "接收您關注的看板、清單或卡片的更新",
- "optional": "選擇性的",
- "or": "或",
- "page-maybe-private": "本頁面被設為私有. 您必須 <a href='%s'>登入</a>以瀏覽其中內容。",
- "page-not-found": "頁面不存在。",
- "password": "密碼",
- "paste-or-dragdrop": "從剪貼簿貼上,或者拖曳檔案到它上面 (僅限於圖片)",
- "participating": "參與",
- "preview": "預覽",
- "previewAttachedImagePopup-title": "預覽",
- "previewClipboardImagePopup-title": "預覽",
- "private": "私有",
- "private-desc": "該看板將被設為私有。只有該看板成員才可以進行檢視和編輯。",
- "profile": "資料",
- "public": "公開",
- "public-desc": "該看板將被公開。任何人均可透過連結檢視,並且將對Google和其他搜尋引擎開放。只有加入至該看板的成員才可進行編輯。",
- "quick-access-description": "被星號標記的看板在導航列中新增快速啟動方式",
- "remove-cover": "移除封面",
- "remove-from-board": "從看板中刪除",
- "remove-label": "移除標籤",
- "listDeletePopup-title": "刪除標籤",
- "remove-member": "移除成員",
- "remove-member-from-card": "從該卡片中移除",
- "remove-member-pop": "確定從 __boardTitle__ 中移除 __name__ (__username__) 嗎? 該成員將被從該看板的所有卡片中移除,同時他會收到一則提醒。",
- "removeMemberPopup-title": "刪除成員?",
- "rename": "重新命名",
- "rename-board": "重新命名看板",
- "restore": "還原",
- "save": "儲存",
- "search": "搜尋",
- "rules": "規則",
- "search-cards": "搜尋看板內的卡片標題及描述",
- "search-example": "Text to search for?",
- "select-color": "選擇顏色",
- "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
- "setWipLimitPopup-title": "設定 WIP 限制",
- "shortcut-assign-self": "分配目前卡片給自己",
- "shortcut-autocomplete-emoji": "自動完成表情符號",
- "shortcut-autocomplete-members": "自動補齊成員",
- "shortcut-clear-filters": "清空全部過濾條件",
- "shortcut-close-dialog": "關閉對話方塊",
- "shortcut-filter-my-cards": "過濾我的卡片",
- "shortcut-show-shortcuts": "顯示此快速鍵清單",
- "shortcut-toggle-filterbar": "切換過濾程式邊欄",
- "shortcut-toggle-sidebar": "切換面板邊欄",
- "show-cards-minimum-count": "顯示卡片數量,當內容超過數量",
- "sidebar-open": "開啟側邊欄",
- "sidebar-close": "關閉側邊欄",
- "signupPopup-title": "建立帳戶",
- "star-board-title": "點此標記該看板,它將會出現在您的看板列表上方。",
- "starred-boards": "已標記看板",
- "starred-boards-description": "已標記看板將會出現在您的看板列表上方。",
- "subscribe": "訂閱",
- "team": "團隊",
- "this-board": "這個看板",
- "this-card": "這個卡片",
- "spent-time-hours": "耗費時間 (小時)",
- "overtime-hours": "超時 (小時)",
- "overtime": "超時",
- "has-overtime-cards": "有卡片已超時",
- "has-spenttime-cards": "Has spent time cards",
- "time": "時間",
- "title": "標題",
- "tracking": "追蹤",
- "tracking-info": "你將會收到與你有關的卡片的所有變更通知",
- "type": "類型",
- "unassign-member": "取消分配成員",
- "unsaved-description": "未儲存的描述",
- "unwatch": "取消觀察",
- "upload": "上傳",
- "upload-avatar": "上傳大頭貼",
- "uploaded-avatar": "大頭貼已經上傳",
- "username": "使用者名稱",
- "view-it": "檢視",
- "warn-list-archived": "警告: 卡片位在封存的清單中",
- "watch": "觀察",
- "watching": "觀察中",
- "watching-info": "你將會收到關於這個看板所有的變更通知",
- "welcome-board": "歡迎進入看板",
- "welcome-swimlane": "里程碑1",
- "welcome-list1": "基本",
- "welcome-list2": "進階",
- "card-templates-swimlane": "卡片模板",
- "list-templates-swimlane": "清單模板",
- "board-templates-swimlane": "看板模板",
- "what-to-do": "要做什麼?",
- "wipLimitErrorPopup-title": "Invalid WIP Limit",
- "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
- "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
- "admin-panel": "控制台",
- "settings": "設定",
- "people": "成員",
- "registration": "註冊",
- "disable-self-registration": "關閉自我註冊",
- "invite": "邀請",
- "invite-people": "邀請成員",
- "to-boards": "至看板()",
- "email-addresses": "電子郵件",
- "smtp-host-description": "SMTP 外寄郵件伺服器",
- "smtp-port-description": "SMTP 外寄郵件伺服器埠號",
- "smtp-tls-description": "對 SMTP 啟動 TLS 支援",
- "smtp-host": "SMTP 位置",
- "smtp-port": "SMTP 埠號",
- "smtp-username": "使用者名稱",
- "smtp-password": "密碼",
- "smtp-tls": "支援 TLS",
- "send-from": "從",
- "send-smtp-test": "傳送測試郵件給自己",
- "invitation-code": "邀請碼",
- "email-invite-register-subject": "__inviter__ 向您發出邀請",
- "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
- "email-smtp-test-subject": "SMTP 測試郵件",
- "email-smtp-test-text": "您已成功寄送郵件",
- "error-invitation-code-not-exist": "邀請碼不存在",
- "error-notAuthorized": "沒有適合的權限觀看",
- "outgoing-webhooks": "設定 Webhooks",
- "outgoingWebhooksPopup-title": "設定 Webhooks",
- "boardCardTitlePopup-title": "卡片標題過濾器",
- "new-outgoing-webhook": "New Outgoing Webhook",
- "no-name": "(未知)",
- "Node_version": "Node 版本",
- "OS_Arch": "系統架構",
- "OS_Cpus": "系統\b CPU 數",
- "OS_Freemem": "undefined",
- "OS_Loadavg": "系統平均讀取",
- "OS_Platform": "系統平臺",
- "OS_Release": "系統發佈版本",
- "OS_Totalmem": "系統總記憶體",
- "OS_Type": "系統類型",
- "OS_Uptime": "系統運行時間",
- "days": "天",
- "hours": "小時",
- "minutes": "分鐘",
- "seconds": "秒",
- "show-field-on-card": "在卡片顯示這個欄位",
- "automatically-field-on-card": "自動在所有卡片建立欄位",
- "showLabel-field-on-card": "在迷你卡中顯示欄位標籤",
- "yes": "是",
- "no": "否",
- "accounts": "帳號",
- "accounts-allowEmailChange": "准許變更電子信箱",
- "accounts-allowUserNameChange": "允許修改使用者名稱",
- "createdAt": "建立於",
- "verified": "已驗證",
- "active": "Active",
- "card-received": "接收",
- "card-received-on": "接收於",
- "card-end": "結束",
- "card-end-on": "結束於",
- "editCardReceivedDatePopup-title": "更改接收日期",
- "editCardEndDatePopup-title": "更改結束日期",
- "setCardColorPopup-title": "設定顏色",
- "setCardActionsColorPopup-title": "選擇顏色",
- "setSwimlaneColorPopup-title": "選擇顏色",
- "setListColorPopup-title": "選擇顏色",
- "assigned-by": "分配者",
- "requested-by": "請求者",
- "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
- "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
- "boardDeletePopup-title": "刪除看板?",
- "delete-board": "刪除看板",
- "default-subtasks-board": "Subtasks for __board__ board",
- "default": "預設值",
- "queue": "列隊",
- "subtask-settings": "子任務設定",
- "boardSubtaskSettingsPopup-title": "看板子任務設定",
- "show-subtasks-field": "Cards can have subtasks",
- "deposit-subtasks-board": "Deposit subtasks to this board:",
- "deposit-subtasks-list": "Landing list for subtasks deposited here:",
- "show-parent-in-minicard": "Show parent in minicard:",
- "prefix-with-full-path": "Prefix with full path",
- "prefix-with-parent": "Prefix with parent",
- "subtext-with-full-path": "Subtext with full path",
- "subtext-with-parent": "Subtext with parent",
- "change-card-parent": "Change card's parent",
- "parent-card": "Parent card",
- "source-board": "來源看板",
- "no-parent": "Don't show parent",
- "activity-added-label": "增加標籤%s至%s",
- "activity-removed-label": "刪除標籤%s位於%s",
- "activity-delete-attach": "刪除%s的附件",
- "activity-added-label-card": "新增標籤%s",
- "activity-removed-label-card": "刪除標籤%s",
- "activity-delete-attach-card": "刪除附件",
- "activity-set-customfield": "set custom field '%s' to '%s' in %s",
- "activity-unset-customfield": "unset custom field '%s' in %s",
- "r-rule": "規則",
- "r-add-trigger": "Add trigger",
- "r-add-action": "Add action",
- "r-board-rules": "Board rules",
- "r-add-rule": "Add rule",
- "r-view-rule": "View rule",
- "r-delete-rule": "Delete rule",
- "r-new-rule-name": "New rule title",
- "r-no-rules": "No rules",
- "r-when-a-card": "When a card",
- "r-is": "是",
- "r-is-moved": "被刪除",
- "r-added-to": "增加到",
- "r-removed-from": "Removed from",
- "r-the-board": "看板",
- "r-list": "清單",
- "set-filter": "Set Filter",
- "r-moved-to": "Moved to",
- "r-moved-from": "Moved from",
- "r-archived": "Moved to Archive",
- "r-unarchived": "Restored from Archive",
- "r-a-card": "卡片",
- "r-when-a-label-is": "When a label is",
- "r-when-the-label": "When the label",
- "r-list-name": "清單名稱",
- "r-when-a-member": "When a member is",
- "r-when-the-member": "When the member",
- "r-name": "名稱",
- "r-when-a-attach": "When an attachment",
- "r-when-a-checklist": "When a checklist is",
- "r-when-the-checklist": "When the checklist",
- "r-completed": "Completed",
- "r-made-incomplete": "Made incomplete",
- "r-when-a-item": "When a checklist item is",
- "r-when-the-item": "When the checklist item",
- "r-checked": "Checked",
- "r-unchecked": "Unchecked",
- "r-move-card-to": "Move card to",
- "r-top-of": "Top of",
- "r-bottom-of": "Bottom of",
- "r-its-list": "its list",
- "r-archive": "移到封存",
- "r-unarchive": "Restore from Archive",
- "r-card": "卡片",
- "r-add": "新增",
- "r-remove": "Remove",
- "r-label": "標籤",
- "r-member": "member",
- "r-remove-all": "Remove all members from the card",
- "r-set-color": "Set color to",
- "r-checklist": "checklist",
- "r-check-all": "Check all",
- "r-uncheck-all": "Uncheck all",
- "r-items-check": "items of checklist",
- "r-check": "Check",
- "r-uncheck": "Uncheck",
- "r-item": "item",
- "r-of-checklist": "of checklist",
- "r-send-email": "寄送郵件",
- "r-to": "到",
- "r-subject": "主題",
- "r-rule-details": "詳細規則",
- "r-d-move-to-top-gen": "將卡片移到所屬清單頂部",
- "r-d-move-to-top-spec": "將卡片移到清單頂部",
- "r-d-move-to-bottom-gen": "將卡片移到所屬清單底部",
- "r-d-move-to-bottom-spec": "將卡片移到清單底部",
- "r-d-send-email": "寄送郵件",
- "r-d-send-email-to": "到",
- "r-d-send-email-subject": "主題",
- "r-d-send-email-message": "訊息",
- "r-d-archive": "封存卡片",
- "r-d-unarchive": "恢復封存的卡片",
- "r-d-add-label": "新增標籤",
- "r-d-remove-label": "移除標籤",
- "r-create-card": "創建新卡片",
- "r-in-list": "在清單",
- "r-in-swimlane": "在泳道流程圖",
- "r-d-add-member": "新增成員",
- "r-d-remove-member": "移除成員",
- "r-d-remove-all-member": "移除所有成員",
- "r-d-check-all": "Check all items of a list",
- "r-d-uncheck-all": "Uncheck all items of a list",
- "r-d-check-one": "Check item",
- "r-d-uncheck-one": "Uncheck item",
- "r-d-check-of-list": "of checklist",
- "r-d-add-checklist": "新增待辦清單",
- "r-d-remove-checklist": "移除待辦清單",
- "r-by": "by",
- "r-add-checklist": "新增待辦清單",
- "r-with-items": "with items",
- "r-items-list": "item1,item2,item3",
- "r-add-swimlane": "新增泳道流程圖",
- "r-swimlane-name": "泳道流程圖名稱",
- "r-board-note": "Note: leave a field empty to match every possible value.",
- "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
- "r-when-a-card-is-moved": "When a card is moved to another list",
- "r-set": "Set",
- "r-update": "更新",
- "r-datefield": "日期欄位",
- "r-df-start-at": "開始",
- "r-df-due-at": "due",
- "r-df-end-at": "結束",
- "r-df-received-at": "received",
- "r-to-current-datetime": "to current date/time",
- "r-remove-value-from": "Remove value from",
- "ldap": "LDAP",
- "oauth2": "OAuth2",
- "cas": "CAS",
- "authentication-method": "Authentication method",
- "authentication-type": "Authentication type",
- "custom-product-name": "自訂產品名稱",
- "layout": "排版",
- "hide-logo": "隱藏圖示",
- "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
- "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
- "error-undefined": "Something went wrong",
- "error-ldap-login": "An error occurred while trying to login",
- "display-authentication-method": "Display Authentication Method",
- "default-authentication-method": "Default Authentication Method",
- "duplicate-board": "重複的看板",
- "people-number": "人數是:",
- "swimlaneDeletePopup-title": "刪除泳道流程圖?",
- "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
- "restore-all": "全部還原",
- "delete-all": "全部刪除",
- "loading": "讀取中,請稍後",
- "previous_as": "last time was",
- "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
- "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
- "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
- "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
- "a-dueAt": "modified due time to be",
- "a-endAt": "modified ending time to be",
- "a-startAt": "modified starting time to be",
- "a-receivedAt": "modified received time to be",
- "almostdue": "current due time %s is approaching",
- "pastdue": "current due time %s is past",
- "duenow": "current due time %s is today",
- "act-withDue": "__card__ due reminders [__board__]",
- "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
- "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
- "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
- "act-atUserComment": "You were mentioned in [__board__] __card__",
- "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
- "accounts-allowUserDelete": "Allow users to self delete their account"
-} \ No newline at end of file
+ "accept": "接受",
+ "act-activity-notify": "活動通知",
+ "act-addAttachment": "附件 __attachment__ 已新增到卡片 __card__ 位於清單 __list__  泳道流程圖  __swimlane__ 看板 __board__",
+ "act-deleteAttachment": "卡片__card__ 附件 __attachment__ 已刪除,位於清單 __list__ 泳道流程圖  __swimlane__ 看板 __board__",
+ "act-addSubtask": "added subtask __subtask__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addedLabel": "Added label __label__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removedLabel": "Removed label __label__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklist": "added checklist __checklist__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addChecklistItem": "added checklist item __checklistItem__ to checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklist": "removed checklist __checklist__ from card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeChecklistItem": "removed checklist item __checklistItem__ from checklist __checkList__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-checkedItem": "checked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncheckedItem": "unchecked __checklistItem__ of checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-completeChecklist": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-uncompleteChecklist": "uncompleted checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-addComment": "commented on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-editComment": "edited comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-deleteComment": "deleted comment on card __card__: __comment__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createBoard": "看板 __board__ 已建立",
+ "act-createSwimlane": "泳道流程圖 __swimlane__ 以新增至看板 __board__",
+ "act-createCard": "created card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createCustomField": "看板 __board__ 自訂欄位 __customField__ 已建立",
+ "act-deleteCustomField": "看板 __board__ 自訂欄位 __customField__ 已刪除",
+ "act-setCustomField": "edited custom field __customField__: __customFieldValue__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-createList": "清單 __list__ 已新增到看板 __board__",
+ "act-addBoardMember": "已在看板 __board__ 中新增成員 __member__",
+ "act-archivedBoard": "看板 __board__ 已被移到封存",
+ "act-archivedCard": "卡片 __card__ 位於清單 __list__ 泳道流程圖 __swimlane__ 看板 __board__ 已被移到封存",
+ "act-archivedList": "清單 __list__ 位於泳道流程圖 __swimlane__ 看板 __board__ 已被移到封存",
+ "act-archivedSwimlane": "看板__board__的泳道流程圖__swimlane__已被移到封存",
+ "act-importBoard": "看板 __board__ 已匯入",
+ "act-importCard": "imported card __card__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-importList": "imported list __list__ to swimlane __swimlane__ at board __board__",
+ "act-joinMember": "added member __member__ to card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "act-moveCard": "moved card __card__ at board __board__ from list __oldList__ at swimlane __oldSwimlane__ to list __list__ at swimlane __swimlane__",
+ "act-moveCardToOtherBoard": "moved card __card__ from list __oldList__ at swimlane __oldSwimlane__ at board __oldBoard__ to list __list__ at swimlane __swimlane__ at board __board__",
+ "act-removeBoardMember": "成員 __member__ 已從看板 __board__ 刪除",
+ "act-restoredCard": "卡片__card__ 已還原到清單 __list__ ,位於泳道流程圖 __swimlane__ 看板 __board__",
+ "act-unjoinMember": "成員 __member__ 已從卡片 __card__ 刪除 ,位於清單 __list__ 泳道流程圖 __swimlane__ 看板 __board__",
+ "act-withBoardTitle": "__board__",
+ "act-withCardTitle": "[__board__] __card__",
+ "actions": "操作",
+ "activities": "活動",
+ "activity": "活動",
+ "activity-added": "新增 %s 到 %s",
+ "activity-archived": "%s 已被移到封存",
+ "activity-attached": "已新增附件 %s 到 %s",
+ "activity-created": "建立 %s",
+ "activity-customfield-created": "已建立的自訂欄位 %s",
+ "activity-excluded": "排除 %s 從 %s",
+ "activity-imported": "匯入 %s 到 %s 從 %s 中",
+ "activity-imported-board": "已匯入 %s 從 %s 中",
+ "activity-joined": "已關聯 %s",
+ "activity-moved": "將 %s 從 %s 移到 %s",
+ "activity-on": "在 %s",
+ "activity-removed": "已移除 %s 從 %s 中",
+ "activity-sent": "已寄送 %s 到 %s",
+ "activity-unjoined": "已解除關聯 %s",
+ "activity-subtask-added": "已新增子任務到 %s",
+ "activity-checked-item": "checked %s in checklist %s of %s",
+ "activity-unchecked-item": "unchecked %s in checklist %s of %s",
+ "activity-checklist-added": "已新增待辦清單到 %s",
+ "activity-checklist-removed": "已刪除%s的待辦清單",
+ "activity-checklist-completed": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted": "uncompleted the checklist %s of %s",
+ "activity-checklist-item-added": "新增待辦清單項目從 %s 到 %s",
+ "activity-checklist-item-removed": "removed a checklist item from '%s' in %s",
+ "add": "新增",
+ "activity-checked-item-card": "checked %s in checklist %s",
+ "activity-unchecked-item-card": "unchecked %s in checklist %s",
+ "activity-checklist-completed-card": "completed checklist __checklist__ at card __card__ at list __list__ at swimlane __swimlane__ at board __board__",
+ "activity-checklist-uncompleted-card": "uncompleted the checklist %s",
+ "add-attachment": "新增附件",
+ "add-board": "新增看板",
+ "add-card": "新增卡片",
+ "add-swimlane": "新增泳道圖",
+ "add-subtask": "新增子任務",
+ "add-checklist": "新增待辦清單",
+ "add-checklist-item": "新增項目",
+ "add-cover": "新增封面",
+ "add-label": "新增標籤",
+ "add-list": "新增清單",
+ "add-members": "新增成員",
+ "added": "已新增",
+ "addMemberPopup-title": "成員",
+ "admin": "管理員",
+ "admin-desc": "可以瀏覽並編輯卡片,移除成員,並且更改該看板的設定",
+ "admin-announcement": "公告",
+ "admin-announcement-active": "啟用全系統範圍公告",
+ "admin-announcement-title": "來自 Administrator 的公告",
+ "all-boards": "全部看板",
+ "and-n-other-card": "和其他 __count__ 個卡片",
+ "and-n-other-card_plural": "和其他 __count__ 個卡片",
+ "apply": "送出",
+ "app-is-offline": "請稍候,資料讀取中,重整頁面可能會導致資料遺失。如果讀取一直沒有進度, 請檢查伺服器是否還在運行。",
+ "archive": "移到封存",
+ "archive-all": "全部移到封存",
+ "archive-board": "將看板移到封存",
+ "archive-card": "將卡片移到封存",
+ "archive-list": "將清單移到封存",
+ "archive-swimlane": "將泳道圖移到封存",
+ "archive-selection": "將選取內容移到封存",
+ "archiveBoardPopup-title": "將看板移到封存?",
+ "archived-items": "封存",
+ "archived-boards": "封存中的看板",
+ "restore-board": "還原看板",
+ "no-archived-boards": "封存中沒有看板。",
+ "archives": "封存",
+ "template": "模板",
+ "templates": "模板",
+ "assign-member": "分配成員",
+ "attached": "附加",
+ "attachment": "附件",
+ "attachment-delete-pop": "刪除附件的操作無法還原。",
+ "attachmentDeletePopup-title": "刪除附件?",
+ "attachments": "附件",
+ "auto-watch": "新增看板時自動加入觀看",
+ "avatar-too-big": "頭像檔案太大(最大 70 KB)",
+ "back": "返回",
+ "board-change-color": "更換顏色",
+ "board-nb-stars": "%s 星號標記",
+ "board-not-found": "看板不存在",
+ "board-private-info": "此看板將被設為 <strong>私密</strong>.",
+ "board-public-info": "此看板將被設為 <strong>公開</strong>.",
+ "boardChangeColorPopup-title": "更換看板背景",
+ "boardChangeTitlePopup-title": "重新命名看板",
+ "boardChangeVisibilityPopup-title": "改變觀看權限",
+ "boardChangeWatchPopup-title": "更改觀察",
+ "boardMenuPopup-title": "看板設定",
+ "boards": "看板",
+ "board-view": "看板視圖",
+ "board-view-cal": "行事曆",
+ "board-view-swimlanes": "泳道圖",
+ "board-view-lists": "清單",
+ "bucket-example": "例如「目標清單」",
+ "cancel": "取消",
+ "card-archived": "此卡片已移到封存。",
+ "board-archived": "此看板已移到封存。",
+ "card-comments-title": "該卡片有 %s 則評論",
+ "card-delete-notice": "刪除是永久性的,您將遺失該卡片的所有相關操作記錄。",
+ "card-delete-pop": "所有活動中的內容都將被刪除,此操作無法撤消,您將無法重新開啟此卡片。",
+ "card-delete-suggest-archive": "您可以將卡片移到封存來將卡片從看板上移除,並且保留其中的活動。",
+ "card-due": "期限",
+ "card-due-on": "期限日",
+ "card-spent": "耗費時間",
+ "card-edit-attachments": "編輯附件",
+ "card-edit-custom-fields": "編輯自訂欄位",
+ "card-edit-labels": "編輯標籤",
+ "card-edit-members": "編輯成員",
+ "card-labels-title": "更改該卡片上的標籤",
+ "card-members-title": "在該卡片中新增或移除看板成員",
+ "card-start": "開始",
+ "card-start-on": "開始日",
+ "cardAttachmentsPopup-title": "附件來源",
+ "cardCustomField-datePopup-title": "更改日期",
+ "cardCustomFieldsPopup-title": "編輯自訂欄位",
+ "cardDeletePopup-title": "刪除卡片?",
+ "cardDetailsActionsPopup-title": "卡片動作",
+ "cardLabelsPopup-title": "標籤",
+ "cardMembersPopup-title": "成員",
+ "cardMorePopup-title": "更多",
+ "cardTemplatePopup-title": "新增模板",
+ "cards": "卡片",
+ "cards-count": "卡片",
+ "casSignIn": "以 CAS 登入",
+ "cardType-card": "卡片",
+ "cardType-linkedCard": "已連結卡片",
+ "cardType-linkedBoard": "已連結看板",
+ "change": "變更",
+ "change-avatar": "更換大頭貼",
+ "change-password": "變更密碼",
+ "change-permissions": "更改許可權",
+ "change-settings": "更改設定",
+ "changeAvatarPopup-title": "更換大頭貼",
+ "changeLanguagePopup-title": "更改語言",
+ "changePasswordPopup-title": "變更密碼",
+ "changePermissionsPopup-title": "更改許可權",
+ "changeSettingsPopup-title": "更改設定",
+ "subtasks": "子任務",
+ "checklists": "待辦清單",
+ "click-to-star": "點擊以添加標記於此看板。",
+ "click-to-unstar": "點擊以移除標記於此看板。",
+ "clipboard": "剪貼簿貼上或者拖曳檔案",
+ "close": "關閉",
+ "close-board": "關閉看板",
+ "close-board-pop": "您可以通過點擊主頁眉中的「封存」按鈕來恢復看板。",
+ "color-black": "黑色",
+ "color-blue": "藍色",
+ "color-crimson": "艷紅",
+ "color-darkgreen": "暗綠",
+ "color-gold": "金色",
+ "color-gray": "灰色",
+ "color-green": "綠色",
+ "color-indigo": "紫藍",
+ "color-lime": "綠黃",
+ "color-magenta": "洋紅",
+ "color-mistyrose": "玫瑰粉",
+ "color-navy": "藏青",
+ "color-orange": "橙色",
+ "color-paleturquoise": "淡藍綠",
+ "color-peachpuff": "桃色",
+ "color-pink": "粉紅",
+ "color-plum": "梅色",
+ "color-purple": "紫色",
+ "color-red": "紅色",
+ "color-saddlebrown": "馬鞍棕",
+ "color-silver": "銀色",
+ "color-sky": "天藍",
+ "color-slateblue": "青藍",
+ "color-white": "白色",
+ "color-yellow": "黃色",
+ "unset-color": "未設置",
+ "comment": "評論",
+ "comment-placeholder": "撰寫評論",
+ "comment-only": "只能發表評論",
+ "comment-only-desc": "只能在卡片上發表評論",
+ "no-comments": "沒有評論",
+ "no-comments-desc": "無法檢視評論和活動。",
+ "computer": "從本機上傳",
+ "confirm-subtask-delete-dialog": "你確定要刪除子任務嗎?",
+ "confirm-checklist-delete-dialog": "你確定要刪除待辦清單嗎?",
+ "copy-card-link-to-clipboard": "將卡片連結複製到剪貼簿",
+ "linkCardPopup-title": "連結卡片",
+ "searchElementPopup-title": "搜尋",
+ "copyCardPopup-title": "複製卡片",
+ "copyChecklistToManyCardsPopup-title": "複製待辦清單的樣板到多個卡片",
+ "copyChecklistToManyCardsPopup-instructions": "使用此 JSON 格式來表示目標卡片的標題和描述",
+ "copyChecklistToManyCardsPopup-format": "[ {\\\"title\\\": \\\"第一個卡片標題\\\", \\\"description\\\":\\\"第一個卡片描述\\\"}, {\\\"title\\\":\\\"第二個卡片標題\\\",\\\"description\\\":\\\"第二個卡片描述\\\"},{\\\"title\\\":\\\"最後一個卡片標題\\\",\\\"description\\\":\\\"最後一個卡片描述\\\"} ]",
+ "create": "建立",
+ "createBoardPopup-title": "建立看板",
+ "chooseBoardSourcePopup-title": "匯入看板",
+ "createLabelPopup-title": "建立標籤",
+ "createCustomField": "建立欄位",
+ "createCustomFieldPopup-title": "建立欄位",
+ "current": "目前",
+ "custom-field-delete-pop": "此操作將會從所有卡片中移除自訂欄位以及銷毀歷史紀錄,並且無法撤消。",
+ "custom-field-checkbox": "複選框",
+ "custom-field-date": "日期",
+ "custom-field-dropdown": "下拉式選單",
+ "custom-field-dropdown-none": "(無)",
+ "custom-field-dropdown-options": "清單選項",
+ "custom-field-dropdown-options-placeholder": "按下 Enter 新增更多選項",
+ "custom-field-dropdown-unknown": "(未知)",
+ "custom-field-number": "數字",
+ "custom-field-text": "文字",
+ "custom-fields": "自訂欄位",
+ "date": "日期",
+ "decline": "拒絕",
+ "default-avatar": "預設大頭貼",
+ "delete": "刪除",
+ "deleteCustomFieldPopup-title": "刪除自訂欄位?",
+ "deleteLabelPopup-title": "刪除標籤?",
+ "description": "描述",
+ "disambiguateMultiLabelPopup-title": "清除標籤動作歧義",
+ "disambiguateMultiMemberPopup-title": "清除成員動作歧義",
+ "discard": "取消",
+ "done": "完成",
+ "download": "下載",
+ "edit": "編輯",
+ "edit-avatar": "更換大頭貼",
+ "edit-profile": "編輯個人資料",
+ "edit-wip-limit": "編輯 WIP 限制",
+ "soft-wip-limit": "軟性 WIP 限制",
+ "editCardStartDatePopup-title": "變更開始日期",
+ "editCardDueDatePopup-title": "變更到期日期",
+ "editCustomFieldPopup-title": "編輯欄位",
+ "editCardSpentTimePopup-title": "變更耗費時間",
+ "editLabelPopup-title": "更改標籤",
+ "editNotificationPopup-title": "更改通知",
+ "editProfilePopup-title": "編輯個人資料",
+ "email": "電子郵件",
+ "email-enrollAccount-subject": "您在 __siteName__ 的帳號已經建立",
+ "email-enrollAccount-text": "親愛的 __user__,\n\n點選下面的連結,即刻開始使用這項服務。\n\n__url__\n\n謝謝。",
+ "email-fail": "郵件寄送失敗",
+ "email-fail-text": "嘗試發送郵件時出現錯誤",
+ "email-invalid": "電子郵件地址錯誤",
+ "email-invite": "寄送郵件邀請",
+ "email-invite-subject": "__inviter__ 向您發出邀請",
+ "email-invite-text": "親愛的 __user__,\n\n__inviter__ 邀請您加入看板 \"__board__\" 參與協作。\n\n請點選下面的連結訪問看板:\n\n__url__\n\n謝謝。",
+ "email-resetPassword-subject": "重設您在 __siteName__ 的密碼",
+ "email-resetPassword-text": "親愛的 __user__,\n\n點選下面的連結,重置您的密碼:\n\n__url__\n\n謝謝。",
+ "email-sent": "郵件已寄送",
+ "email-verifyEmail-subject": "驗證您在 __siteName__ 的電子郵件",
+ "email-verifyEmail-text": "親愛的 __user__,\n\n點選下面的連結,驗證您的電子郵件地址:\n\n__url__\n\n謝謝。",
+ "enable-wip-limit": "啟用 WIP 限制",
+ "error-board-doesNotExist": "該看板不存在",
+ "error-board-notAdmin": "需要成為管理員才能執行此操作",
+ "error-board-notAMember": "需要成為看板成員才能執行此操作",
+ "error-json-malformed": "不是有效的 JSON",
+ "error-json-schema": "JSON 資料沒有用正確的格式包含合適的資訊",
+ "error-list-doesNotExist": "不存在此列表",
+ "error-user-doesNotExist": "該使用者不存在",
+ "error-user-notAllowSelf": "不允許對自己執行此操作",
+ "error-user-notCreated": "該使用者未能成功建立",
+ "error-username-taken": "這個使用者名稱已被使用",
+ "error-email-taken": "電子信箱已被使用",
+ "export-board": "匯出看板",
+ "filter": "篩選",
+ "filter-cards": "篩選卡片",
+ "filter-clear": "清除篩選條件",
+ "filter-no-label": "沒有標籤",
+ "filter-no-member": "沒有成員",
+ "filter-no-custom-fields": "沒有自訂欄位",
+ "filter-on": "篩選器已開啟",
+ "filter-on-desc": "你正在篩選該看板上的卡片,點此編輯篩選條件。",
+ "filter-to-selection": "選擇的篩選條件",
+ "advanced-filter-label": "進階篩選",
+ "advanced-filter-description": "Advanced Filter allows to write a string containing following operators: == != <= >= && || ( ) A space is used as a separator between the Operators. You can filter for all Custom Fields by typing their names and values. For Example: Field1 == Value1. Note: If fields or values contains spaces, you need to encapsulate them into single quotes. For Example: 'Field 1' == 'Value 1'. For single control characters (' \\/) to be skipped, you can use \\. For example: Field1 == I\\'m. Also you can combine multiple conditions. For Example: F1 == V1 || F1 == V2. Normally all operators are interpreted from left to right. You can change the order by placing brackets. For Example: F1 == V1 && ( F2 == V2 || F2 == V3 ). Also you can search text fields using regex: F1 == /Tes.*/i",
+ "fullname": "全稱",
+ "header-logo-title": "返回您的看板頁面",
+ "hide-system-messages": "隱藏系統訊息",
+ "headerBarCreateBoardPopup-title": "建立看板",
+ "home": "首頁",
+ "import": "匯入",
+ "link": "連結",
+ "import-board": "匯入看板",
+ "import-board-c": "匯入看板",
+ "import-board-title-trello": "匯入在 Trello 的看板",
+ "import-board-title-wekan": "從上次的匯出檔匯入看板",
+ "import-sandstorm-backup-warning": "Do not delete data you import from original exported board or Trello before checking does this grain close and open again, or do you get Board not found error, that means data loss.",
+ "import-sandstorm-warning": "匯入資料將會移除所有現有的看版資料,並取代成此次匯入的看板資料",
+ "from-trello": "來自 Trello",
+ "from-wekan": "從上次的匯出檔",
+ "import-board-instruction-trello": "在你的Trello看板中,點選“功能表”,然後選擇“更多”,“列印與匯出”,“匯出為 JSON” 並拷貝結果文本",
+ "import-board-instruction-wekan": "In your board, go to 'Menu', then 'Export board', and copy the text in the downloaded file.",
+ "import-board-instruction-about-errors": "If you get errors when importing board, sometimes importing still works, and board is at All Boards page.",
+ "import-json-placeholder": "貼上您有效的 JSON 資料至此",
+ "import-map-members": "複製成員",
+ "import-members-map": "Your imported board has some members. Please map the members you want to import to your users",
+ "import-show-user-mapping": "核對成員映射",
+ "import-user-select": "選擇現有使用者作為成員",
+ "importMapMembersAddPopup-title": "選擇成員",
+ "info": "版本",
+ "initials": "縮寫",
+ "invalid-date": "無效的日期",
+ "invalid-time": "無效的時間",
+ "invalid-user": "無效的使用者",
+ "joined": "關聯",
+ "just-invited": "您剛剛被邀請加入此看板",
+ "keyboard-shortcuts": "鍵盤快速鍵",
+ "label-create": "建立標籤",
+ "label-default": "%s 標籤 (預設)",
+ "label-delete-pop": "此操作無法還原,這將會刪除該標籤並清除它的歷史記錄。",
+ "labels": "標籤",
+ "language": "語言",
+ "last-admin-desc": "你不能更改角色,因為至少需要一名管理員。",
+ "leave-board": "離開看板",
+ "leave-board-pop": "Are you sure you want to leave __boardTitle__? You will be removed from all cards on this board.",
+ "leaveBoardPopup-title": "離開看板?",
+ "link-card": "關聯至該卡片",
+ "list-archive-cards": "封存清單內所有的卡片",
+ "list-archive-cards-pop": "This will remove all the cards in this list from the board. To view cards in Archive and bring them back to the board, click “Menu” > “Archive”.",
+ "list-move-cards": "移動清單中的所有卡片",
+ "list-select-cards": "選擇清單中的所有卡片",
+ "set-color-list": "設定顏色",
+ "listActionPopup-title": "清單操作",
+ "swimlaneActionPopup-title": "Swimlane Actions",
+ "swimlaneAddPopup-title": "在下面新增泳道流程圖",
+ "listImportCardPopup-title": "匯入 Trello 卡片",
+ "listMorePopup-title": "更多",
+ "link-list": "連結到這個清單",
+ "list-delete-pop": "所有的動作將從活動動態中被移除且您將無法再開啟該清單\b。此操作無法復原。",
+ "list-delete-suggest-archive": "You can move a list to Archive to remove it from the board and preserve the activity.",
+ "lists": "清單",
+ "swimlanes": "泳道圖",
+ "log-out": "登出",
+ "log-in": "登入",
+ "loginPopup-title": "登入",
+ "memberMenuPopup-title": "成員更改",
+ "members": "成員",
+ "menu": "選單",
+ "move-selection": "移動被選擇的項目",
+ "moveCardPopup-title": "移動卡片",
+ "moveCardToBottom-title": "移至最下面",
+ "moveCardToTop-title": "移至最上面",
+ "moveSelectionPopup-title": "移動選取的項目",
+ "multi-selection": "多選",
+ "multi-selection-on": "多選啟用",
+ "muted": "靜音",
+ "muted-info": "您將不會收到有關這個看板的任何訊息",
+ "my-boards": "我的看板",
+ "name": "名稱",
+ "no-archived-cards": "沒有封存的卡片",
+ "no-archived-lists": "沒有封存的清單",
+ "no-archived-swimlanes": "沒有封存的泳道流程圖",
+ "no-results": "無結果",
+ "normal": "普通",
+ "normal-desc": "可以建立以及編輯卡片,無法更改。",
+ "not-accepted-yet": "邀請尚未接受",
+ "notify-participate": "接收與你有關的卡片更新",
+ "notify-watch": "接收您關注的看板、清單或卡片的更新",
+ "optional": "選擇性的",
+ "or": "或",
+ "page-maybe-private": "本頁面被設為私有. 您必須 <a href='%s'>登入</a>以瀏覽其中內容。",
+ "page-not-found": "頁面不存在。",
+ "password": "密碼",
+ "paste-or-dragdrop": "從剪貼簿貼上,或者拖曳檔案到它上面 (僅限於圖片)",
+ "participating": "參與",
+ "preview": "預覽",
+ "previewAttachedImagePopup-title": "預覽",
+ "previewClipboardImagePopup-title": "預覽",
+ "private": "私有",
+ "private-desc": "該看板將被設為私有。只有該看板成員才可以進行檢視和編輯。",
+ "profile": "資料",
+ "public": "公開",
+ "public-desc": "該看板將被公開。任何人均可透過連結檢視,並且將對Google和其他搜尋引擎開放。只有加入至該看板的成員才可進行編輯。",
+ "quick-access-description": "被星號標記的看板在導航列中新增快速啟動方式",
+ "remove-cover": "移除封面",
+ "remove-from-board": "從看板中刪除",
+ "remove-label": "移除標籤",
+ "listDeletePopup-title": "刪除標籤",
+ "remove-member": "移除成員",
+ "remove-member-from-card": "從該卡片中移除",
+ "remove-member-pop": "確定從 __boardTitle__ 中移除 __name__ (__username__) 嗎? 該成員將被從該看板的所有卡片中移除,同時他會收到一則提醒。",
+ "removeMemberPopup-title": "刪除成員?",
+ "rename": "重新命名",
+ "rename-board": "重新命名看板",
+ "restore": "還原",
+ "save": "儲存",
+ "search": "搜尋",
+ "rules": "規則",
+ "search-cards": "搜尋看板內的卡片標題及描述",
+ "search-example": "Text to search for?",
+ "select-color": "選擇顏色",
+ "set-wip-limit-value": "Set a limit for the maximum number of tasks in this list",
+ "setWipLimitPopup-title": "設定 WIP 限制",
+ "shortcut-assign-self": "分配目前卡片給自己",
+ "shortcut-autocomplete-emoji": "自動完成表情符號",
+ "shortcut-autocomplete-members": "自動補齊成員",
+ "shortcut-clear-filters": "清空全部過濾條件",
+ "shortcut-close-dialog": "關閉對話方塊",
+ "shortcut-filter-my-cards": "過濾我的卡片",
+ "shortcut-show-shortcuts": "顯示此快速鍵清單",
+ "shortcut-toggle-filterbar": "切換過濾程式邊欄",
+ "shortcut-toggle-sidebar": "切換面板邊欄",
+ "show-cards-minimum-count": "顯示卡片數量,當內容超過數量",
+ "sidebar-open": "開啟側邊欄",
+ "sidebar-close": "關閉側邊欄",
+ "signupPopup-title": "建立帳戶",
+ "star-board-title": "點此標記該看板,它將會出現在您的看板列表上方。",
+ "starred-boards": "已標記看板",
+ "starred-boards-description": "已標記看板將會出現在您的看板列表上方。",
+ "subscribe": "訂閱",
+ "team": "團隊",
+ "this-board": "這個看板",
+ "this-card": "這個卡片",
+ "spent-time-hours": "耗費時間 (小時)",
+ "overtime-hours": "超時 (小時)",
+ "overtime": "超時",
+ "has-overtime-cards": "有卡片已超時",
+ "has-spenttime-cards": "Has spent time cards",
+ "time": "時間",
+ "title": "標題",
+ "tracking": "追蹤",
+ "tracking-info": "你將會收到與你有關的卡片的所有變更通知",
+ "type": "類型",
+ "unassign-member": "取消分配成員",
+ "unsaved-description": "未儲存的描述",
+ "unwatch": "取消觀察",
+ "upload": "上傳",
+ "upload-avatar": "上傳大頭貼",
+ "uploaded-avatar": "大頭貼已經上傳",
+ "username": "使用者名稱",
+ "view-it": "檢視",
+ "warn-list-archived": "警告: 卡片位在封存的清單中",
+ "watch": "觀察",
+ "watching": "觀察中",
+ "watching-info": "你將會收到關於這個看板所有的變更通知",
+ "welcome-board": "歡迎進入看板",
+ "welcome-swimlane": "里程碑1",
+ "welcome-list1": "基本",
+ "welcome-list2": "進階",
+ "card-templates-swimlane": "卡片模板",
+ "list-templates-swimlane": "清單模板",
+ "board-templates-swimlane": "看板模板",
+ "what-to-do": "要做什麼?",
+ "wipLimitErrorPopup-title": "Invalid WIP Limit",
+ "wipLimitErrorPopup-dialog-pt1": "The number of tasks in this list is higher than the WIP limit you've defined.",
+ "wipLimitErrorPopup-dialog-pt2": "Please move some tasks out of this list, or set a higher WIP limit.",
+ "admin-panel": "控制台",
+ "settings": "設定",
+ "people": "成員",
+ "registration": "註冊",
+ "disable-self-registration": "關閉自我註冊",
+ "invite": "邀請",
+ "invite-people": "邀請成員",
+ "to-boards": "至看板()",
+ "email-addresses": "電子郵件",
+ "smtp-host-description": "SMTP 外寄郵件伺服器",
+ "smtp-port-description": "SMTP 外寄郵件伺服器埠號",
+ "smtp-tls-description": "對 SMTP 啟動 TLS 支援",
+ "smtp-host": "SMTP 位置",
+ "smtp-port": "SMTP 埠號",
+ "smtp-username": "使用者名稱",
+ "smtp-password": "密碼",
+ "smtp-tls": "支援 TLS",
+ "send-from": "從",
+ "send-smtp-test": "傳送測試郵件給自己",
+ "invitation-code": "邀請碼",
+ "email-invite-register-subject": "__inviter__ 向您發出邀請",
+ "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to kanban board for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.",
+ "email-smtp-test-subject": "SMTP 測試郵件",
+ "email-smtp-test-text": "您已成功寄送郵件",
+ "error-invitation-code-not-exist": "邀請碼不存在",
+ "error-notAuthorized": "沒有適合的權限觀看",
+ "outgoing-webhooks": "設定 Webhooks",
+ "outgoingWebhooksPopup-title": "設定 Webhooks",
+ "boardCardTitlePopup-title": "卡片標題過濾器",
+ "new-outgoing-webhook": "New Outgoing Webhook",
+ "no-name": "(未知)",
+ "Node_version": "Node 版本",
+ "OS_Arch": "系統架構",
+ "OS_Cpus": "系統\b CPU 數",
+ "OS_Freemem": "undefined",
+ "OS_Loadavg": "系統平均讀取",
+ "OS_Platform": "系統平臺",
+ "OS_Release": "系統發佈版本",
+ "OS_Totalmem": "系統總記憶體",
+ "OS_Type": "系統類型",
+ "OS_Uptime": "系統運行時間",
+ "days": "天",
+ "hours": "小時",
+ "minutes": "分鐘",
+ "seconds": "秒",
+ "show-field-on-card": "在卡片顯示這個欄位",
+ "automatically-field-on-card": "自動在所有卡片建立欄位",
+ "showLabel-field-on-card": "在迷你卡中顯示欄位標籤",
+ "yes": "是",
+ "no": "否",
+ "accounts": "帳號",
+ "accounts-allowEmailChange": "准許變更電子信箱",
+ "accounts-allowUserNameChange": "允許修改使用者名稱",
+ "createdAt": "建立於",
+ "verified": "已驗證",
+ "active": "Active",
+ "card-received": "接收",
+ "card-received-on": "接收於",
+ "card-end": "結束",
+ "card-end-on": "結束於",
+ "editCardReceivedDatePopup-title": "更改接收日期",
+ "editCardEndDatePopup-title": "更改結束日期",
+ "setCardColorPopup-title": "設定顏色",
+ "setCardActionsColorPopup-title": "選擇顏色",
+ "setSwimlaneColorPopup-title": "選擇顏色",
+ "setListColorPopup-title": "選擇顏色",
+ "assigned-by": "分配者",
+ "requested-by": "請求者",
+ "board-delete-notice": "Deleting is permanent. You will lose all lists, cards and actions associated with this board.",
+ "delete-board-confirm-popup": "All lists, cards, labels, and activities will be deleted and you won't be able to recover the board contents. There is no undo.",
+ "boardDeletePopup-title": "刪除看板?",
+ "delete-board": "刪除看板",
+ "default-subtasks-board": "Subtasks for __board__ board",
+ "default": "預設值",
+ "queue": "列隊",
+ "subtask-settings": "子任務設定",
+ "boardSubtaskSettingsPopup-title": "看板子任務設定",
+ "show-subtasks-field": "Cards can have subtasks",
+ "deposit-subtasks-board": "Deposit subtasks to this board:",
+ "deposit-subtasks-list": "Landing list for subtasks deposited here:",
+ "show-parent-in-minicard": "Show parent in minicard:",
+ "prefix-with-full-path": "Prefix with full path",
+ "prefix-with-parent": "Prefix with parent",
+ "subtext-with-full-path": "Subtext with full path",
+ "subtext-with-parent": "Subtext with parent",
+ "change-card-parent": "Change card's parent",
+ "parent-card": "Parent card",
+ "source-board": "來源看板",
+ "no-parent": "Don't show parent",
+ "activity-added-label": "增加標籤%s至%s",
+ "activity-removed-label": "刪除標籤%s位於%s",
+ "activity-delete-attach": "刪除%s的附件",
+ "activity-added-label-card": "新增標籤%s",
+ "activity-removed-label-card": "刪除標籤%s",
+ "activity-delete-attach-card": "刪除附件",
+ "activity-set-customfield": "set custom field '%s' to '%s' in %s",
+ "activity-unset-customfield": "unset custom field '%s' in %s",
+ "r-rule": "規則",
+ "r-add-trigger": "Add trigger",
+ "r-add-action": "Add action",
+ "r-board-rules": "Board rules",
+ "r-add-rule": "Add rule",
+ "r-view-rule": "View rule",
+ "r-delete-rule": "Delete rule",
+ "r-new-rule-name": "New rule title",
+ "r-no-rules": "No rules",
+ "r-when-a-card": "When a card",
+ "r-is": "是",
+ "r-is-moved": "被刪除",
+ "r-added-to": "增加到",
+ "r-removed-from": "Removed from",
+ "r-the-board": "看板",
+ "r-list": "清單",
+ "set-filter": "Set Filter",
+ "r-moved-to": "Moved to",
+ "r-moved-from": "Moved from",
+ "r-archived": "Moved to Archive",
+ "r-unarchived": "Restored from Archive",
+ "r-a-card": "卡片",
+ "r-when-a-label-is": "When a label is",
+ "r-when-the-label": "When the label",
+ "r-list-name": "清單名稱",
+ "r-when-a-member": "When a member is",
+ "r-when-the-member": "When the member",
+ "r-name": "名稱",
+ "r-when-a-attach": "When an attachment",
+ "r-when-a-checklist": "When a checklist is",
+ "r-when-the-checklist": "When the checklist",
+ "r-completed": "Completed",
+ "r-made-incomplete": "Made incomplete",
+ "r-when-a-item": "When a checklist item is",
+ "r-when-the-item": "When the checklist item",
+ "r-checked": "Checked",
+ "r-unchecked": "Unchecked",
+ "r-move-card-to": "Move card to",
+ "r-top-of": "Top of",
+ "r-bottom-of": "Bottom of",
+ "r-its-list": "its list",
+ "r-archive": "移到封存",
+ "r-unarchive": "Restore from Archive",
+ "r-card": "卡片",
+ "r-add": "新增",
+ "r-remove": "Remove",
+ "r-label": "標籤",
+ "r-member": "member",
+ "r-remove-all": "Remove all members from the card",
+ "r-set-color": "Set color to",
+ "r-checklist": "checklist",
+ "r-check-all": "Check all",
+ "r-uncheck-all": "Uncheck all",
+ "r-items-check": "items of checklist",
+ "r-check": "Check",
+ "r-uncheck": "Uncheck",
+ "r-item": "item",
+ "r-of-checklist": "of checklist",
+ "r-send-email": "寄送郵件",
+ "r-to": "到",
+ "r-subject": "主題",
+ "r-rule-details": "詳細規則",
+ "r-d-move-to-top-gen": "將卡片移到所屬清單頂部",
+ "r-d-move-to-top-spec": "將卡片移到清單頂部",
+ "r-d-move-to-bottom-gen": "將卡片移到所屬清單底部",
+ "r-d-move-to-bottom-spec": "將卡片移到清單底部",
+ "r-d-send-email": "寄送郵件",
+ "r-d-send-email-to": "到",
+ "r-d-send-email-subject": "主題",
+ "r-d-send-email-message": "訊息",
+ "r-d-archive": "封存卡片",
+ "r-d-unarchive": "恢復封存的卡片",
+ "r-d-add-label": "新增標籤",
+ "r-d-remove-label": "移除標籤",
+ "r-create-card": "創建新卡片",
+ "r-in-list": "在清單",
+ "r-in-swimlane": "在泳道流程圖",
+ "r-d-add-member": "新增成員",
+ "r-d-remove-member": "移除成員",
+ "r-d-remove-all-member": "移除所有成員",
+ "r-d-check-all": "Check all items of a list",
+ "r-d-uncheck-all": "Uncheck all items of a list",
+ "r-d-check-one": "Check item",
+ "r-d-uncheck-one": "Uncheck item",
+ "r-d-check-of-list": "of checklist",
+ "r-d-add-checklist": "新增待辦清單",
+ "r-d-remove-checklist": "移除待辦清單",
+ "r-by": "by",
+ "r-add-checklist": "新增待辦清單",
+ "r-with-items": "with items",
+ "r-items-list": "item1,item2,item3",
+ "r-add-swimlane": "新增泳道流程圖",
+ "r-swimlane-name": "泳道流程圖名稱",
+ "r-board-note": "Note: leave a field empty to match every possible value.",
+ "r-checklist-note": "Note: checklist's items have to be written as comma separated values.",
+ "r-when-a-card-is-moved": "When a card is moved to another list",
+ "r-set": "Set",
+ "r-update": "更新",
+ "r-datefield": "日期欄位",
+ "r-df-start-at": "開始",
+ "r-df-due-at": "due",
+ "r-df-end-at": "結束",
+ "r-df-received-at": "received",
+ "r-to-current-datetime": "to current date/time",
+ "r-remove-value-from": "Remove value from",
+ "ldap": "LDAP",
+ "oauth2": "OAuth2",
+ "cas": "CAS",
+ "authentication-method": "Authentication method",
+ "authentication-type": "Authentication type",
+ "custom-product-name": "自訂產品名稱",
+ "layout": "排版",
+ "hide-logo": "隱藏圖示",
+ "add-custom-html-after-body-start": "Add Custom HTML after <body> start",
+ "add-custom-html-before-body-end": "Add Custom HTML before </body> end",
+ "error-undefined": "Something went wrong",
+ "error-ldap-login": "An error occurred while trying to login",
+ "display-authentication-method": "Display Authentication Method",
+ "default-authentication-method": "Default Authentication Method",
+ "duplicate-board": "重複的看板",
+ "people-number": "人數是:",
+ "swimlaneDeletePopup-title": "刪除泳道流程圖?",
+ "swimlane-delete-pop": "All actions will be removed from the activity feed and you won't be able to recover the swimlane. There is no undo.",
+ "restore-all": "全部還原",
+ "delete-all": "全部刪除",
+ "loading": "讀取中,請稍後",
+ "previous_as": "last time was",
+ "act-a-dueAt": "modified due time to \nWhen: __timeValue__\nWhere: __card__\n previous due was __timeOldValue__",
+ "act-a-endAt": "modified ending time to __timeValue__ from (__timeOldValue__)",
+ "act-a-startAt": "modified starting time to __timeValue__ from (__timeOldValue__)",
+ "act-a-receivedAt": "modified received time to __timeValue__ from (__timeOldValue__)",
+ "a-dueAt": "modified due time to be",
+ "a-endAt": "modified ending time to be",
+ "a-startAt": "modified starting time to be",
+ "a-receivedAt": "modified received time to be",
+ "almostdue": "current due time %s is approaching",
+ "pastdue": "current due time %s is past",
+ "duenow": "current due time %s is today",
+ "act-withDue": "__card__ due reminders [__board__]",
+ "act-almostdue": "was reminding the current due (__timeValue__) of __card__ is approaching",
+ "act-pastdue": "was reminding the current due (__timeValue__) of __card__ is past",
+ "act-duenow": "was reminding the current due (__timeValue__) of __card__ is now",
+ "act-atUserComment": "You were mentioned in [__board__] __card__",
+ "delete-user-confirm-popup": "Are you sure you want to delete this account? There is no undo.",
+ "accounts-allowUserDelete": "Allow users to self delete their account",
+ "hide-minicard-label-text": "Hide minicard label text"
+}
diff --git a/models/users.js b/models/users.js
index 0af82fa6..46e56ad6 100644
--- a/models/users.js
+++ b/models/users.js
@@ -109,7 +109,14 @@ Users.attachSchema(
},
'profile.hiddenSystemMessages': {
/**
- * does the user wants to hide system messages?
+ * does the user want to hide system messages?
+ */
+ type: Boolean,
+ optional: true,
+ },
+ 'profile.hiddenMinicardLabelText': {
+ /**
+ * does the user want to hide minicard label texts?
*/
type: Boolean,
optional: true,
@@ -359,6 +366,11 @@ Users.helpers({
return profile.hiddenSystemMessages || false;
},
+ hasHiddenMinicardLabelText() {
+ const profile = this.profile || {};
+ return profile.hiddenMinicardLabelText || false;
+ },
+
getEmailBuffer() {
const { emailBuffer = [] } = this.profile || {};
return emailBuffer;
@@ -462,6 +474,14 @@ Users.mutations({
};
},
+ toggleLabelText(value = false) {
+ return {
+ $set: {
+ 'profile.hiddenMinicardLabelText': !value,
+ },
+ };
+ },
+
addNotification(activityId) {
return {
$addToSet: {
@@ -525,6 +545,10 @@ Meteor.methods({
const user = Meteor.user();
user.toggleSystem(user.hasHiddenSystemMessages());
},
+ toggleMinicardLabelText() {
+ const user = Meteor.user();
+ user.toggleLabelText(user.hasHiddenMinicardLabelText());
+ },
changeLimitToShowCardsCount(limit) {
check(limit, Number);
Meteor.user().setShowCardsCountAt(limit);