From 5b0da6cb3adf6366afb3264cdab1f45a5b506029 Mon Sep 17 00:00:00 2001 From: BaobabCoder Date: Fri, 2 Jun 2017 10:29:48 +0200 Subject: Change the way to remove a list (card like) --- client/components/lists/listHeader.jade | 19 +++++- client/components/lists/listHeader.js | 117 ++++++++++++++++---------------- i18n/ar.i18n.json | 6 +- i18n/br.i18n.json | 6 +- i18n/ca.i18n.json | 6 +- i18n/cs.i18n.json | 6 +- i18n/de.i18n.json | 6 +- i18n/en.i18n.json | 6 +- i18n/es-ES.i18n.json | 6 +- i18n/es.i18n.json | 6 +- i18n/fa.i18n.json | 6 +- i18n/fi.i18n.json | 6 +- i18n/fr.i18n.json | 6 +- i18n/he.i18n.json | 6 +- i18n/it.i18n.json | 6 +- i18n/ja.i18n.json | 6 +- i18n/ko.i18n.json | 6 +- i18n/pl.i18n.json | 6 +- i18n/pt-BR.i18n.json | 6 +- i18n/ro.i18n.json | 6 +- i18n/ru.i18n.json | 6 +- i18n/sr.i18n.json | 6 +- i18n/tr.i18n.json | 6 +- i18n/zh-CN.i18n.json | 6 +- i18n/zh-TW.i18n.json | 6 +- 25 files changed, 170 insertions(+), 104 deletions(-) diff --git a/client/components/lists/listHeader.jade b/client/components/lists/listHeader.jade index 29aa4282..2d2ae165 100644 --- a/client/components/lists/listHeader.jade +++ b/client/components/lists/listHeader.jade @@ -35,7 +35,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 @@ -45,3 +45,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(title="{{_ 'list-delete-notice'}}") {{_ '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 531364a9..67727aff 100644 --- a/i18n/ar.i18n.json +++ b/i18n/ar.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "اضغط لإضافة اللوحة للمفضلة.", "click-to-unstar": "اضغط لحذف اللوحة من المفضلة.", - "clipboard" : "Clipboard or drag & drop", + "clipboard": "Clipboard or drag & drop", "close": "غلق", "close-board": "غلق اللوحة", "close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", @@ -227,6 +227,8 @@ "list-select-cards": "تحديد بطاقات هذه القائمة", "listActionPopup-title": "قائمة الإجراءات", "listImportCardPopup-title": "Import a Trello card", + "listMorePopup-title": "المزيد", + "link-list": "Link to this list", "lists": "القائمات", "log-out": "تسجيل الخروج", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "ماذا تريد أن تنجز?" -} +} \ No newline at end of file diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json index ece3e1a8..ae3e915c 100644 --- a/i18n/br.i18n.json +++ b/i18n/br.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "Click to star this board.", "click-to-unstar": "Click to unstar this board.", - "clipboard" : "Clipboard or drag & drop", + "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 “Archives” button from the home header.", @@ -227,6 +227,8 @@ "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", "lists": "Lists", "log-out": "Log Out", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "What do you want to do?" -} +} \ No newline at end of file diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json index 6d3745ce..0ae755ea 100644 --- a/i18n/ca.i18n.json +++ b/i18n/ca.i18n.json @@ -121,7 +121,7 @@ "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", + "clipboard": "Portaretalls o estirar i amollar", "close": "Tanca", "close-board": "Tanca tauler", "close-board-pop": "Podràs restaurar el tauler, seleccionant \"Arxivats\" de la finistra principal", @@ -227,6 +227,8 @@ "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", "lists": "Llistes", "log-out": "Finalitza la sessió", "log-in": "Ingresa", @@ -321,4 +323,4 @@ "welcome-list1": "Bàsics", "welcome-list2": "Avançades", "what-to-do": "Què vols fer?" -} +} \ No newline at end of file diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json index 495cd4e9..aa6180e7 100644 --- a/i18n/cs.i18n.json +++ b/i18n/cs.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "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", + "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 \"Archivy\" v hlavním menu.", @@ -227,6 +227,8 @@ "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", "lists": "Seznamy", "log-out": "Odhlásit", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "Co chcete dělat?" -} +} \ No newline at end of file diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index 197fbba7..fcdfdb6b 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "Klicken um dem Board einen Stern zu geben.", "click-to-unstar": "Klicken um den Stern von dem Board zu entfernen.", - "clipboard" : "Zwischenablage oder Drag & Drop", + "clipboard": "Zwischenablage oder Drag & Drop", "close": "Schließen", "close-board": "Board schließen", "close-board-pop": "Sie können das Board wiederherstellen, indem Sie den \"Archiv\"-Button in der Kopfzeile der Startseite anklicken.", @@ -227,6 +227,8 @@ "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", "lists": "Listen", "log-out": "Ausloggen", "log-in": "Einloggen", @@ -321,4 +323,4 @@ "welcome-list1": "Grundlagen", "welcome-list2": "Fortgeschritten", "what-to-do": "Was willst du tun?" -} +} \ No newline at end of file diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json index f05f2278..0a7bd9b2 100644 --- a/i18n/en.i18n.json +++ b/i18n/en.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "Click to star this board.", "click-to-unstar": "Click to unstar this board.", - "clipboard" : "Clipboard or drag & drop", + "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 “Archives” button from the home header.", @@ -227,6 +227,8 @@ "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", "lists": "Lists", "log-out": "Log Out", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "What do you want to do?" -} +} \ No newline at end of file diff --git a/i18n/es-ES.i18n.json b/i18n/es-ES.i18n.json index 578db27d..c5b3bac0 100644 --- a/i18n/es-ES.i18n.json +++ b/i18n/es-ES.i18n.json @@ -117,7 +117,7 @@ "changeSettingsPopup-title": "Change Settings", "click-to-star": "Haz clic para destacar este tablero.", "click-to-unstar": "Haz clic para dejar de destacar este tablero.", - "clipboard" : "Portapapeles o drag & drop", + "clipboard": "Portapapeles o drag & drop", "close": "Cerrar", "close-board": "Cerrar tablero", "close-board-pop": "Podrás restaurar el tablero seleccionando el botón “Archivados” desde la cabecera de la página de inicio.", @@ -223,6 +223,8 @@ "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", "lists": "Listas", "log-out": "Finalizar la sesión", "log-in": "Log In", @@ -317,4 +319,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "¿Qué quieres hacer?" -} +} \ No newline at end of file diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json index f9858126..a44061c1 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "Haz clic para destacar este tablero. ", "click-to-unstar": "Haz clic para dejar de destacar este tablero. ", - "clipboard" : "Clipboard or drag & drop", + "clipboard": "Clipboard or drag & drop", "close": "Cerrar", "close-board": "Cerrar el tablero", "close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", @@ -227,6 +227,8 @@ "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", "lists": "Listas", "log-out": "Finalizar la sesion", "log-in": "Iniciar sesion", @@ -321,4 +323,4 @@ "welcome-list1": "Basicos", "welcome-list2": "Avanzados", "what-to-do": "What do you want to do?" -} +} \ No newline at end of file diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json index 30e5a478..8a0e7809 100644 --- a/i18n/fa.i18n.json +++ b/i18n/fa.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "جهت افزودن ستاره کلیک کنید .", "click-to-unstar": "جهت کاهش ستاره کلیک کنید.", - "clipboard" : "ذخیره در حافظه ویا بکش-رهاکن", + "clipboard": "ذخیره در حافظه ویا بکش-رهاکن", "close": "بستن", "close-board": "بستن برد", "close-board-pop": "شما می توانید با کلیک بر دکمه \"بایگانی\" از قسمت بالای خانه، تخته را بازگذاری نمایید.", @@ -227,6 +227,8 @@ "list-select-cards": "انتخاب تمام کارت ها در این لیست", "listActionPopup-title": "لیست اقدامات", "listImportCardPopup-title": "وارد کردن کارت Trello", + "listMorePopup-title": "بیشتر", + "link-list": "Link to this list", "lists": "لیست ها", "log-out": "خروج", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "چه کاری می خواهید انجام دهید؟" -} +} \ No newline at end of file diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json index bb41ce60..23909600 100644 --- a/i18n/fi.i18n.json +++ b/i18n/fi.i18n.json @@ -121,7 +121,7 @@ "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", + "clipboard": "Leikepöytä tai raahaa ja pudota", "close": "Sulje", "close-board": "Sulje taulu", "close-board-pop": "Voit palauttaa taulun klikkaamalla “Arkistot” painiketta kotiotsikosta.", @@ -227,6 +227,8 @@ "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", "lists": "Listat", "log-out": "Kirjaudu ulos", "log-in": "Kirjaudu sisään", @@ -321,4 +323,4 @@ "welcome-list1": "Perusasiat", "welcome-list2": "Edistynyt", "what-to-do": "Mitä haluat tehdä?" -} +} \ No newline at end of file diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index 9cc2f6b5..b811fc51 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -121,7 +121,7 @@ "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", + "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.", @@ -227,6 +227,8 @@ "list-select-cards": "Sélectionner les cartes de cette liste", "listActionPopup-title": "Liste des actions", "listImportCardPopup-title": "Importer une carte Trello", + "listMorePopup-title": "Plus", + "link-list": "Lier à cette liste", "lists": "Listes", "log-out": "Déconnexion", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "Que voulez-vous faire ?" -} +} \ No newline at end of file diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json index c3e18a66..cba130b7 100644 --- a/i18n/he.i18n.json +++ b/i18n/he.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "לחץ להוספת הלוח למועדפים", "click-to-unstar": "לחץ להסרת הלוח מהמועדפים.", - "clipboard" : "Clipboard or drag & drop", + "clipboard": "Clipboard or drag & drop", "close": "סגור", "close-board": "סגור לוח", "close-board-pop": "תוכלו לשחזר את הלוח בלחיצה על כפתור \"ארכיונים\" מהכותרת העליונה.", @@ -227,6 +227,8 @@ "list-select-cards": "בחר את כל הכרטיסים ברשימה זו", "listActionPopup-title": "פעולות רשימה", "listImportCardPopup-title": "ייבא כרטיס מטרלו", + "listMorePopup-title": "עוד", + "link-list": "Link to this list", "lists": "רשימות", "log-out": "התנתק", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "מה תרצה לעשות?" -} +} \ No newline at end of file diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json index b67aa2ed..0a00c25d 100755 --- a/i18n/it.i18n.json +++ b/i18n/it.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "Clicca per stellare questa bacheca", "click-to-unstar": "Clicca per togliere la stella da questa bacheca", - "clipboard" : "Clipboard o drag & drop", + "clipboard": "Clipboard o drag & drop", "close": "Chiudi", "close-board": "Chiudi bacheca", "close-board-pop": "Sarai in grado di ripristinare la bacheca cliccando il tasto \"Archivi\" dall'intestazione della pagina principale.", @@ -227,6 +227,8 @@ "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", "lists": "Liste", "log-out": "Log Out", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basi", "welcome-list2": "Avanzate", "what-to-do": "Cosa vuoi fare?" -} +} \ No newline at end of file diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json index 52979544..7e4bd25b 100644 --- a/i18n/ja.i18n.json +++ b/i18n/ja.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "ボードにスターをつける", "click-to-unstar": "ボードからスターを外す", - "clipboard" : "Clipboard or drag & drop", + "clipboard": "Clipboard or drag & drop", "close": "閉じる", "close-board": "Close Board", "close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", @@ -227,6 +227,8 @@ "list-select-cards": "Select all cards in this list", "listActionPopup-title": "操作一覧", "listImportCardPopup-title": "Import a Trello card", + "listMorePopup-title": "さらに見る", + "link-list": "Link to this list", "lists": "Lists", "log-out": "ログアウト", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "What do you want to do?" -} +} \ No newline at end of file diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json index a7284d36..59798c47 100644 --- a/i18n/ko.i18n.json +++ b/i18n/ko.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "보드 별 추가.", "click-to-unstar": "보드 별 삭제.", - "clipboard" : "Clipboard or drag & drop", + "clipboard": "Clipboard or drag & drop", "close": "닫기", "close-board": "Close Board", "close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", @@ -227,6 +227,8 @@ "list-select-cards": "Select all cards in this list", "listActionPopup-title": "동작 목록", "listImportCardPopup-title": "Import a Trello card", + "listMorePopup-title": "더보기", + "link-list": "Link to this list", "lists": "Lists", "log-out": "로그아웃", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "무엇을 원하나요?" -} +} \ No newline at end of file diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json index 800388fd..08eef083 100644 --- a/i18n/pl.i18n.json +++ b/i18n/pl.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "Kliknij by odznaczyć tę tablicę.", "click-to-unstar": "Kliknij by usunąć odznaczenie tej tablicy.", - "clipboard" : "Schowek lub przeciągnij & upuść", + "clipboard": "Schowek lub przeciągnij & upuść", "close": "Zamknij", "close-board": "Zamknij tablicę", "close-board-pop": "Możesz przywrócić tablicę klikając przycisk \"Zarchiwizowane\" z głównej belki.", @@ -227,6 +227,8 @@ "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", "lists": "Listy", "log-out": "Wyloguj", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "Co chcesz zrobić?" -} +} \ No newline at end of file diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json index 9e0018dd..ef3f1659 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "Marcar quadro como favorito.", "click-to-unstar": "Remover quadro dos favoritos.", - "clipboard" : "Área de Transferência ou arraste e solte", + "clipboard": "Área de Transferência ou arraste e solte", "close": "Fechar", "close-board": "Fechar Quadro", "close-board-pop": "Você estará habilitado para restaurar o quadro clicando no botão \"Arquivos\" à partir da barra de início.", @@ -227,6 +227,8 @@ "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", "lists": "Listas", "log-out": "Sair", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "O que você gostaria de fazer?" -} +} \ No newline at end of file diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json index feb95504..5a9e43d0 100644 --- a/i18n/ro.i18n.json +++ b/i18n/ro.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "Click to star this board.", "click-to-unstar": "Click to unstar this board.", - "clipboard" : "Clipboard or drag & drop", + "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 “Archives” button from the home header.", @@ -227,6 +227,8 @@ "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", "lists": "Liste", "log-out": "Log Out", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "Ce ai vrea sa faci?" -} +} \ No newline at end of file diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json index 400352ee..ac5f25f6 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "Добавить в «Избранное»", "click-to-unstar": "Удалить из «Избранного»", - "clipboard" : "Буфер обмена или drag & drop", + "clipboard": "Буфер обмена или drag & drop", "close": "Закрыть", "close-board": "Закрыть доску", "close-board-pop": "Вы можете восстановить доску, нажав “Архивы” в заголовке.", @@ -227,6 +227,8 @@ "list-select-cards": "Выбрать все карточки в этом списке", "listActionPopup-title": "Список действий", "listImportCardPopup-title": "Импортировать Trello карточку", + "listMorePopup-title": "Поделиться", + "link-list": "Link to this list", "lists": "Списки", "log-out": "Выйти", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "Что вы хотите сделать?" -} +} \ No newline at end of file diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json index 49e7bd1a..8a080ea3 100644 --- a/i18n/sr.i18n.json +++ b/i18n/sr.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "Click to star this board.", "click-to-unstar": "Click to unstar this board.", - "clipboard" : "Clipboard or drag & drop", + "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 “Archives” button from the home header.", @@ -227,6 +227,8 @@ "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", "lists": "Lists", "log-out": "Log Out", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "Šta želiš da uradiš ?" -} +} \ No newline at end of file diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json index 7f79436f..bfe3b677 100644 --- a/i18n/tr.i18n.json +++ b/i18n/tr.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "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" : "Clipboard or drag & drop", + "clipboard": "Clipboard or drag & drop", "close": "Kapat", "close-board": "Close Board", "close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", @@ -227,6 +227,8 @@ "list-select-cards": "Select all cards in this list", "listActionPopup-title": "Liste İşlemleri", "listImportCardPopup-title": "Import a Trello card", + "listMorePopup-title": "More", + "link-list": "Link to this list", "lists": "Lists", "log-out": "Oturum Kapat", "log-in": "Log In", @@ -321,4 +323,4 @@ "welcome-list1": "Basics", "welcome-list2": "Advanced", "what-to-do": "What do you want to do?" -} +} \ No newline at end of file diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json index 8947cc4a..2777b84c 100644 --- a/i18n/zh-CN.i18n.json +++ b/i18n/zh-CN.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "点此来标记该看板", "click-to-unstar": "点此来去除该看板的标记", - "clipboard" : "剪贴板或者拖放文件", + "clipboard": "剪贴板或者拖放文件", "close": "关闭", "close-board": "关闭看板", "close-board-pop": "您可以通过点击主界面顶部的”回收箱“按钮来还原看板。", @@ -227,6 +227,8 @@ "list-select-cards": "选择清单中的所有卡片", "listActionPopup-title": "清单操作", "listImportCardPopup-title": "导入 Trello 卡片", + "listMorePopup-title": "更多", + "link-list": "Link to this list", "lists": "清单", "log-out": "登出", "log-in": "登录", @@ -321,4 +323,4 @@ "welcome-list1": "基本", "welcome-list2": "高阶", "what-to-do": "要做什么?" -} +} \ No newline at end of file diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json index 6855d9cb..b6e6547d 100644 --- a/i18n/zh-TW.i18n.json +++ b/i18n/zh-TW.i18n.json @@ -121,7 +121,7 @@ "checklists": "Checklists", "click-to-star": "點此來標記該看板", "click-to-unstar": "點此來去除該看板的標記", - "clipboard" : "剪貼簿貼上或者拖曳檔案", + "clipboard": "剪貼簿貼上或者拖曳檔案", "close": "關閉", "close-board": "關閉看板", "close-board-pop": "您可以透過點選主介面上方的”回收筒“按鈕來還原看板。", @@ -227,6 +227,8 @@ "list-select-cards": "選擇清單中的所有卡片", "listActionPopup-title": "清單操作", "listImportCardPopup-title": "匯入 Trello 卡片", + "listMorePopup-title": "更多", + "link-list": "Link to this list", "lists": "清單", "log-out": "登出", "log-in": "登入", @@ -321,4 +323,4 @@ "welcome-list1": "基本", "welcome-list2": "進階", "what-to-do": "要做什麼?" -} +} \ No newline at end of file -- cgit v1.2.3-1-g7c22 From de5589a987c8e32a42027b6d230d01204bd3e5a5 Mon Sep 17 00:00:00 2001 From: BaobabCoder Date: Fri, 2 Jun 2017 10:45:01 +0200 Subject: Fix missing popup title --- client/components/lists/listHeader.jade | 2 +- i18n/ar.i18n.json | 2 ++ i18n/br.i18n.json | 2 ++ i18n/ca.i18n.json | 2 ++ i18n/cs.i18n.json | 2 ++ i18n/de.i18n.json | 2 ++ i18n/en.i18n.json | 5 ++++- i18n/es-ES.i18n.json | 4 +++- i18n/es.i18n.json | 4 +++- i18n/fa.i18n.json | 4 +++- i18n/fi.i18n.json | 4 +++- i18n/fr.i18n.json | 2 ++ i18n/he.i18n.json | 2 ++ i18n/it.i18n.json | 2 ++ i18n/ja.i18n.json | 2 ++ i18n/ko.i18n.json | 2 ++ i18n/pl.i18n.json | 2 ++ i18n/pt-BR.i18n.json | 2 ++ i18n/ro.i18n.json | 2 ++ i18n/ru.i18n.json | 2 ++ i18n/sr.i18n.json | 2 ++ i18n/tr.i18n.json | 2 ++ i18n/zh-CN.i18n.json | 2 ++ i18n/zh-TW.i18n.json | 2 ++ 24 files changed, 53 insertions(+), 6 deletions(-) diff --git a/client/components/lists/listHeader.jade b/client/components/lists/listHeader.jade index 2d2ae165..81afebe1 100644 --- a/client/components/lists/listHeader.jade +++ b/client/components/lists/listHeader.jade @@ -55,7 +55,7 @@ template(name="listMorePopup") input.inline-input(type="text" readonly value="{{ rootUrl }}") | {{_ 'added'}} span.date(title=list.createdAt) {{ moment createdAt 'LLL' }} - a.js-delete(title="{{_ 'list-delete-notice'}}") {{_ 'delete'}} + a.js-delete {{_ 'delete'}} template(name="listDeletePopup") p {{_ "list-delete-pop"}} diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json index 67727aff..1c0790be 100644 --- a/i18n/ar.i18n.json +++ b/i18n/ar.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "قائمة الإجراءات", "listImportCardPopup-title": "Import a Trello card", "listMorePopup-title": "المزيد", + "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.", "link-list": "Link to this list", "lists": "القائمات", "log-out": "تسجيل الخروج", diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json index ae3e915c..695c81a3 100644 --- a/i18n/br.i18n.json +++ b/i18n/br.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "List Actions", "listImportCardPopup-title": "Import a Trello card", "listMorePopup-title": "Muioc’h", + "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.", "link-list": "Link to this list", "lists": "Lists", "log-out": "Log Out", diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json index 0ae755ea..ecdd3719 100644 --- a/i18n/ca.i18n.json +++ b/i18n/ca.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "Accions de la llista", "listImportCardPopup-title": "importa una fitxa de Trello", "listMorePopup-title": "Més", + "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.", "link-list": "Link to this list", "lists": "Llistes", "log-out": "Finalitza la sessió", diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json index aa6180e7..c03496e8 100644 --- a/i18n/cs.i18n.json +++ b/i18n/cs.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "Vypsat akce", "listImportCardPopup-title": "Importovat Trello kartu", "listMorePopup-title": "Více", + "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.", "link-list": "Link to this list", "lists": "Seznamy", "log-out": "Odhlásit", diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index fcdfdb6b..405e3f8a 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "Listenaktionen", "listImportCardPopup-title": "Eine Trello-Karte importieren", "listMorePopup-title": "Mehr", + "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.", "link-list": "Link to this list", "lists": "Listen", "log-out": "Ausloggen", diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json index 0a7bd9b2..872f2973 100644 --- a/i18n/en.i18n.json +++ b/i18n/en.i18n.json @@ -229,6 +229,9 @@ "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", @@ -274,7 +277,7 @@ "remove-cover": "Remove Cover", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "remove-list": "Remove the list", + "listDeletePopup-title": "Remove the 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/es-ES.i18n.json b/i18n/es-ES.i18n.json index c5b3bac0..3fc67b76 100644 --- a/i18n/es-ES.i18n.json +++ b/i18n/es-ES.i18n.json @@ -225,6 +225,8 @@ "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", @@ -270,7 +272,7 @@ "remove-cover": "Eliminar cubierta", "remove-from-board": "Eliminar del tablero", "remove-label": "Eliminar etiqueta", - "remove-list": "Remove the list", + "listDeletePopup-title": "Remove the 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 a44061c1..de1986ad 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "Acciones de la lista", "listImportCardPopup-title": "Importar una tarjeta de Trello", "listMorePopup-title": "Más", + "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.", "link-list": "Link to this list", "lists": "Listas", "log-out": "Finalizar la sesion", @@ -274,7 +276,7 @@ "remove-cover": "Eliminar cubierta", "remove-from-board": "Borrar del Tablero", "remove-label": "Borrar la etiqueta", - "remove-list": "Remove the list", + "listDeletePopup-title": "Remove the 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/fa.i18n.json b/i18n/fa.i18n.json index 8a0e7809..8643e426 100644 --- a/i18n/fa.i18n.json +++ b/i18n/fa.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "لیست اقدامات", "listImportCardPopup-title": "وارد کردن کارت Trello", "listMorePopup-title": "بیشتر", + "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.", "link-list": "Link to this list", "lists": "لیست ها", "log-out": "خروج", @@ -274,7 +276,7 @@ "remove-cover": "حذف کاور", "remove-from-board": "حذف از برد", "remove-label": "حذف برچسب", - "remove-list": "Remove the list", + "listDeletePopup-title": "Remove the 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 23909600..8cbfcc2e 100644 --- a/i18n/fi.i18n.json +++ b/i18n/fi.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "Listaa toimet", "listImportCardPopup-title": "Tuo Trello kortti", "listMorePopup-title": "Lisää", + "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.", "link-list": "Link to this list", "lists": "Listat", "log-out": "Kirjaudu ulos", @@ -274,7 +276,7 @@ "remove-cover": "Poista kansi", "remove-from-board": "Poista taululta", "remove-label": "Poista tunniste", - "remove-list": "Poista lista", + "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.", diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index b811fc51..47c99fbf 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -229,6 +229,8 @@ "listImportCardPopup-title": "Importer une carte Trello", "listMorePopup-title": "Plus", "link-list": "Lier à cette liste", + "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": "Log In", diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json index cba130b7..9b454cd0 100644 --- a/i18n/he.i18n.json +++ b/i18n/he.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "פעולות רשימה", "listImportCardPopup-title": "ייבא כרטיס מטרלו", "listMorePopup-title": "עוד", + "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.", "link-list": "Link to this list", "lists": "רשימות", "log-out": "התנתק", diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json index 0a00c25d..a77ca35d 100755 --- a/i18n/it.i18n.json +++ b/i18n/it.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "Azioni disponibili", "listImportCardPopup-title": "Importa una scheda di Trello", "listMorePopup-title": "Altro", + "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.", "link-list": "Link to this list", "lists": "Liste", "log-out": "Log Out", diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json index 7e4bd25b..2369da18 100644 --- a/i18n/ja.i18n.json +++ b/i18n/ja.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "操作一覧", "listImportCardPopup-title": "Import a Trello card", "listMorePopup-title": "さらに見る", + "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.", "link-list": "Link to this list", "lists": "Lists", "log-out": "ログアウト", diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json index 59798c47..30f4dde9 100644 --- a/i18n/ko.i18n.json +++ b/i18n/ko.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "동작 목록", "listImportCardPopup-title": "Import a Trello card", "listMorePopup-title": "더보기", + "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.", "link-list": "Link to this list", "lists": "Lists", "log-out": "로그아웃", diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json index 08eef083..42c7c479 100644 --- a/i18n/pl.i18n.json +++ b/i18n/pl.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "Lista akcji", "listImportCardPopup-title": "Zaimportuj kartę z Trello", "listMorePopup-title": "Więcej", + "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.", "link-list": "Link to this list", "lists": "Listy", "log-out": "Wyloguj", diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json index ef3f1659..7db24ec0 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "Listar Ações", "listImportCardPopup-title": "Importe um cartão do Trello", "listMorePopup-title": "Mais", + "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.", "link-list": "Link to this list", "lists": "Listas", "log-out": "Sair", diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json index 5a9e43d0..183be007 100644 --- a/i18n/ro.i18n.json +++ b/i18n/ro.i18n.json @@ -229,6 +229,8 @@ "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", diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json index ac5f25f6..ce7c068a 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "Список действий", "listImportCardPopup-title": "Импортировать Trello карточку", "listMorePopup-title": "Поделиться", + "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.", "link-list": "Link to this list", "lists": "Списки", "log-out": "Выйти", diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json index 8a080ea3..55317019 100644 --- a/i18n/sr.i18n.json +++ b/i18n/sr.i18n.json @@ -229,6 +229,8 @@ "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", diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json index bfe3b677..8b4375b8 100644 --- a/i18n/tr.i18n.json +++ b/i18n/tr.i18n.json @@ -229,6 +229,8 @@ "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": "Oturum Kapat", "log-in": "Log In", diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json index 2777b84c..046aae7c 100644 --- a/i18n/zh-CN.i18n.json +++ b/i18n/zh-CN.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "清单操作", "listImportCardPopup-title": "导入 Trello 卡片", "listMorePopup-title": "更多", + "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.", "link-list": "Link to this list", "lists": "清单", "log-out": "登出", diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json index b6e6547d..75f9ea5b 100644 --- a/i18n/zh-TW.i18n.json +++ b/i18n/zh-TW.i18n.json @@ -228,6 +228,8 @@ "listActionPopup-title": "清單操作", "listImportCardPopup-title": "匯入 Trello 卡片", "listMorePopup-title": "更多", + "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.", "link-list": "Link to this list", "lists": "清單", "log-out": "登出", -- cgit v1.2.3-1-g7c22 From 15b428893f950cf84f90a4f33340e3621660cf43 Mon Sep 17 00:00:00 2001 From: BaobabCoder Date: Fri, 2 Jun 2017 10:55:22 +0200 Subject: Change text : delete instead of remove --- i18n/ar.i18n.json | 2 +- i18n/br.i18n.json | 2 +- i18n/ca.i18n.json | 2 +- i18n/cs.i18n.json | 2 +- i18n/de.i18n.json | 2 +- i18n/en.i18n.json | 2 +- i18n/es-ES.i18n.json | 2 +- i18n/es.i18n.json | 2 +- i18n/fa.i18n.json | 2 +- i18n/fr.i18n.json | 2 +- i18n/he.i18n.json | 2 +- i18n/it.i18n.json | 2 +- i18n/ja.i18n.json | 2 +- i18n/ko.i18n.json | 2 +- i18n/pl.i18n.json | 2 +- i18n/pt-BR.i18n.json | 2 +- i18n/ro.i18n.json | 2 +- i18n/ru.i18n.json | 2 +- i18n/sr.i18n.json | 2 +- i18n/tr.i18n.json | 2 +- i18n/zh-CN.i18n.json | 2 +- i18n/zh-TW.i18n.json | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json index 1c0790be..bb065628 100644 --- a/i18n/ar.i18n.json +++ b/i18n/ar.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "حذف الغلاف", "remove-from-board": "حذف من اللوحة", "remove-label": "حذف هذه العلامة", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 695c81a3..ab4e3075 100644 --- a/i18n/br.i18n.json +++ b/i18n/br.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Remove Cover", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 ecdd3719..7f589688 100644 --- a/i18n/ca.i18n.json +++ b/i18n/ca.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Elimina coberta", "remove-from-board": "Elimina del tauler", "remove-label": "Eliminia etiqueta", - "remove-list": "Elimina la llista", + "listDeletePopup-title": "Elimina 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ó.", diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json index c03496e8..c4fe21a7 100644 --- a/i18n/cs.i18n.json +++ b/i18n/cs.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Odstranit obal", "remove-from-board": "Odstranit z tabla", "remove-label": "Odstranit štítek", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 405e3f8a..0ea1e6a8 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Cover entfernen", "remove-from-board": "Von Board entfernen", "remove-label": "Label entfernen", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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. Er erhält eine Benachrichtigung.", diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json index 872f2973..06750e42 100644 --- a/i18n/en.i18n.json +++ b/i18n/en.i18n.json @@ -277,7 +277,7 @@ "remove-cover": "Remove Cover", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "listDeletePopup-title": "Remove the list", + "listDeletePopup-title": "Delete the 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/es-ES.i18n.json b/i18n/es-ES.i18n.json index 3fc67b76..573ea648 100644 --- a/i18n/es-ES.i18n.json +++ b/i18n/es-ES.i18n.json @@ -272,7 +272,7 @@ "remove-cover": "Eliminar cubierta", "remove-from-board": "Eliminar del tablero", "remove-label": "Eliminar etiqueta", - "listDeletePopup-title": "Remove the list", + "listDeletePopup-title": "Delete the 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 de1986ad..8f6fe6a4 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Eliminar cubierta", "remove-from-board": "Borrar del Tablero", "remove-label": "Borrar la etiqueta", - "listDeletePopup-title": "Remove the list", + "listDeletePopup-title": "Delete the 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/fa.i18n.json b/i18n/fa.i18n.json index 8643e426..49dfa64b 100644 --- a/i18n/fa.i18n.json +++ b/i18n/fa.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "حذف کاور", "remove-from-board": "حذف از برد", "remove-label": "حذف برچسب", - "listDeletePopup-title": "Remove the list", + "listDeletePopup-title": "Delete the list ?", "remove-member": "حذف عضو", "remove-member-from-card": "حذف از کارت", "remove-member-pop": "آیا می خواهید __Name__ (__username__) را از __boardTitle__ حذف کنید? کاربر از تمام کارت ها در این تخته حذف خواهد شد و به آنها اطلاع رسانی خواهد شد.", diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index 47c99fbf..60261d03 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Enlever la couverture", "remove-from-board": "Retirer du tableau", "remove-label": "Retirer cette étiquette", - "remove-list": "Supprimer la liste", + "listDeletePopup-title": "Supprimer la liste", "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.", diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json index 9b454cd0..e430d099 100644 --- a/i18n/he.i18n.json +++ b/i18n/he.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "הסר כיסוי", "remove-from-board": "הסר מהלוח", "remove-label": "הסר תווית", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 a77ca35d..a407cd9a 100755 --- a/i18n/it.i18n.json +++ b/i18n/it.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Rimuovi cover", "remove-from-board": "Rimuovi dalla bacheca", "remove-label": "Rimuovi l'etichetta", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 2369da18..ed25a85f 100644 --- a/i18n/ja.i18n.json +++ b/i18n/ja.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "カバーの削除", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 30f4dde9..88f93f34 100644 --- a/i18n/ko.i18n.json +++ b/i18n/ko.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "커버 제거", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the list ?", "remove-member": "멤버 제거", "remove-member-from-card": "카드에서 제거", "remove-member-pop": "__boardTitle__에서 __name__(__username__) 을 제거합니까? 그 멤버는 이 보드의 모든 카드에서 제거됩니다. 그에대한 알람을 받게됩니다.", diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json index 42c7c479..9fc1e85f 100644 --- a/i18n/pl.i18n.json +++ b/i18n/pl.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Usuń okładkę", "remove-from-board": "Usuń z tablicy", "remove-label": "Usuń etykietę", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 7db24ec0..d2a9d692 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Remover Capa", "remove-from-board": "Remover do Quadro", "remove-label": "Remover Etiqueta", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 183be007..999cae95 100644 --- a/i18n/ro.i18n.json +++ b/i18n/ro.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Remove Cover", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 ce7c068a..8055173c 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Открепить", "remove-from-board": "Удалить с доски", "remove-label": "Удалить метку", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 55317019..265f27a4 100644 --- a/i18n/sr.i18n.json +++ b/i18n/sr.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Remove Cover", "remove-from-board": "Ukloni iz table", "remove-label": "Ukloni natpis", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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/tr.i18n.json b/i18n/tr.i18n.json index 8b4375b8..b86a22b6 100644 --- a/i18n/tr.i18n.json +++ b/i18n/tr.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "Remove Cover", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 046aae7c..22658732 100644 --- a/i18n/zh-CN.i18n.json +++ b/i18n/zh-CN.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "移除封面", "remove-from-board": "从看板中删除", "remove-label": "移除标签", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the 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 75f9ea5b..a8c934b5 100644 --- a/i18n/zh-TW.i18n.json +++ b/i18n/zh-TW.i18n.json @@ -276,7 +276,7 @@ "remove-cover": "移除封面", "remove-from-board": "從看板中刪除", "remove-label": "移除標籤", - "remove-list": "Remove the list", + "listDeletePopup-title": "Delete the list ?", "remove-member": "移除成員", "remove-member-from-card": "從該卡片中移除", "remove-member-pop": "確定從 __boardTitle__ 中移除 __name__ (__username__) 嗎? 該成員將被從該看板的所有卡片中移除,同時他會收到一則提醒。", -- cgit v1.2.3-1-g7c22 From e33156dcc45b360b6ec9e82f90d17c4f0c8da7ce Mon Sep 17 00:00:00 2001 From: BaobabCoder Date: Fri, 2 Jun 2017 14:39:12 +0200 Subject: Remove translation for transifex --- i18n/ar.i18n.json | 5 ----- i18n/br.i18n.json | 5 ----- i18n/ca.i18n.json | 5 ----- i18n/cs.i18n.json | 5 ----- i18n/de.i18n.json | 5 ----- i18n/en.i18n.json | 1 - i18n/es-ES.i18n.json | 5 ----- i18n/es.i18n.json | 4 ---- i18n/fa.i18n.json | 5 ----- i18n/fi.i18n.json | 5 ----- i18n/fr.i18n.json | 5 ----- i18n/he.i18n.json | 5 ----- i18n/it.i18n.json | 5 ----- i18n/ja.i18n.json | 5 ----- i18n/ko.i18n.json | 5 ----- i18n/pl.i18n.json | 5 ----- i18n/pt-BR.i18n.json | 5 ----- i18n/ro.i18n.json | 5 ----- i18n/ru.i18n.json | 5 ----- i18n/sr.i18n.json | 5 ----- i18n/tr.i18n.json | 5 ----- i18n/zh-CN.i18n.json | 5 ----- i18n/zh-TW.i18n.json | 5 ----- 23 files changed, 110 deletions(-) diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json index bb065628..c287ea0a 100644 --- a/i18n/ar.i18n.json +++ b/i18n/ar.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "تحديد بطاقات هذه القائمة", "listActionPopup-title": "قائمة الإجراءات", "listImportCardPopup-title": "Import a Trello card", - "listMorePopup-title": "المزيد", - "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.", - "link-list": "Link to this list", "lists": "القائمات", "log-out": "تسجيل الخروج", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "حذف الغلاف", "remove-from-board": "حذف من اللوحة", "remove-label": "حذف هذه العلامة", - "listDeletePopup-title": "Delete the 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 ab4e3075..8b143f82 100644 --- a/i18n/br.i18n.json +++ b/i18n/br.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Select all cards in this list", "listActionPopup-title": "List Actions", "listImportCardPopup-title": "Import a Trello card", - "listMorePopup-title": "Muioc’h", - "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.", - "link-list": "Link to this list", "lists": "Lists", "log-out": "Log Out", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "Remove Cover", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "listDeletePopup-title": "Delete the 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 7f589688..4b5f8d31 100644 --- a/i18n/ca.i18n.json +++ b/i18n/ca.i18n.json @@ -227,10 +227,6 @@ "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", - "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.", - "link-list": "Link to this list", "lists": "Llistes", "log-out": "Finalitza la sessió", "log-in": "Ingresa", @@ -276,7 +272,6 @@ "remove-cover": "Elimina coberta", "remove-from-board": "Elimina del tauler", "remove-label": "Eliminia etiqueta", - "listDeletePopup-title": "Elimina 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ó.", diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json index c4fe21a7..ef1ddf26 100644 --- a/i18n/cs.i18n.json +++ b/i18n/cs.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Vybrat všechny karty v tomto seznamu", "listActionPopup-title": "Vypsat akce", "listImportCardPopup-title": "Importovat Trello kartu", - "listMorePopup-title": "Více", - "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.", - "link-list": "Link to this list", "lists": "Seznamy", "log-out": "Odhlásit", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "Odstranit obal", "remove-from-board": "Odstranit z tabla", "remove-label": "Odstranit štítek", - "listDeletePopup-title": "Delete the 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 0ea1e6a8..787b5a0f 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Alle Karten in dieser Liste auswählen", "listActionPopup-title": "Listenaktionen", "listImportCardPopup-title": "Eine Trello-Karte importieren", - "listMorePopup-title": "Mehr", - "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.", - "link-list": "Link to this list", "lists": "Listen", "log-out": "Ausloggen", "log-in": "Einloggen", @@ -276,7 +272,6 @@ "remove-cover": "Cover entfernen", "remove-from-board": "Von Board entfernen", "remove-label": "Label entfernen", - "listDeletePopup-title": "Delete the 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. Er erhält eine Benachrichtigung.", diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json index 06750e42..829b30e6 100644 --- a/i18n/en.i18n.json +++ b/i18n/en.i18n.json @@ -231,7 +231,6 @@ "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", diff --git a/i18n/es-ES.i18n.json b/i18n/es-ES.i18n.json index 573ea648..f5da8370 100644 --- a/i18n/es-ES.i18n.json +++ b/i18n/es-ES.i18n.json @@ -223,10 +223,6 @@ "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", @@ -272,7 +268,6 @@ "remove-cover": "Eliminar cubierta", "remove-from-board": "Eliminar del tablero", "remove-label": "Eliminar etiqueta", - "listDeletePopup-title": "Delete the 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 8f6fe6a4..ab067c7a 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -227,10 +227,6 @@ "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", - "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.", - "link-list": "Link to this list", "lists": "Listas", "log-out": "Finalizar la sesion", "log-in": "Iniciar sesion", diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json index 49dfa64b..667f87b4 100644 --- a/i18n/fa.i18n.json +++ b/i18n/fa.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "انتخاب تمام کارت ها در این لیست", "listActionPopup-title": "لیست اقدامات", "listImportCardPopup-title": "وارد کردن کارت Trello", - "listMorePopup-title": "بیشتر", - "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.", - "link-list": "Link to this list", "lists": "لیست ها", "log-out": "خروج", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "حذف کاور", "remove-from-board": "حذف از برد", "remove-label": "حذف برچسب", - "listDeletePopup-title": "Delete the 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 8cbfcc2e..63e79088 100644 --- a/i18n/fi.i18n.json +++ b/i18n/fi.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Valitse kaikki kortit tässä listassa", "listActionPopup-title": "Listaa toimet", "listImportCardPopup-title": "Tuo Trello kortti", - "listMorePopup-title": "Lisää", - "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.", - "link-list": "Link to this list", "lists": "Listat", "log-out": "Kirjaudu ulos", "log-in": "Kirjaudu sisään", @@ -276,7 +272,6 @@ "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.", diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index 60261d03..22243159 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Sélectionner les cartes de cette liste", "listActionPopup-title": "Liste des actions", "listImportCardPopup-title": "Importer une carte Trello", - "listMorePopup-title": "Plus", - "link-list": "Lier à cette liste", - "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": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "Enlever la couverture", "remove-from-board": "Retirer du tableau", "remove-label": "Retirer cette étiquette", - "listDeletePopup-title": "Supprimer la liste", "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.", diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json index e430d099..85b5f5b3 100644 --- a/i18n/he.i18n.json +++ b/i18n/he.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "בחר את כל הכרטיסים ברשימה זו", "listActionPopup-title": "פעולות רשימה", "listImportCardPopup-title": "ייבא כרטיס מטרלו", - "listMorePopup-title": "עוד", - "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.", - "link-list": "Link to this list", "lists": "רשימות", "log-out": "התנתק", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "הסר כיסוי", "remove-from-board": "הסר מהלוח", "remove-label": "הסר תווית", - "listDeletePopup-title": "Delete the 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 a407cd9a..8d8a1c34 100755 --- a/i18n/it.i18n.json +++ b/i18n/it.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Selezione tutte le schede in questa lista", "listActionPopup-title": "Azioni disponibili", "listImportCardPopup-title": "Importa una scheda di Trello", - "listMorePopup-title": "Altro", - "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.", - "link-list": "Link to this list", "lists": "Liste", "log-out": "Log Out", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "Rimuovi cover", "remove-from-board": "Rimuovi dalla bacheca", "remove-label": "Rimuovi l'etichetta", - "listDeletePopup-title": "Delete the 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 ed25a85f..1826f064 100644 --- a/i18n/ja.i18n.json +++ b/i18n/ja.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Select all cards in this list", "listActionPopup-title": "操作一覧", "listImportCardPopup-title": "Import a Trello card", - "listMorePopup-title": "さらに見る", - "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.", - "link-list": "Link to this list", "lists": "Lists", "log-out": "ログアウト", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "カバーの削除", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "listDeletePopup-title": "Delete the 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 88f93f34..9b5226c4 100644 --- a/i18n/ko.i18n.json +++ b/i18n/ko.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Select all cards in this list", "listActionPopup-title": "동작 목록", "listImportCardPopup-title": "Import a Trello card", - "listMorePopup-title": "더보기", - "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.", - "link-list": "Link to this list", "lists": "Lists", "log-out": "로그아웃", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "커버 제거", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "listDeletePopup-title": "Delete the list ?", "remove-member": "멤버 제거", "remove-member-from-card": "카드에서 제거", "remove-member-pop": "__boardTitle__에서 __name__(__username__) 을 제거합니까? 그 멤버는 이 보드의 모든 카드에서 제거됩니다. 그에대한 알람을 받게됩니다.", diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json index 9fc1e85f..d5a3fd7d 100644 --- a/i18n/pl.i18n.json +++ b/i18n/pl.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Zaznacz wszystkie karty z tej listy", "listActionPopup-title": "Lista akcji", "listImportCardPopup-title": "Zaimportuj kartę z Trello", - "listMorePopup-title": "Więcej", - "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.", - "link-list": "Link to this list", "lists": "Listy", "log-out": "Wyloguj", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "Usuń okładkę", "remove-from-board": "Usuń z tablicy", "remove-label": "Usuń etykietę", - "listDeletePopup-title": "Delete the 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 d2a9d692..6739f9b9 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -227,10 +227,6 @@ "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", - "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.", - "link-list": "Link to this list", "lists": "Listas", "log-out": "Sair", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "Remover Capa", "remove-from-board": "Remover do Quadro", "remove-label": "Remover Etiqueta", - "listDeletePopup-title": "Delete the 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 999cae95..a4de961b 100644 --- a/i18n/ro.i18n.json +++ b/i18n/ro.i18n.json @@ -227,10 +227,6 @@ "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", @@ -276,7 +272,6 @@ "remove-cover": "Remove Cover", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "listDeletePopup-title": "Delete the 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 8055173c..48401b17 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Выбрать все карточки в этом списке", "listActionPopup-title": "Список действий", "listImportCardPopup-title": "Импортировать Trello карточку", - "listMorePopup-title": "Поделиться", - "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.", - "link-list": "Link to this list", "lists": "Списки", "log-out": "Выйти", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "Открепить", "remove-from-board": "Удалить с доски", "remove-label": "Удалить метку", - "listDeletePopup-title": "Delete the 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 265f27a4..2dd7ca97 100644 --- a/i18n/sr.i18n.json +++ b/i18n/sr.i18n.json @@ -227,10 +227,6 @@ "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", @@ -276,7 +272,6 @@ "remove-cover": "Remove Cover", "remove-from-board": "Ukloni iz table", "remove-label": "Ukloni natpis", - "listDeletePopup-title": "Delete the 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/tr.i18n.json b/i18n/tr.i18n.json index b86a22b6..3dc0781c 100644 --- a/i18n/tr.i18n.json +++ b/i18n/tr.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "Select all cards in this list", "listActionPopup-title": "Liste İşlemleri", "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": "Oturum Kapat", "log-in": "Log In", @@ -276,7 +272,6 @@ "remove-cover": "Remove Cover", "remove-from-board": "Remove from Board", "remove-label": "Remove the label", - "listDeletePopup-title": "Delete the 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 22658732..0e4db570 100644 --- a/i18n/zh-CN.i18n.json +++ b/i18n/zh-CN.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "选择清单中的所有卡片", "listActionPopup-title": "清单操作", "listImportCardPopup-title": "导入 Trello 卡片", - "listMorePopup-title": "更多", - "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.", - "link-list": "Link to this list", "lists": "清单", "log-out": "登出", "log-in": "登录", @@ -276,7 +272,6 @@ "remove-cover": "移除封面", "remove-from-board": "从看板中删除", "remove-label": "移除标签", - "listDeletePopup-title": "Delete the 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 a8c934b5..59805a4f 100644 --- a/i18n/zh-TW.i18n.json +++ b/i18n/zh-TW.i18n.json @@ -227,10 +227,6 @@ "list-select-cards": "選擇清單中的所有卡片", "listActionPopup-title": "清單操作", "listImportCardPopup-title": "匯入 Trello 卡片", - "listMorePopup-title": "更多", - "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.", - "link-list": "Link to this list", "lists": "清單", "log-out": "登出", "log-in": "登入", @@ -276,7 +272,6 @@ "remove-cover": "移除封面", "remove-from-board": "從看板中刪除", "remove-label": "移除標籤", - "listDeletePopup-title": "Delete the list ?", "remove-member": "移除成員", "remove-member-from-card": "從該卡片中移除", "remove-member-pop": "確定從 __boardTitle__ 中移除 __name__ (__username__) 嗎? 該成員將被從該看板的所有卡片中移除,同時他會收到一則提醒。", -- cgit v1.2.3-1-g7c22 From 59c3cd3956b20eb2cc9af26f776def055cd2d3c0 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 2 Jun 2017 17:41:30 +0300 Subject: Change the way to delete a list (card-like). Closes #1023 --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b2ec0d4..f792e85d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ This release adds the following new features: -* [Change the way to delete a list (card-like)](https://github.com/wekan/wekan/pull/1050) +* [Change the way to delete a list (card-like)](https://github.com/wekan/wekan/pull/1050), fixes + [missing undo button](https://github.com/wekan/wekan/issues/1023). Thanks to GitHub users BaobabCoder for contributions. -- cgit v1.2.3-1-g7c22