summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md8
-rw-r--r--client/components/lists/listHeader.jade19
-rw-r--r--client/components/lists/listHeader.js117
-rw-r--r--i18n/ar.i18n.json6
-rw-r--r--i18n/br.i18n.json6
-rw-r--r--i18n/ca.i18n.json6
-rw-r--r--i18n/cs.i18n.json6
-rw-r--r--i18n/de.i18n.json6
-rw-r--r--i18n/en.i18n.json6
-rw-r--r--i18n/eo.i18n.json6
-rw-r--r--i18n/es-ES.i18n.json6
-rw-r--r--i18n/es.i18n.json6
-rw-r--r--i18n/eu.i18n.json6
-rw-r--r--i18n/fa.i18n.json6
-rw-r--r--i18n/fi.i18n.json6
-rw-r--r--i18n/fr.i18n.json26
-rw-r--r--i18n/he.i18n.json6
-rw-r--r--i18n/it.i18n.json6
-rw-r--r--i18n/ja.i18n.json6
-rw-r--r--i18n/ko.i18n.json6
-rw-r--r--i18n/no.i18n.json6
-rw-r--r--i18n/pl.i18n.json6
-rw-r--r--i18n/pt-BR.i18n.json6
-rw-r--r--i18n/ro.i18n.json6
-rw-r--r--i18n/ru.i18n.json6
-rw-r--r--i18n/sr.i18n.json6
-rw-r--r--i18n/sv.i18n.json6
-rw-r--r--i18n/ta.i18n.json6
-rw-r--r--i18n/th.i18n.json6
-rw-r--r--i18n/tr.i18n.json6
-rw-r--r--i18n/zh-CN.i18n.json6
-rw-r--r--i18n/zh-TW.i18n.json6
32 files changed, 241 insertions, 97 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 54bd08a2..9b2ec0d4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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:
diff --git a/client/components/lists/listHeader.jade b/client/components/lists/listHeader.jade
index 3f6ce0eb..11905586 100644
--- a/client/components/lists/listHeader.jade
+++ b/client/components/lists/listHeader.jade
@@ -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'}}
diff --git a/client/components/lists/listHeader.js b/client/components/lists/listHeader.js
index f352022d..5c6e2099 100644
--- a/client/components/lists/listHeader.js
+++ b/client/components/lists/listHeader.js
@@ -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);
+ }),
+}); \ No newline at end of file
diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json
index 2f11cb99..1a73c172 100644
--- a/i18n/ar.i18n.json
+++ b/i18n/ar.i18n.json
@@ -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__ ? سيتم حذف هذا العضو من جميع بطاقة اللوحة مع إرسال إشعار له بذاك.",
diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json
index 6e7d3611..0d6e205e 100644
--- a/i18n/br.i18n.json
+++ b/i18n/br.i18n.json
@@ -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.",
diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json
index fe7c634f..9574ac76 100644
--- a/i18n/ca.i18n.json
+++ b/i18n/ca.i18n.json
@@ -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ó.",
diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json
index 515b7133..5eafa36b 100644
--- a/i18n/cs.i18n.json
+++ b/i18n/cs.i18n.json
@@ -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.",
diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json
index cba5311b..15b590e6 100644
--- a/i18n/de.i18n.json
+++ b/i18n/de.i18n.json
@@ -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.",
diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json
index 9d50401a..d95427a9 100644
--- a/i18n/en.i18n.json
+++ b/i18n/en.i18n.json
@@ -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.",
diff --git a/i18n/eo.i18n.json b/i18n/eo.i18n.json
index f6604b94..6208e41b 100644
--- a/i18n/eo.i18n.json
+++ b/i18n/eo.i18n.json
@@ -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.",
diff --git a/i18n/es-ES.i18n.json b/i18n/es-ES.i18n.json
index 11199e7b..4f777d0d 100644
--- a/i18n/es-ES.i18n.json
+++ b/i18n/es-ES.i18n.json
@@ -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.",
diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json
index 41562156..41e3f610 100644
--- a/i18n/es.i18n.json
+++ b/i18n/es.i18n.json
@@ -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.",
diff --git a/i18n/eu.i18n.json b/i18n/eu.i18n.json
index 210ef2b0..3c126a5c 100644
--- a/i18n/eu.i18n.json
+++ b/i18n/eu.i18n.json
@@ -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.",
diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json
index ba8d465d..786c5462 100644
--- a/i18n/fa.i18n.json
+++ b/i18n/fa.i18n.json
@@ -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__ حذف می کنید? کاربر از تمام کارت ها در این تخته حذف خواهد شد و آنها ازین اقدام مطلع خواهند شد.",
diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json
index 1c86af8e..f315b964 100644
--- a/i18n/fi.i18n.json
+++ b/i18n/fi.i18n.json
@@ -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.",
diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json
index a85d1125..4467a344 100644
--- a/i18n/fr.i18n.json
+++ b/i18n/fr.i18n.json
@@ -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",
diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json
index 26485af5..d31a79f9 100644
--- a/i18n/he.i18n.json
+++ b/i18n/he.i18n.json
@@ -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__? התהליך יגרום להסרת החבר מכל הכרטיסים בלוח זה. תישלח הודעה אל החבר.",
diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json
index ad509370..f7ded0d6 100644
--- a/i18n/it.i18n.json
+++ b/i18n/it.i18n.json
@@ -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.",
diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json
index c4dd0952..4c939d10 100644
--- a/i18n/ja.i18n.json
+++ b/i18n/ja.i18n.json
@@ -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__) を外しますか?メンバーはこのボードのすべてのカードから外れ、通知を受けます。",
diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json
index 3fd689f5..31286f1f 100644
--- a/i18n/ko.i18n.json
+++ b/i18n/ko.i18n.json
@@ -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__) 은(는) 알림으로 받게됩니다.",
diff --git a/i18n/no.i18n.json b/i18n/no.i18n.json
index d5dfcc90..97aa9412 100644
--- a/i18n/no.i18n.json
+++ b/i18n/no.i18n.json
@@ -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.",
diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json
index bf581848..b1b868a1 100644
--- a/i18n/pl.i18n.json
+++ b/i18n/pl.i18n.json
@@ -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.",
diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json
index bc1f4702..3b3af909 100644
--- a/i18n/pt-BR.i18n.json
+++ b/i18n/pt-BR.i18n.json
@@ -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.",
diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json
index 3dfb5357..b788b642 100644
--- a/i18n/ro.i18n.json
+++ b/i18n/ro.i18n.json
@@ -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.",
diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json
index 2511dded..ffb9f6ff 100644
--- a/i18n/ru.i18n.json
+++ b/i18n/ru.i18n.json
@@ -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__? Участник будет удален из всех карточек. Также он получит уведомление о совершаемом действии.",
diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json
index 6dcbbcd9..96f2b2e8 100644
--- a/i18n/sr.i18n.json
+++ b/i18n/sr.i18n.json
@@ -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.",
diff --git a/i18n/sv.i18n.json b/i18n/sv.i18n.json
index 5f6d5e55..9e4a24f8 100644
--- a/i18n/sv.i18n.json
+++ b/i18n/sv.i18n.json
@@ -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.",
diff --git a/i18n/ta.i18n.json b/i18n/ta.i18n.json
index 18474729..818e92a7 100644
--- a/i18n/ta.i18n.json
+++ b/i18n/ta.i18n.json
@@ -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.",
diff --git a/i18n/th.i18n.json b/i18n/th.i18n.json
index 00c1e6d8..8fbdf5ac 100644
--- a/i18n/th.i18n.json
+++ b/i18n/th.i18n.json
@@ -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__ หรือไม่ สมาชิกจะถูกลบออกจากการ์ดทั้งหมดบนบอร์ดนี้ และพวกเขาจะได้รับการแจ้งเตือน",
diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json
index 6fb3299e..516e6256 100644
--- a/i18n/tr.i18n.json
+++ b/i18n/tr.i18n.json
@@ -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.",
diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json
index f90a7008..00205668 100644
--- a/i18n/zh-CN.i18n.json
+++ b/i18n/zh-CN.i18n.json
@@ -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__) 吗? 该成员将被从该看板的所有卡片中移除,同时他会收到一条提醒。",
diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json
index f8ddc7f7..264e0a9d 100644
--- a/i18n/zh-TW.i18n.json
+++ b/i18n/zh-TW.i18n.json
@@ -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__) 嗎? 該成員將被從該看板的所有卡片中移除,同時他會收到一則提醒。",