Change the way to remove a list (card like)

This commit is contained in:
BaobabCoder 2017-06-02 10:29:48 +02:00
parent 425129eb16
commit 5b0da6cb3a
25 changed files with 170 additions and 104 deletions

View file

@ -35,7 +35,7 @@ template(name="listActionPopup")
li: a.js-close-list {{_ 'archive-list'}} li: a.js-close-list {{_ 'archive-list'}}
hr hr
ul.pop-over-list ul.pop-over-list
li: a.js-remove-list {{_ 'remove-list'}} li: a.js-more {{_ 'listMorePopup-title'}}
template(name="boardLists") template(name="boardLists")
ul.pop-over-list ul.pop-over-list
@ -45,3 +45,20 @@ template(name="boardLists")
a.disabled {{title}} ({{_ 'current'}}) a.disabled {{title}} ({{_ 'current'}})
else else
a.js-select-list= title 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'}}

View file

@ -1,69 +1,72 @@
BlazeComponent.extendComponent({ BlazeComponent.extendComponent({
editTitle(evt) { editTitle(evt) {
evt.preventDefault(); evt.preventDefault();
const newTitle = this.childComponents('inlinedForm')[0].getValue().trim(); const newTitle = this.childComponents('inlinedForm')[0].getValue().trim();
const list = this.currentData(); const list = this.currentData();
if (newTitle) { if (newTitle) {
list.rename(newTitle.trim()); list.rename(newTitle.trim());
} }
}, },
isWatching() { isWatching() {
const list = this.currentData(); const list = this.currentData();
return list.findWatcher(Meteor.userId()); return list.findWatcher(Meteor.userId());
}, },
limitToShowCardsCount() { limitToShowCardsCount() {
return Meteor.user().getLimitToShowCardsCount(); return Meteor.user().getLimitToShowCardsCount();
}, },
showCardsCountForList(count) { showCardsCountForList(count) {
return count > this.limitToShowCardsCount(); return count > this.limitToShowCardsCount();
}, },
events() { events() {
return [{ return [{
'click .js-open-list-menu': Popup.open('listAction'), 'click .js-open-list-menu': Popup.open('listAction'),
submit: this.editTitle, submit: this.editTitle,
}]; }];
}, },
}).register('listHeader'); }).register('listHeader');
Template.listActionPopup.helpers({ Template.listActionPopup.helpers({
isWatching() { isWatching() {
return this.findWatcher(Meteor.userId()); return this.findWatcher(Meteor.userId());
}, },
}); });
Template.listActionPopup.events({ Template.listActionPopup.events({
'click .js-add-card'() { 'click .js-add-card' () {
const listDom = document.getElementById(`js-list-${this._id}`); const listDom = document.getElementById(`js-list-${this._id}`);
const listComponent = BlazeComponent.getComponentForElement(listDom); const listComponent = BlazeComponent.getComponentForElement(listDom);
listComponent.openForm({ position: 'top' }); listComponent.openForm({ position: 'top' });
Popup.close(); Popup.close();
}, },
'click .js-list-subscribe'() {}, 'click .js-list-subscribe' () {},
'click .js-select-cards'() { 'click .js-select-cards' () {
const cardIds = this.allCards().map((card) => card._id); const cardIds = this.allCards().map((card) => card._id);
MultiSelection.add(cardIds); MultiSelection.add(cardIds);
Popup.close(); Popup.close();
}, },
'click .js-toggle-watch-list'() { 'click .js-toggle-watch-list' () {
const currentList = this; const currentList = this;
const level = currentList.findWatcher(Meteor.userId()) ? null : 'watching'; const level = currentList.findWatcher(Meteor.userId()) ? null : 'watching';
Meteor.call('watch', 'list', currentList._id, level, (err, ret) => { Meteor.call('watch', 'list', currentList._id, level, (err, ret) => {
if (!err && ret) Popup.close(); if (!err && ret) Popup.close();
}); });
}, },
'click .js-close-list'(evt) { 'click .js-close-list' (evt) {
evt.preventDefault(); evt.preventDefault();
this.archive(); this.archive();
Popup.close(); Popup.close();
}, },
'click .js-remove-list'(evt) { 'click .js-more': Popup.open('listMore'),
const currentList = this;
evt.preventDefault();
Lists.remove(currentList._id);
Popup.close();
},
}); });
Template.listMorePopup.events({
'click .js-delete': Popup.afterConfirm('listDelete', function() {
Popup.close();
Lists.remove(this._id);
Utils.goBoardId(this.boardId);
}),
});

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "اضغط لإضافة اللوحة للمفضلة.", "click-to-star": "اضغط لإضافة اللوحة للمفضلة.",
"click-to-unstar": "اضغط لحذف اللوحة من المفضلة.", "click-to-unstar": "اضغط لحذف اللوحة من المفضلة.",
"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.", "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": "تحديد بطاقات هذه القائمة", "list-select-cards": "تحديد بطاقات هذه القائمة",
"listActionPopup-title": "قائمة الإجراءات", "listActionPopup-title": "قائمة الإجراءات",
"listImportCardPopup-title": "Import a Trello card", "listImportCardPopup-title": "Import a Trello card",
"listMorePopup-title": "المزيد",
"link-list": "Link to this list",
"lists": "القائمات", "lists": "القائمات",
"log-out": "تسجيل الخروج", "log-out": "تسجيل الخروج",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "ماذا تريد أن تنجز?" "what-to-do": "ماذا تريد أن تنجز?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Click to star this board.", "click-to-star": "Click to star this board.",
"click-to-unstar": "Click to unstar this board.", "click-to-unstar": "Click to unstar this board.",
"clipboard" : "Clipboard or drag & drop", "clipboard": "Clipboard or drag & drop",
"close": "Close", "close": "Close",
"close-board": "Close Board", "close-board": "Close Board",
"close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", "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", "list-select-cards": "Select all cards in this list",
"listActionPopup-title": "List Actions", "listActionPopup-title": "List Actions",
"listImportCardPopup-title": "Import a Trello card", "listImportCardPopup-title": "Import a Trello card",
"listMorePopup-title": "Muioch",
"link-list": "Link to this list",
"lists": "Lists", "lists": "Lists",
"log-out": "Log Out", "log-out": "Log Out",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "What do you want to do?" "what-to-do": "What do you want to do?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Fes clic per destacar aquest tauler.", "click-to-star": "Fes clic per destacar aquest tauler.",
"click-to-unstar": "Fes clic per deixar de 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": "Tanca",
"close-board": "Tanca tauler", "close-board": "Tanca tauler",
"close-board-pop": "Podràs restaurar el tauler, seleccionant \"Arxivats\" de la finistra principal", "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", "list-select-cards": "Selecciona totes les fitxes d'aquesta llista",
"listActionPopup-title": "Accions de la llista", "listActionPopup-title": "Accions de la llista",
"listImportCardPopup-title": "importa una fitxa de Trello", "listImportCardPopup-title": "importa una fitxa de Trello",
"listMorePopup-title": "Més",
"link-list": "Link to this list",
"lists": "Llistes", "lists": "Llistes",
"log-out": "Finalitza la sessió", "log-out": "Finalitza la sessió",
"log-in": "Ingresa", "log-in": "Ingresa",
@ -321,4 +323,4 @@
"welcome-list1": "Bàsics", "welcome-list1": "Bàsics",
"welcome-list2": "Avançades", "welcome-list2": "Avançades",
"what-to-do": "Què vols fer?" "what-to-do": "Què vols fer?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Kliknutím přidat hvězdičku tomuto tablu.", "click-to-star": "Kliknutím přidat hvězdičku tomuto tablu.",
"click-to-unstar": "Kliknutím odebrat 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": "Zavřít",
"close-board": "Zavřít tablo", "close-board": "Zavřít tablo",
"close-board-pop": "Budete moci obnovit tablo kliknutím na tlačítko \"Archivy\" v hlavním menu.", "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", "list-select-cards": "Vybrat všechny karty v tomto seznamu",
"listActionPopup-title": "Vypsat akce", "listActionPopup-title": "Vypsat akce",
"listImportCardPopup-title": "Importovat Trello kartu", "listImportCardPopup-title": "Importovat Trello kartu",
"listMorePopup-title": "Více",
"link-list": "Link to this list",
"lists": "Seznamy", "lists": "Seznamy",
"log-out": "Odhlásit", "log-out": "Odhlásit",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "Co chcete dělat?" "what-to-do": "Co chcete dělat?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Klicken um dem Board einen Stern zu geben.", "click-to-star": "Klicken um dem Board einen Stern zu geben.",
"click-to-unstar": "Klicken um den Stern von dem Board zu entfernen.", "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": "Schließen",
"close-board": "Board 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.", "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", "list-select-cards": "Alle Karten in dieser Liste auswählen",
"listActionPopup-title": "Listenaktionen", "listActionPopup-title": "Listenaktionen",
"listImportCardPopup-title": "Eine Trello-Karte importieren", "listImportCardPopup-title": "Eine Trello-Karte importieren",
"listMorePopup-title": "Mehr",
"link-list": "Link to this list",
"lists": "Listen", "lists": "Listen",
"log-out": "Ausloggen", "log-out": "Ausloggen",
"log-in": "Einloggen", "log-in": "Einloggen",
@ -321,4 +323,4 @@
"welcome-list1": "Grundlagen", "welcome-list1": "Grundlagen",
"welcome-list2": "Fortgeschritten", "welcome-list2": "Fortgeschritten",
"what-to-do": "Was willst du tun?" "what-to-do": "Was willst du tun?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Click to star this board.", "click-to-star": "Click to star this board.",
"click-to-unstar": "Click to unstar this board.", "click-to-unstar": "Click to unstar this board.",
"clipboard" : "Clipboard or drag & drop", "clipboard": "Clipboard or drag & drop",
"close": "Close", "close": "Close",
"close-board": "Close Board", "close-board": "Close Board",
"close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", "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", "list-select-cards": "Select all cards in this list",
"listActionPopup-title": "List Actions", "listActionPopup-title": "List Actions",
"listImportCardPopup-title": "Import a Trello card", "listImportCardPopup-title": "Import a Trello card",
"listMorePopup-title": "More",
"link-list": "Link to this list",
"lists": "Lists", "lists": "Lists",
"log-out": "Log Out", "log-out": "Log Out",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "What do you want to do?" "what-to-do": "What do you want to do?"
} }

View file

@ -117,7 +117,7 @@
"changeSettingsPopup-title": "Change Settings", "changeSettingsPopup-title": "Change Settings",
"click-to-star": "Haz clic para destacar este tablero.", "click-to-star": "Haz clic para destacar este tablero.",
"click-to-unstar": "Haz clic para dejar de 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": "Cerrar",
"close-board": "Cerrar tablero", "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.", "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", "list-select-cards": "Seleccionar todas las tarjetas en esta lista",
"listActionPopup-title": "Acciones de la lista", "listActionPopup-title": "Acciones de la lista",
"listImportCardPopup-title": "Importar tarjeta de Trello", "listImportCardPopup-title": "Importar tarjeta de Trello",
"listMorePopup-title": "Más",
"link-list": "Link to this list",
"lists": "Listas", "lists": "Listas",
"log-out": "Finalizar la sesión", "log-out": "Finalizar la sesión",
"log-in": "Log In", "log-in": "Log In",
@ -317,4 +319,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "¿Qué quieres hacer?" "what-to-do": "¿Qué quieres hacer?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Haz clic para destacar este tablero. ", "click-to-star": "Haz clic para destacar este tablero. ",
"click-to-unstar": "Haz clic para dejar de 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": "Cerrar",
"close-board": "Cerrar el tablero", "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.", "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", "list-select-cards": "Select all cards in this list",
"listActionPopup-title": "Acciones de la lista", "listActionPopup-title": "Acciones de la lista",
"listImportCardPopup-title": "Importar una tarjeta de Trello", "listImportCardPopup-title": "Importar una tarjeta de Trello",
"listMorePopup-title": "Más",
"link-list": "Link to this list",
"lists": "Listas", "lists": "Listas",
"log-out": "Finalizar la sesion", "log-out": "Finalizar la sesion",
"log-in": "Iniciar sesion", "log-in": "Iniciar sesion",
@ -321,4 +323,4 @@
"welcome-list1": "Basicos", "welcome-list1": "Basicos",
"welcome-list2": "Avanzados", "welcome-list2": "Avanzados",
"what-to-do": "What do you want to do?" "what-to-do": "What do you want to do?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "جهت افزودن ستاره کلیک کنید .", "click-to-star": "جهت افزودن ستاره کلیک کنید .",
"click-to-unstar": "جهت کاهش ستاره کلیک کنید.", "click-to-unstar": "جهت کاهش ستاره کلیک کنید.",
"clipboard" : "ذخیره در حافظه ویا بکش-رهاکن", "clipboard": "ذخیره در حافظه ویا بکش-رهاکن",
"close": "بستن", "close": "بستن",
"close-board": "بستن برد", "close-board": "بستن برد",
"close-board-pop": "شما می توانید با کلیک بر دکمه \"بایگانی\" از قسمت بالای خانه، تخته را بازگذاری نمایید.", "close-board-pop": "شما می توانید با کلیک بر دکمه \"بایگانی\" از قسمت بالای خانه، تخته را بازگذاری نمایید.",
@ -227,6 +227,8 @@
"list-select-cards": "انتخاب تمام کارت ها در این لیست", "list-select-cards": "انتخاب تمام کارت ها در این لیست",
"listActionPopup-title": "لیست اقدامات", "listActionPopup-title": "لیست اقدامات",
"listImportCardPopup-title": "وارد کردن کارت Trello", "listImportCardPopup-title": "وارد کردن کارت Trello",
"listMorePopup-title": "بیشتر",
"link-list": "Link to this list",
"lists": "لیست ها", "lists": "لیست ها",
"log-out": "خروج", "log-out": "خروج",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "چه کاری می خواهید انجام دهید؟" "what-to-do": "چه کاری می خواهید انجام دهید؟"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Tarkistuslistat", "checklists": "Tarkistuslistat",
"click-to-star": "Klikkaa merkataksesi tämä taulu tähdellä.", "click-to-star": "Klikkaa merkataksesi tämä taulu tähdellä.",
"click-to-unstar": "Klikkaa poistaaksesi tähtimerkintä taululta.", "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": "Sulje",
"close-board": "Sulje taulu", "close-board": "Sulje taulu",
"close-board-pop": "Voit palauttaa taulun klikkaamalla “Arkistot” painiketta kotiotsikosta.", "close-board-pop": "Voit palauttaa taulun klikkaamalla “Arkistot” painiketta kotiotsikosta.",
@ -227,6 +227,8 @@
"list-select-cards": "Valitse kaikki kortit tässä listassa", "list-select-cards": "Valitse kaikki kortit tässä listassa",
"listActionPopup-title": "Listaa toimet", "listActionPopup-title": "Listaa toimet",
"listImportCardPopup-title": "Tuo Trello kortti", "listImportCardPopup-title": "Tuo Trello kortti",
"listMorePopup-title": "Lisää",
"link-list": "Link to this list",
"lists": "Listat", "lists": "Listat",
"log-out": "Kirjaudu ulos", "log-out": "Kirjaudu ulos",
"log-in": "Kirjaudu sisään", "log-in": "Kirjaudu sisään",
@ -321,4 +323,4 @@
"welcome-list1": "Perusasiat", "welcome-list1": "Perusasiat",
"welcome-list2": "Edistynyt", "welcome-list2": "Edistynyt",
"what-to-do": "Mitä haluat tehdä?" "what-to-do": "Mitä haluat tehdä?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Cliquez pour ajouter ce tableau aux favoris.", "click-to-star": "Cliquez pour ajouter ce tableau aux favoris.",
"click-to-unstar": "Cliquez pour retirer ce tableau des 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": "Fermer",
"close-board": "Fermer le tableau", "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.", "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", "list-select-cards": "Sélectionner les cartes de cette liste",
"listActionPopup-title": "Liste des actions", "listActionPopup-title": "Liste des actions",
"listImportCardPopup-title": "Importer une carte Trello", "listImportCardPopup-title": "Importer une carte Trello",
"listMorePopup-title": "Plus",
"link-list": "Lier à cette liste",
"lists": "Listes", "lists": "Listes",
"log-out": "Déconnexion", "log-out": "Déconnexion",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "Que voulez-vous faire ?" "what-to-do": "Que voulez-vous faire ?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "לחץ להוספת הלוח למועדפים", "click-to-star": "לחץ להוספת הלוח למועדפים",
"click-to-unstar": "לחץ להסרת הלוח מהמועדפים.", "click-to-unstar": "לחץ להסרת הלוח מהמועדפים.",
"clipboard" : "Clipboard or drag & drop", "clipboard": "Clipboard or drag & drop",
"close": "סגור", "close": "סגור",
"close-board": "סגור לוח", "close-board": "סגור לוח",
"close-board-pop": "תוכלו לשחזר את הלוח בלחיצה על כפתור \"ארכיונים\" מהכותרת העליונה.", "close-board-pop": "תוכלו לשחזר את הלוח בלחיצה על כפתור \"ארכיונים\" מהכותרת העליונה.",
@ -227,6 +227,8 @@
"list-select-cards": "בחר את כל הכרטיסים ברשימה זו", "list-select-cards": "בחר את כל הכרטיסים ברשימה זו",
"listActionPopup-title": "פעולות רשימה", "listActionPopup-title": "פעולות רשימה",
"listImportCardPopup-title": "ייבא כרטיס מטרלו", "listImportCardPopup-title": "ייבא כרטיס מטרלו",
"listMorePopup-title": "עוד",
"link-list": "Link to this list",
"lists": "רשימות", "lists": "רשימות",
"log-out": "התנתק", "log-out": "התנתק",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "מה תרצה לעשות?" "what-to-do": "מה תרצה לעשות?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Clicca per stellare questa bacheca", "click-to-star": "Clicca per stellare questa bacheca",
"click-to-unstar": "Clicca per togliere la stella da 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": "Chiudi",
"close-board": "Chiudi bacheca", "close-board": "Chiudi bacheca",
"close-board-pop": "Sarai in grado di ripristinare la bacheca cliccando il tasto \"Archivi\" dall'intestazione della pagina principale.", "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", "list-select-cards": "Selezione tutte le schede in questa lista",
"listActionPopup-title": "Azioni disponibili", "listActionPopup-title": "Azioni disponibili",
"listImportCardPopup-title": "Importa una scheda di Trello", "listImportCardPopup-title": "Importa una scheda di Trello",
"listMorePopup-title": "Altro",
"link-list": "Link to this list",
"lists": "Liste", "lists": "Liste",
"log-out": "Log Out", "log-out": "Log Out",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basi", "welcome-list1": "Basi",
"welcome-list2": "Avanzate", "welcome-list2": "Avanzate",
"what-to-do": "Cosa vuoi fare?" "what-to-do": "Cosa vuoi fare?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "ボードにスターをつける", "click-to-star": "ボードにスターをつける",
"click-to-unstar": "ボードからスターを外す", "click-to-unstar": "ボードからスターを外す",
"clipboard" : "Clipboard or drag & drop", "clipboard": "Clipboard or drag & drop",
"close": "閉じる", "close": "閉じる",
"close-board": "Close Board", "close-board": "Close Board",
"close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", "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", "list-select-cards": "Select all cards in this list",
"listActionPopup-title": "操作一覧", "listActionPopup-title": "操作一覧",
"listImportCardPopup-title": "Import a Trello card", "listImportCardPopup-title": "Import a Trello card",
"listMorePopup-title": "さらに見る",
"link-list": "Link to this list",
"lists": "Lists", "lists": "Lists",
"log-out": "ログアウト", "log-out": "ログアウト",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "What do you want to do?" "what-to-do": "What do you want to do?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "보드 별 추가.", "click-to-star": "보드 별 추가.",
"click-to-unstar": "보드 별 삭제.", "click-to-unstar": "보드 별 삭제.",
"clipboard" : "Clipboard or drag & drop", "clipboard": "Clipboard or drag & drop",
"close": "닫기", "close": "닫기",
"close-board": "Close Board", "close-board": "Close Board",
"close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", "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", "list-select-cards": "Select all cards in this list",
"listActionPopup-title": "동작 목록", "listActionPopup-title": "동작 목록",
"listImportCardPopup-title": "Import a Trello card", "listImportCardPopup-title": "Import a Trello card",
"listMorePopup-title": "더보기",
"link-list": "Link to this list",
"lists": "Lists", "lists": "Lists",
"log-out": "로그아웃", "log-out": "로그아웃",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "무엇을 원하나요?" "what-to-do": "무엇을 원하나요?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Kliknij by odznaczyć tę tablicę.", "click-to-star": "Kliknij by odznaczyć tę tablicę.",
"click-to-unstar": "Kliknij by usunąć odznaczenie tej tablicy.", "click-to-unstar": "Kliknij by usunąć odznaczenie tej tablicy.",
"clipboard" : "Schowek lub przeciągnij & upuść", "clipboard": "Schowek lub przeciągnij & upuść",
"close": "Zamknij", "close": "Zamknij",
"close-board": "Zamknij tablicę", "close-board": "Zamknij tablicę",
"close-board-pop": "Możesz przywrócić tablicę klikając przycisk \"Zarchiwizowane\" z głównej belki.", "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", "list-select-cards": "Zaznacz wszystkie karty z tej listy",
"listActionPopup-title": "Lista akcji", "listActionPopup-title": "Lista akcji",
"listImportCardPopup-title": "Zaimportuj kartę z Trello", "listImportCardPopup-title": "Zaimportuj kartę z Trello",
"listMorePopup-title": "Więcej",
"link-list": "Link to this list",
"lists": "Listy", "lists": "Listy",
"log-out": "Wyloguj", "log-out": "Wyloguj",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "Co chcesz zrobić?" "what-to-do": "Co chcesz zrobić?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Marcar quadro como favorito.", "click-to-star": "Marcar quadro como favorito.",
"click-to-unstar": "Remover quadro dos favoritos.", "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": "Fechar",
"close-board": "Fechar Quadro", "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.", "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", "list-select-cards": "Selecionar todos os cartões nesta lista",
"listActionPopup-title": "Listar Ações", "listActionPopup-title": "Listar Ações",
"listImportCardPopup-title": "Importe um cartão do Trello", "listImportCardPopup-title": "Importe um cartão do Trello",
"listMorePopup-title": "Mais",
"link-list": "Link to this list",
"lists": "Listas", "lists": "Listas",
"log-out": "Sair", "log-out": "Sair",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "O que você gostaria de fazer?" "what-to-do": "O que você gostaria de fazer?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Click to star this board.", "click-to-star": "Click to star this board.",
"click-to-unstar": "Click to unstar this board.", "click-to-unstar": "Click to unstar this board.",
"clipboard" : "Clipboard or drag & drop", "clipboard": "Clipboard or drag & drop",
"close": "Închide", "close": "Închide",
"close-board": "Close Board", "close-board": "Close Board",
"close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", "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", "list-select-cards": "Select all cards in this list",
"listActionPopup-title": "List Actions", "listActionPopup-title": "List Actions",
"listImportCardPopup-title": "Import a Trello card", "listImportCardPopup-title": "Import a Trello card",
"listMorePopup-title": "More",
"link-list": "Link to this list",
"lists": "Liste", "lists": "Liste",
"log-out": "Log Out", "log-out": "Log Out",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "Ce ai vrea sa faci?" "what-to-do": "Ce ai vrea sa faci?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Добавить в «Избранное»", "click-to-star": "Добавить в «Избранное»",
"click-to-unstar": "Удалить из «Избранного»", "click-to-unstar": "Удалить из «Избранного»",
"clipboard" : "Буфер обмена или drag & drop", "clipboard": "Буфер обмена или drag & drop",
"close": "Закрыть", "close": "Закрыть",
"close-board": "Закрыть доску", "close-board": "Закрыть доску",
"close-board-pop": "Вы можете восстановить доску, нажав “Архивы” в заголовке.", "close-board-pop": "Вы можете восстановить доску, нажав “Архивы” в заголовке.",
@ -227,6 +227,8 @@
"list-select-cards": "Выбрать все карточки в этом списке", "list-select-cards": "Выбрать все карточки в этом списке",
"listActionPopup-title": "Список действий", "listActionPopup-title": "Список действий",
"listImportCardPopup-title": "Импортировать Trello карточку", "listImportCardPopup-title": "Импортировать Trello карточку",
"listMorePopup-title": "Поделиться",
"link-list": "Link to this list",
"lists": "Списки", "lists": "Списки",
"log-out": "Выйти", "log-out": "Выйти",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "Что вы хотите сделать?" "what-to-do": "Что вы хотите сделать?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Click to star this board.", "click-to-star": "Click to star this board.",
"click-to-unstar": "Click to unstar this board.", "click-to-unstar": "Click to unstar this board.",
"clipboard" : "Clipboard or drag & drop", "clipboard": "Clipboard or drag & drop",
"close": "Close", "close": "Close",
"close-board": "Close Board", "close-board": "Close Board",
"close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", "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", "list-select-cards": "Select all cards in this list",
"listActionPopup-title": "List Actions", "listActionPopup-title": "List Actions",
"listImportCardPopup-title": "Import a Trello card", "listImportCardPopup-title": "Import a Trello card",
"listMorePopup-title": "More",
"link-list": "Link to this list",
"lists": "Lists", "lists": "Lists",
"log-out": "Log Out", "log-out": "Log Out",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "Šta želiš da uradiš ?" "what-to-do": "Šta želiš da uradiš ?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "Bu panoyu yıldızlamak için tıkla.", "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.", "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": "Kapat",
"close-board": "Close Board", "close-board": "Close Board",
"close-board-pop": "You will be able to restore the board by clicking the “Archives” button from the home header.", "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", "list-select-cards": "Select all cards in this list",
"listActionPopup-title": "Liste İşlemleri", "listActionPopup-title": "Liste İşlemleri",
"listImportCardPopup-title": "Import a Trello card", "listImportCardPopup-title": "Import a Trello card",
"listMorePopup-title": "More",
"link-list": "Link to this list",
"lists": "Lists", "lists": "Lists",
"log-out": "Oturum Kapat", "log-out": "Oturum Kapat",
"log-in": "Log In", "log-in": "Log In",
@ -321,4 +323,4 @@
"welcome-list1": "Basics", "welcome-list1": "Basics",
"welcome-list2": "Advanced", "welcome-list2": "Advanced",
"what-to-do": "What do you want to do?" "what-to-do": "What do you want to do?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "点此来标记该看板", "click-to-star": "点此来标记该看板",
"click-to-unstar": "点此来去除该看板的标记", "click-to-unstar": "点此来去除该看板的标记",
"clipboard" : "剪贴板或者拖放文件", "clipboard": "剪贴板或者拖放文件",
"close": "关闭", "close": "关闭",
"close-board": "关闭看板", "close-board": "关闭看板",
"close-board-pop": "您可以通过点击主界面顶部的”回收箱“按钮来还原看板。", "close-board-pop": "您可以通过点击主界面顶部的”回收箱“按钮来还原看板。",
@ -227,6 +227,8 @@
"list-select-cards": "选择清单中的所有卡片", "list-select-cards": "选择清单中的所有卡片",
"listActionPopup-title": "清单操作", "listActionPopup-title": "清单操作",
"listImportCardPopup-title": "导入 Trello 卡片", "listImportCardPopup-title": "导入 Trello 卡片",
"listMorePopup-title": "更多",
"link-list": "Link to this list",
"lists": "清单", "lists": "清单",
"log-out": "登出", "log-out": "登出",
"log-in": "登录", "log-in": "登录",
@ -321,4 +323,4 @@
"welcome-list1": "基本", "welcome-list1": "基本",
"welcome-list2": "高阶", "welcome-list2": "高阶",
"what-to-do": "要做什么?" "what-to-do": "要做什么?"
} }

View file

@ -121,7 +121,7 @@
"checklists": "Checklists", "checklists": "Checklists",
"click-to-star": "點此來標記該看板", "click-to-star": "點此來標記該看板",
"click-to-unstar": "點此來去除該看板的標記", "click-to-unstar": "點此來去除該看板的標記",
"clipboard" : "剪貼簿貼上或者拖曳檔案", "clipboard": "剪貼簿貼上或者拖曳檔案",
"close": "關閉", "close": "關閉",
"close-board": "關閉看板", "close-board": "關閉看板",
"close-board-pop": "您可以透過點選主介面上方的”回收筒“按鈕來還原看板。", "close-board-pop": "您可以透過點選主介面上方的”回收筒“按鈕來還原看板。",
@ -227,6 +227,8 @@
"list-select-cards": "選擇清單中的所有卡片", "list-select-cards": "選擇清單中的所有卡片",
"listActionPopup-title": "清單操作", "listActionPopup-title": "清單操作",
"listImportCardPopup-title": "匯入 Trello 卡片", "listImportCardPopup-title": "匯入 Trello 卡片",
"listMorePopup-title": "更多",
"link-list": "Link to this list",
"lists": "清單", "lists": "清單",
"log-out": "登出", "log-out": "登出",
"log-in": "登入", "log-in": "登入",
@ -321,4 +323,4 @@
"welcome-list1": "基本", "welcome-list1": "基本",
"welcome-list2": "進階", "welcome-list2": "進階",
"what-to-do": "要做什麼?" "what-to-do": "要做什麼?"
} }