mirror of
https://github.com/wekan/wekan.git
synced 2025-04-20 12:07:11 -04:00
Merge branch 'devel' of https://github.com/BaobabCoder/wekan into BaobabCoder-devel
This commit is contained in:
commit
fc9c27d150
32 changed files with 241 additions and 97 deletions
|
@ -1,3 +1,11 @@
|
|||
# Upcoming Wekan release
|
||||
|
||||
This release adds the following new features:
|
||||
|
||||
* [Change the way to delete a list (card-like)](https://github.com/wekan/wekan/pull/1050)
|
||||
|
||||
Thanks to GitHub users BaobabCoder for contributions.
|
||||
|
||||
# v0.23 2017-05-21 Wekan release
|
||||
|
||||
This release adds the following new features:
|
||||
|
|
|
@ -36,7 +36,7 @@ template(name="listActionPopup")
|
|||
li: a.js-close-list {{_ 'archive-list'}}
|
||||
hr
|
||||
ul.pop-over-list
|
||||
li: a.js-remove-list {{_ 'remove-list'}}
|
||||
li: a.js-more {{_ 'listMorePopup-title'}}
|
||||
|
||||
template(name="boardLists")
|
||||
ul.pop-over-list
|
||||
|
@ -46,3 +46,20 @@ template(name="boardLists")
|
|||
a.disabled {{title}} ({{_ 'current'}})
|
||||
else
|
||||
a.js-select-list= title
|
||||
|
||||
template(name="listMorePopup")
|
||||
p.quiet
|
||||
span.clearfix
|
||||
span {{_ 'link-list'}}
|
||||
= ' '
|
||||
i.fa.colorful(class="{{#if board.isPublic}}fa-globe{{else}}fa-lock{{/if}}")
|
||||
input.inline-input(type="text" readonly value="{{ rootUrl }}")
|
||||
| {{_ 'added'}}
|
||||
span.date(title=list.createdAt) {{ moment createdAt 'LLL' }}
|
||||
a.js-delete {{_ 'delete'}}
|
||||
|
||||
template(name="listDeletePopup")
|
||||
p {{_ "list-delete-pop"}}
|
||||
unless archived
|
||||
p {{_ "list-delete-suggest-archive"}}
|
||||
button.js-confirm.negate.full(type="submit") {{_ 'delete'}}
|
||||
|
|
|
@ -1,69 +1,72 @@
|
|||
BlazeComponent.extendComponent({
|
||||
editTitle(evt) {
|
||||
evt.preventDefault();
|
||||
const newTitle = this.childComponents('inlinedForm')[0].getValue().trim();
|
||||
const list = this.currentData();
|
||||
if (newTitle) {
|
||||
list.rename(newTitle.trim());
|
||||
}
|
||||
},
|
||||
editTitle(evt) {
|
||||
evt.preventDefault();
|
||||
const newTitle = this.childComponents('inlinedForm')[0].getValue().trim();
|
||||
const list = this.currentData();
|
||||
if (newTitle) {
|
||||
list.rename(newTitle.trim());
|
||||
}
|
||||
},
|
||||
|
||||
isWatching() {
|
||||
const list = this.currentData();
|
||||
return list.findWatcher(Meteor.userId());
|
||||
},
|
||||
isWatching() {
|
||||
const list = this.currentData();
|
||||
return list.findWatcher(Meteor.userId());
|
||||
},
|
||||
|
||||
limitToShowCardsCount() {
|
||||
return Meteor.user().getLimitToShowCardsCount();
|
||||
},
|
||||
limitToShowCardsCount() {
|
||||
return Meteor.user().getLimitToShowCardsCount();
|
||||
},
|
||||
|
||||
showCardsCountForList(count) {
|
||||
return count > this.limitToShowCardsCount();
|
||||
},
|
||||
showCardsCountForList(count) {
|
||||
return count > this.limitToShowCardsCount();
|
||||
},
|
||||
|
||||
events() {
|
||||
return [{
|
||||
'click .js-open-list-menu': Popup.open('listAction'),
|
||||
submit: this.editTitle,
|
||||
}];
|
||||
},
|
||||
events() {
|
||||
return [{
|
||||
'click .js-open-list-menu': Popup.open('listAction'),
|
||||
submit: this.editTitle,
|
||||
}];
|
||||
},
|
||||
}).register('listHeader');
|
||||
|
||||
Template.listActionPopup.helpers({
|
||||
isWatching() {
|
||||
return this.findWatcher(Meteor.userId());
|
||||
},
|
||||
isWatching() {
|
||||
return this.findWatcher(Meteor.userId());
|
||||
},
|
||||
});
|
||||
|
||||
Template.listActionPopup.events({
|
||||
'click .js-add-card'() {
|
||||
const listDom = document.getElementById(`js-list-${this._id}`);
|
||||
const listComponent = BlazeComponent.getComponentForElement(listDom);
|
||||
listComponent.openForm({ position: 'top' });
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-list-subscribe'() {},
|
||||
'click .js-select-cards'() {
|
||||
const cardIds = this.allCards().map((card) => card._id);
|
||||
MultiSelection.add(cardIds);
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-toggle-watch-list'() {
|
||||
const currentList = this;
|
||||
const level = currentList.findWatcher(Meteor.userId()) ? null : 'watching';
|
||||
Meteor.call('watch', 'list', currentList._id, level, (err, ret) => {
|
||||
if (!err && ret) Popup.close();
|
||||
});
|
||||
},
|
||||
'click .js-close-list'(evt) {
|
||||
evt.preventDefault();
|
||||
this.archive();
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-remove-list'(evt) {
|
||||
const currentList = this;
|
||||
evt.preventDefault();
|
||||
Lists.remove(currentList._id);
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-add-card' () {
|
||||
const listDom = document.getElementById(`js-list-${this._id}`);
|
||||
const listComponent = BlazeComponent.getComponentForElement(listDom);
|
||||
listComponent.openForm({ position: 'top' });
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-list-subscribe' () {},
|
||||
'click .js-select-cards' () {
|
||||
const cardIds = this.allCards().map((card) => card._id);
|
||||
MultiSelection.add(cardIds);
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-toggle-watch-list' () {
|
||||
const currentList = this;
|
||||
const level = currentList.findWatcher(Meteor.userId()) ? null : 'watching';
|
||||
Meteor.call('watch', 'list', currentList._id, level, (err, ret) => {
|
||||
if (!err && ret) Popup.close();
|
||||
});
|
||||
},
|
||||
'click .js-close-list' (evt) {
|
||||
evt.preventDefault();
|
||||
this.archive();
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-more': Popup.open('listMore'),
|
||||
});
|
||||
|
||||
Template.listMorePopup.events({
|
||||
'click .js-delete': Popup.afterConfirm('listDelete', function() {
|
||||
Popup.close();
|
||||
Lists.remove(this._id);
|
||||
Utils.goBoardId(this.boardId);
|
||||
}),
|
||||
});
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "تحديد بطاقات هذه القائمة",
|
||||
"listActionPopup-title": "قائمة الإجراءات",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "القائمات",
|
||||
"log-out": "تسجيل الخروج",
|
||||
"log-in": "تسجيل الدخول",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "حذف الغلاف",
|
||||
"remove-from-board": "حذف من اللوحة",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "حذف العضو",
|
||||
"remove-member-from-card": "حذف من البطاقة",
|
||||
"remove-member-pop": "حذف __name__ (__username__) من __boardTitle__ ? سيتم حذف هذا العضو من جميع بطاقة اللوحة مع إرسال إشعار له بذاك.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Select all cards in this list",
|
||||
"listActionPopup-title": "List Actions",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Lists",
|
||||
"log-out": "Log Out",
|
||||
"log-in": "Log In",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Remove Cover",
|
||||
"remove-from-board": "Remove from Board",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Selecciona totes les fitxes d'aquesta llista",
|
||||
"listActionPopup-title": "Accions de la llista",
|
||||
"listImportCardPopup-title": "importa una fitxa de Trello",
|
||||
"listMorePopup-title": "Més",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Llistes",
|
||||
"log-out": "Finalitza la sessió",
|
||||
"log-in": "Ingresa",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Elimina coberta",
|
||||
"remove-from-board": "Elimina del tauler",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"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ó.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Vybrat všechny karty v tomto seznamu",
|
||||
"listActionPopup-title": "Vypsat akce",
|
||||
"listImportCardPopup-title": "Importovat Trello kartu",
|
||||
"listMorePopup-title": "Více",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Seznamy",
|
||||
"log-out": "Odhlásit",
|
||||
"log-in": "Přihlásit",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Odstranit obal",
|
||||
"remove-from-board": "Odstranit z tabla",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Alle Karten in dieser Liste auswählen",
|
||||
"listActionPopup-title": "Listenaktionen",
|
||||
"listImportCardPopup-title": "Eine Trello-Karte importieren",
|
||||
"listMorePopup-title": "Mehr",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Listen",
|
||||
"log-out": "Ausloggen",
|
||||
"log-in": "Einloggen",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Cover entfernen",
|
||||
"remove-from-board": "Von Board entfernen",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Select all cards in this list",
|
||||
"listActionPopup-title": "List Actions",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Lists",
|
||||
"log-out": "Log Out",
|
||||
"log-in": "Log In",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Remove Cover",
|
||||
"remove-from-board": "Remove from Board",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Elektu ĉiujn kartojn en tiu listo.",
|
||||
"listActionPopup-title": "List Actions",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Listoj",
|
||||
"log-out": "Elsaluti",
|
||||
"log-in": "Ensaluti",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Remove Cover",
|
||||
"remove-from-board": "Remove from Board",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Seleccionar todas las tarjetas en esta lista",
|
||||
"listActionPopup-title": "Acciones de la lista",
|
||||
"listImportCardPopup-title": "Importar tarjeta de Trello",
|
||||
"listMorePopup-title": "Más",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Listas",
|
||||
"log-out": "Finalizar la sesión",
|
||||
"log-in": "Log In",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Eliminar cubierta",
|
||||
"remove-from-board": "Eliminar del tablero",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"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. Ellos recibirán una notificación.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Select all cards in this list",
|
||||
"listActionPopup-title": "Acciones de la lista",
|
||||
"listImportCardPopup-title": "Importar una tarjeta de Trello",
|
||||
"listMorePopup-title": "Más",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Listas",
|
||||
"log-out": "Finalizar la sesion",
|
||||
"log-in": "Iniciar sesion",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Eliminar cubierta",
|
||||
"remove-from-board": "Borrar del Tablero",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "Eliminar Miembro",
|
||||
"remove-member-from-card": "Eliminar de la Ficha",
|
||||
"remove-member-pop": "Eliminar __nombre__ (__usuario__) de __Título del tablero__? El miembro será eliminado de todas las tarjetas de este tablero. Ellos recibirán una notificación.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Aukeratu zerrenda honetako txartel guztiak",
|
||||
"listActionPopup-title": "Zerrendaren ekintzak",
|
||||
"listImportCardPopup-title": "Inportatu Trello txartel bat",
|
||||
"listMorePopup-title": "Gehiago",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Zerrendak",
|
||||
"log-out": "Itxi saioa",
|
||||
"log-in": "Hasi saioa",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Kendu azala",
|
||||
"remove-from-board": "Kendu arbeletik",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "انتخاب تمام کارت های این لیست",
|
||||
"listActionPopup-title": "لیست اقدامات",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "لیست ها",
|
||||
"log-out": "خروج",
|
||||
"log-in": "ورود",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "حذف کاور",
|
||||
"remove-from-board": "حذف از تخته",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "حذف عضو",
|
||||
"remove-member-from-card": "حذف از کارت",
|
||||
"remove-member-pop": "آیا __name__ (__username__) را از __boardTitle__ حذف می کنید? کاربر از تمام کارت ها در این تخته حذف خواهد شد و آنها ازین اقدام مطلع خواهند شد.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Valitse kaikki kortit tässä listassa",
|
||||
"listActionPopup-title": "Listaa toimet",
|
||||
"listImportCardPopup-title": "Tuo Trello kortti",
|
||||
"listMorePopup-title": "Lisää",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Listat",
|
||||
"log-out": "Kirjaudu ulos",
|
||||
"log-in": "Kirjaudu sisään",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Poista kansi",
|
||||
"remove-from-board": "Poista taululta",
|
||||
"remove-label": "Poista tunniste",
|
||||
"remove-list": "Poista lista NYT - EI VOI PERUUTTAA !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"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.",
|
||||
|
|
|
@ -38,14 +38,14 @@
|
|||
"activity-unjoined": "a quitté %s",
|
||||
"activity-checklist-added": "a ajouté une checklist à %s",
|
||||
"add": "Ajouter",
|
||||
"add-attachment": "Add Attachment",
|
||||
"add-board": "Add Board",
|
||||
"add-card": "Add Card",
|
||||
"add-checklist": "Add Checklist",
|
||||
"add-attachment": "Ajouter une pièce jointe",
|
||||
"add-board": "Ajouter un tableau",
|
||||
"add-card": "Ajouter une carte",
|
||||
"add-checklist": "Ajouter une checklist",
|
||||
"add-checklist-item": "Ajouter un élément à la checklist",
|
||||
"add-cover": "Ajouter la couverture",
|
||||
"add-label": "Add Label",
|
||||
"add-list": "Add List",
|
||||
"add-label": "Ajouter une étiquette",
|
||||
"add-list": "Ajouter une liste",
|
||||
"add-members": "Assigner des membres",
|
||||
"added": "Ajouté le",
|
||||
"addMemberPopup-title": "Membres",
|
||||
|
@ -60,7 +60,7 @@
|
|||
"archive-all": "Tout archiver",
|
||||
"archive-board": "Archiver le tableau",
|
||||
"archive-card": "Archiver la carte",
|
||||
"archive-list": "Archive List",
|
||||
"archive-list": "Archiver une liste",
|
||||
"archive-selection": "Archiver la selection",
|
||||
"archiveBoardPopup-title": "Archiver le tableau ?",
|
||||
"archived-items": "Éléments archivés",
|
||||
|
@ -136,7 +136,7 @@
|
|||
"color-sky": "ciel",
|
||||
"color-yellow": "jaune",
|
||||
"comment": "Commentaire",
|
||||
"comment-placeholder": "Write Comment",
|
||||
"comment-placeholder": "Écrire un commentaire",
|
||||
"comment-only": "Commentaire uniquement",
|
||||
"comment-only-desc": "Ne peut que commenter des cartes.",
|
||||
"computer": "Ordinateur",
|
||||
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Sélectionner toutes les cartes de cette liste",
|
||||
"listActionPopup-title": "Actions sur la liste",
|
||||
"listImportCardPopup-title": "Importer une carte Trello",
|
||||
"listMorePopup-title": "Plus",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Listes",
|
||||
"log-out": "Déconnexion",
|
||||
"log-in": "Connexion",
|
||||
|
@ -274,8 +278,8 @@
|
|||
"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": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"remove-label": "Retirer une étiquette",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "Supprimer le membre",
|
||||
"remove-member-from-card": "Supprimer de la carte",
|
||||
"remove-member-pop": "Supprimer __name__ (__username__) de __boardTitle__ ? Ce membre sera supprimé de toutes les cartes du tableau et recevra une notification.",
|
||||
|
@ -285,7 +289,7 @@
|
|||
"restore": "Restaurer",
|
||||
"save": "Enregistrer",
|
||||
"search": "Chercher",
|
||||
"select-color": "Select Color",
|
||||
"select-color": "Sélectionner une couleur",
|
||||
"shortcut-assign-self": "Affecter cette carte à vous-même",
|
||||
"shortcut-autocomplete-emoji": "Auto-complétion des emoji",
|
||||
"shortcut-autocomplete-members": "Auto-complétion des membres",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "בחירת כל הכרטיסים שברשימה זו",
|
||||
"listActionPopup-title": "פעולות רשימה",
|
||||
"listImportCardPopup-title": "ייבוא כרטיס מטרלו",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "רשימות",
|
||||
"log-out": "יציאה",
|
||||
"log-in": "כניסה",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "הסרת כיסוי",
|
||||
"remove-from-board": "הסרה מהלוח",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "הסרת חבר",
|
||||
"remove-member-from-card": "הסרה מהכרטיס",
|
||||
"remove-member-pop": "להסיר את __name__ (__username__) מ__boardTitle__? התהליך יגרום להסרת החבר מכל הכרטיסים בלוח זה. תישלח הודעה אל החבר.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Selezione tutte le schede in questa lista",
|
||||
"listActionPopup-title": "Azioni disponibili",
|
||||
"listImportCardPopup-title": "Importa una scheda di Trello",
|
||||
"listMorePopup-title": "Altro",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Liste",
|
||||
"log-out": "Log Out",
|
||||
"log-in": "Log In",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Rimuovi cover",
|
||||
"remove-from-board": "Rimuovi dalla bacheca",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "リストの全カードを選択",
|
||||
"listActionPopup-title": "操作一覧",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "リスト",
|
||||
"log-out": "ログアウト",
|
||||
"log-in": "ログイン",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "カバーの削除",
|
||||
"remove-from-board": "ボードから外す",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "メンバーを外す",
|
||||
"remove-member-from-card": "カードから外す",
|
||||
"remove-member-pop": "__boardTitle__ から __name__ (__username__) を外しますか?メンバーはこのボードのすべてのカードから外れ、通知を受けます。",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "목록에 있는 모든 카드를 선택",
|
||||
"listActionPopup-title": "동작 목록",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "목록들",
|
||||
"log-out": "로그아웃",
|
||||
"log-in": "로그인",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "커버 제거",
|
||||
"remove-from-board": "보드에서 제거",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "멤버 제거",
|
||||
"remove-member-from-card": "카드에서 제거",
|
||||
"remove-member-pop": "__boardTitle__에서 __name__(__username__) 을 제거합니까? 이 보드의 모든 카드에서 제거됩니다. 해당 내용을 __name__(__username__) 은(는) 알림으로 받게됩니다.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Select all cards in this list",
|
||||
"listActionPopup-title": "List Actions",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Lists",
|
||||
"log-out": "Log Out",
|
||||
"log-in": "Log In",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Remove Cover",
|
||||
"remove-from-board": "Remove from Board",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Zaznacz wszystkie karty z tej listy",
|
||||
"listActionPopup-title": "Lista akcji",
|
||||
"listImportCardPopup-title": "Zaimportuj kartę z Trello",
|
||||
"listMorePopup-title": "Więcej",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Listy",
|
||||
"log-out": "Wyloguj",
|
||||
"log-in": "Zaloguj",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Usuń okładkę",
|
||||
"remove-from-board": "Usuń z tablicy",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete 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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Selecionar todos os cartões nesta lista",
|
||||
"listActionPopup-title": "Listar Ações",
|
||||
"listImportCardPopup-title": "Importe um cartão do Trello",
|
||||
"listMorePopup-title": "Mais",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Listas",
|
||||
"log-out": "Sair",
|
||||
"log-in": "Entrar",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Remover Capa",
|
||||
"remove-from-board": "Remover do Quadro",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Select all cards in this list",
|
||||
"listActionPopup-title": "List Actions",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Liste",
|
||||
"log-out": "Log Out",
|
||||
"log-in": "Log In",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Remove Cover",
|
||||
"remove-from-board": "Remove from Board",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Выбрать все карточки в этом списке",
|
||||
"listActionPopup-title": "Список действий",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Списки",
|
||||
"log-out": "Выйти",
|
||||
"log-in": "Войти",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Открепить",
|
||||
"remove-from-board": "Удалить с доски",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "Удалить участника",
|
||||
"remove-member-from-card": "Удалить из карточки",
|
||||
"remove-member-pop": "Удалить участника __name__ (__username__) из доски __boardTitle__? Участник будет удален из всех карточек. Также он получит уведомление о совершаемом действии.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Select all cards in this list",
|
||||
"listActionPopup-title": "List Actions",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Lists",
|
||||
"log-out": "Log Out",
|
||||
"log-in": "Log In",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Remove Cover",
|
||||
"remove-from-board": "Ukloni iz table",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Välj alla kort i denna lista",
|
||||
"listActionPopup-title": "Liståtgärder",
|
||||
"listImportCardPopup-title": "Importera ett Trello kort",
|
||||
"listMorePopup-title": "Mera",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Listor",
|
||||
"log-out": "Logga ut",
|
||||
"log-in": "Logga in",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Ta bort omslag",
|
||||
"remove-from-board": "Ta bort från anslagstavla",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Select all cards in this list",
|
||||
"listActionPopup-title": "List Actions",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Lists",
|
||||
"log-out": "Log Out",
|
||||
"log-in": "Log In",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Remove Cover",
|
||||
"remove-from-board": "Remove from Board",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"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.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "เลือกการ์ดทั้งหมดในรายการนี้",
|
||||
"listActionPopup-title": "รายการการดำเนิน",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "รายการ",
|
||||
"log-out": "ออกจากระบบ",
|
||||
"log-in": "เข้าสู่ระบบ",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "ลบหน้าปก",
|
||||
"remove-from-board": "ลบจากบอร์ด",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "ลบสมาชิก",
|
||||
"remove-member-from-card": "ลบจากการ์ด",
|
||||
"remove-member-pop": "ลบ __name__ (__username__) จาก __boardTitle__ หรือไม่ สมาชิกจะถูกลบออกจากการ์ดทั้งหมดบนบอร์ดนี้ และพวกเขาจะได้รับการแจ้งเตือน",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "Listedeki tüm kartları seç",
|
||||
"listActionPopup-title": "Liste İşlemleri",
|
||||
"listImportCardPopup-title": "Bir Trello kartını içeri aktar",
|
||||
"listMorePopup-title": "Daha",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "Listeler",
|
||||
"log-out": "Oturum Kapat",
|
||||
"log-in": "Oturum Aç",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "Kapak resmini kaldır",
|
||||
"remove-from-board": "Panodan kaldır",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"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 ve bir bildirim alacak.",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "选择列表中的所有卡片",
|
||||
"listActionPopup-title": "列表操作",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "列表",
|
||||
"log-out": "登出",
|
||||
"log-in": "登录",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "移除封面",
|
||||
"remove-from-board": "从看板中删除",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "移除成员",
|
||||
"remove-member-from-card": "从该卡片中移除",
|
||||
"remove-member-pop": "确定从 __boardTitle__ 中移除 __name__ (__username__) 吗? 该成员将被从该看板的所有卡片中移除,同时他会收到一条提醒。",
|
||||
|
|
|
@ -230,6 +230,10 @@
|
|||
"list-select-cards": "選擇清單中的所有卡片",
|
||||
"listActionPopup-title": "清單操作",
|
||||
"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 archive a list to remove it from the board and preserve the activity.",
|
||||
"lists": "清單",
|
||||
"log-out": "登出",
|
||||
"log-in": "登入",
|
||||
|
@ -275,7 +279,7 @@
|
|||
"remove-cover": "移除封面",
|
||||
"remove-from-board": "從看板中刪除",
|
||||
"remove-label": "Remove Label",
|
||||
"remove-list": "Delete List NOW - NO UNDO !",
|
||||
"listDeletePopup-title": "Delete List ?",
|
||||
"remove-member": "移除成員",
|
||||
"remove-member-from-card": "從該卡片中移除",
|
||||
"remove-member-pop": "確定從 __boardTitle__ 中移除 __name__ (__username__) 嗎? 該成員將被從該看板的所有卡片中移除,同時他會收到一則提醒。",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue