mirror of
https://github.com/wekan/wekan.git
synced 2025-04-20 12:07:11 -04:00
Change the way to remove a list (card like)
This commit is contained in:
parent
425129eb16
commit
5b0da6cb3a
25 changed files with 170 additions and 104 deletions
|
@ -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'}}
|
||||
|
|
|
@ -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);
|
||||
}),
|
||||
});
|
|
@ -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": "ماذا تريد أن تنجز?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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": "چه کاری می خواهید انجام دهید؟"
|
||||
}
|
||||
}
|
|
@ -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ä?"
|
||||
}
|
||||
}
|
|
@ -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 ?"
|
||||
}
|
||||
}
|
|
@ -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": "מה תרצה לעשות?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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": "무엇을 원하나요?"
|
||||
}
|
||||
}
|
|
@ -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ć?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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": "Что вы хотите сделать?"
|
||||
}
|
||||
}
|
|
@ -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š ?"
|
||||
}
|
||||
}
|
|
@ -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?"
|
||||
}
|
||||
}
|
|
@ -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": "要做什么?"
|
||||
}
|
||||
}
|
|
@ -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": "要做什麼?"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue