From 7c16e07f7dbc38ff8750e7b120ada30a48475fbe Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 5 Sep 2017 13:30:18 +0200 Subject: Added copy card to template --- client/components/cards/cardDetails.jade | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/client/components/cards/cardDetails.jade b/client/components/cards/cardDetails.jade index 72f5653f..61876bca 100644 --- a/client/components/cards/cardDetails.jade +++ b/client/components/cards/cardDetails.jade @@ -116,6 +116,7 @@ template(name="cardDetailsActionsPopup") hr ul.pop-over-list li: a.js-move-card {{_ 'moveCardPopup-title'}} + li: a.js-copy-card {{_ 'copyCardPopup-title'}} unless archived li: a.js-archive {{_ 'archive-card'}} li: a.js-more {{_ 'cardMorePopup-title'}} @@ -123,6 +124,12 @@ template(name="cardDetailsActionsPopup") template(name="moveCardPopup") +boardLists +template(name="copyCardPopup") + label(for='copy-card-title') {{_ 'title'}}: + textarea#copy-card-title.minicard-composer-textarea.js-card-title(autofocus) + label {{_ 'lists'}}: + +boardLists + template(name="cardMembersPopup") ul.pop-over-list.js-card-member-list each board.activeMembers -- cgit v1.2.3-1-g7c22 From a38b4c6a834ccf84c045de7d06f0058058056bdb Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 5 Sep 2017 13:30:38 +0200 Subject: Added copy card functionality --- client/components/cards/cardDetails.js | 45 ++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index 401a35ec..7c6c3ce7 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -157,6 +157,7 @@ Template.cardDetailsActionsPopup.events({ 'click .js-start-date': Popup.open('editCardStartDate'), 'click .js-due-date': Popup.open('editCardDueDate'), 'click .js-move-card': Popup.open('moveCard'), + 'click .js-copy-card': Popup.open('copyCard'), 'click .js-move-card-to-top' (evt) { evt.preventDefault(); const minOrder = _.min(this.list().cards().map((c) => c.sort)); @@ -206,6 +207,50 @@ Template.moveCardPopup.events({ }, }); +Template.copyCardPopup.events({ + 'click .js-select-list' (evt) { + const card = Cards.findOne(Session.get('currentCard')); + const oldId = card._id; + card._id = null; + card.listId = this._id; + const textarea = $(evt.currentTarget).parents('.content').find('textarea'); + const title = textarea.val().trim(); + // insert new card to the bottom of new list + card.sort = Lists.findOne(this._id).cards().count(); + + if (title) { + card.title = title; + const _id = Cards.insert(card); + // In case the filter is active we need to add the newly inserted card in + // the list of exceptions -- cards that are not filtered. Otherwise the + // card will disappear instantly. + // See https://github.com/wekan/wekan/issues/80 + Filter.addException(_id); + + // copy checklists + let cursor = Checklists.find({cardId: oldId}); + cursor.forEach(function() { + 'use strict'; + const checklist = arguments[0]; + checklist.cardId = _id; + checklist._id = null; + Checklists.insert(checklist); + }); + + // copy card comments + cursor = CardComments.find({cardId: oldId}); + cursor.forEach(function () { + 'use strict'; + const comment = arguments[0]; + comment.cardId = _id; + comment._id = null; + CardComments.insert(comment); + }); + Popup.close(); + } + }, +}); + Template.cardMorePopup.events({ 'click .js-copy-card-link-to-clipboard' () { // Clipboard code from: -- cgit v1.2.3-1-g7c22 From 3a1859eb3177d55dae99886009a28e7b90072e28 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 5 Sep 2017 13:33:12 +0200 Subject: Added translation for copy card popup title Only English and German were added. --- i18n/de.i18n.json | 3 ++- i18n/en-GB.i18n.json | 3 ++- i18n/en.i18n.json | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index 08fb8711..ce5e8495 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Kann Karten nur Kommentieren", "computer": "Computer", "copy-card-link-to-clipboard": "Kopiere die Karte in die Zwischenablage", + "copyCardPopup-title": "Karte kopieren", "create": "Erstellen", "createBoardPopup-title": "Board erstellen", "chooseBoardSourcePopup-title": "Board importieren", @@ -388,4 +389,4 @@ "no": "Nein", "accounts": "Konten", "accounts-allowEmailChange": "Zulassen E-Mail ändern" -} \ No newline at end of file +} diff --git a/i18n/en-GB.i18n.json b/i18n/en-GB.i18n.json index 2eca7bc1..cfbece50 100644 --- a/i18n/en-GB.i18n.json +++ b/i18n/en-GB.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy card", "create": "Create", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", @@ -388,4 +389,4 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change" -} \ No newline at end of file +} diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json index ebf4722b..ff124f70 100644 --- a/i18n/en.i18n.json +++ b/i18n/en.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy card", "create": "Create", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", -- cgit v1.2.3-1-g7c22 From 5aa3b405fa522064e4b47488ab0b7a59a56d6ac9 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sat, 9 Sep 2017 00:39:27 +0300 Subject: Update translations. --- i18n/ar.i18n.json | 1 + i18n/br.i18n.json | 1 + i18n/ca.i18n.json | 1 + i18n/cs.i18n.json | 63 ++++++++++++++++++++++++++-------------------------- i18n/de.i18n.json | 2 +- i18n/en-GB.i18n.json | 4 ++-- i18n/en.i18n.json | 2 +- i18n/eo.i18n.json | 1 + i18n/es.i18n.json | 53 +++++++++++++++++++++---------------------- i18n/eu.i18n.json | 5 +++-- i18n/fa.i18n.json | 1 + i18n/fi.i18n.json | 1 + i18n/fr.i18n.json | 5 +++-- i18n/gl.i18n.json | 1 + i18n/he.i18n.json | 1 + i18n/hu.i18n.json | 1 + i18n/id.i18n.json | 1 + i18n/it.i18n.json | 1 + i18n/ja.i18n.json | 1 + i18n/ko.i18n.json | 1 + i18n/nb.i18n.json | 1 + i18n/nl.i18n.json | 17 +++++++------- i18n/pl.i18n.json | 1 + i18n/pt-BR.i18n.json | 1 + i18n/ro.i18n.json | 1 + i18n/ru.i18n.json | 1 + i18n/sr.i18n.json | 1 + i18n/sv.i18n.json | 1 + i18n/ta.i18n.json | 1 + i18n/th.i18n.json | 1 + i18n/tr.i18n.json | 1 + i18n/uk.i18n.json | 1 + i18n/vi.i18n.json | 1 + i18n/zh-CN.i18n.json | 1 + i18n/zh-TW.i18n.json | 1 + 35 files changed, 105 insertions(+), 73 deletions(-) diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json index 7639f1c6..d36fd2e5 100644 --- a/i18n/ar.i18n.json +++ b/i18n/ar.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "يمكن التعليق على بطاقات فقط.", "computer": "حاسوب", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "إنشاء", "createBoardPopup-title": "إنشاء لوحة", "chooseBoardSourcePopup-title": "استيراد لوحة", diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json index 80b62f3a..5acf5ace 100644 --- a/i18n/br.i18n.json +++ b/i18n/br.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Krouiñ", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json index efdb2b2e..c15584ac 100644 --- a/i18n/ca.i18n.json +++ b/i18n/ca.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Només pots fer comentaris a les fitxes", "computer": "Ordinador", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Crea", "createBoardPopup-title": "Crea tauler", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json index 4022b5bd..33b72880 100644 --- a/i18n/cs.i18n.json +++ b/i18n/cs.i18n.json @@ -39,14 +39,14 @@ "activity-checklist-added": "added checklist to %s", "activity-checklist-item-added": "added checklist item to '%s' in %s", "add": "Přidat", - "add-attachment": "Add Attachment", - "add-board": "Add Board", - "add-card": "Add Card", - "add-checklist": "Add Checklist", - "add-checklist-item": "Add an item to checklist", + "add-attachment": "Přidat přílohu", + "add-board": "Přidat tablo", + "add-card": "Přidat kartu", + "add-checklist": "Přidat zaškrtávací seznam", + "add-checklist-item": "Přidat položku do zaškrtávacího seznamu", "add-cover": "Přidat obal", - "add-label": "Add Label", - "add-list": "Add List", + "add-label": "Přidat štítek", + "add-list": "Přidat list", "add-members": "Přidat členy", "added": "Přidán", "addMemberPopup-title": "Členové", @@ -55,7 +55,7 @@ "all-boards": "Všechna tabla", "and-n-other-card": "A __count__ další karta(y)", "and-n-other-card_plural": "A __count__ dalších karet", - "apply": "Apply", + "apply": "Použít", "app-is-offline": "Wekan is loading, please wait. Refreshing the page will cause data loss. If Wekan does not load, please check that Wekan server has not stopped.", "archive": "Archiv", "archive-all": "Archivovat vše", @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Počítač", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Vytvořit", "createBoardPopup-title": "Vytvořit tablo", "chooseBoardSourcePopup-title": "Import board", @@ -344,14 +345,14 @@ "welcome-list2": "Advanced", "what-to-do": "Co chcete dělat?", "admin-panel": "Admin Panel", - "settings": "Settings", - "people": "People", - "registration": "Registration", + "settings": "Nastavení", + "people": "Lidé", + "registration": "Registrace", "disable-self-registration": "Disable Self-Registration", - "invite": "Invite", + "invite": "Pozvánka", "invite-people": "Invite People", "to-boards": "To board(s)", - "email-addresses": "Email Addresses", + "email-addresses": "Emailové adresy", "smtp-host-description": "The address of the SMTP server that handles your emails.", "smtp-port-description": "The port your SMTP server uses for outgoing emails.", "smtp-tls-description": "Enable TLS support for SMTP server", @@ -360,32 +361,32 @@ "smtp-username": "Uživatelské jméno", "smtp-password": "Heslo", "smtp-tls": "TLS support", - "send-from": "From", + "send-from": "Od", "invitation-code": "Invitation Code", "email-invite-register-subject": "__inviter__ odeslal pozvánku", "email-invite-register-text": "Dear __user__,\n\n__inviter__ invites you to Wekan for collaborations.\n\nPlease follow the link below:\n__url__\n\nAnd your invitation code is: __icode__\n\nThanks.", "error-invitation-code-not-exist": "Invitation code doesn't exist", - "error-notAuthorized": "You are not authorized to view this page.", + "error-notAuthorized": "Nejste autorizován k prohlížení této stránky.", "outgoing-webhooks": "Outgoing Webhooks", "outgoingWebhooksPopup-title": "Outgoing Webhooks", "new-integration": "New integration", - "no-name": "(Unknown)", - "Wekan_version": "Wekan version", - "Node_version": "Node version", - "OS_Arch": "OS Arch", - "OS_Cpus": "OS CPU Count", - "OS_Freemem": "OS Free Memory", - "OS_Loadavg": "OS Load Average", + "no-name": "(Neznámé)", + "Wekan_version": "Wekan verze", + "Node_version": "Node verze", + "OS_Arch": "OS Architektura", + "OS_Cpus": "OS Počet CPU", + "OS_Freemem": "OS Volná paměť", + "OS_Loadavg": "OS Průměrná zátěž systém", "OS_Platform": "OS Platform", "OS_Release": "OS Release", - "OS_Totalmem": "OS Total Memory", + "OS_Totalmem": "OS Celková paměť", "OS_Type": "OS Type", - "OS_Uptime": "OS Uptime", - "hours": "hours", - "minutes": "minutes", - "seconds": "seconds", - "yes": "Yes", - "no": "No", - "accounts": "Accounts", - "accounts-allowEmailChange": "Allow Email Change" + "OS_Uptime": "OS Doba běhu systému", + "hours": "hodin", + "minutes": "minut", + "seconds": "sekund", + "yes": "Ano", + "no": "Ne", + "accounts": "Účty", + "accounts-allowEmailChange": "Povolit změnu Emailu" } \ No newline at end of file diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index ce5e8495..b6824f12 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -389,4 +389,4 @@ "no": "Nein", "accounts": "Konten", "accounts-allowEmailChange": "Zulassen E-Mail ändern" -} +} \ No newline at end of file diff --git a/i18n/en-GB.i18n.json b/i18n/en-GB.i18n.json index cfbece50..4be57074 100644 --- a/i18n/en-GB.i18n.json +++ b/i18n/en-GB.i18n.json @@ -145,7 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", - "copyCardPopup-title": "Copy card", + "copyCardPopup-title": "Copy Card", "create": "Create", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", @@ -389,4 +389,4 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change" -} +} \ No newline at end of file diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json index ff124f70..8b15aae7 100644 --- a/i18n/en.i18n.json +++ b/i18n/en.i18n.json @@ -145,7 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", - "copyCardPopup-title": "Copy card", + "copyCardPopup-title": "Copy Card", "create": "Create", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/eo.i18n.json b/i18n/eo.i18n.json index 5a2a837d..696c90aa 100644 --- a/i18n/eo.i18n.json +++ b/i18n/eo.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Komputilo", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Krei", "createBoardPopup-title": "Krei ", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json index 86bfc1f4..1fb0eaff 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Solo se puede comentar en tarjetas.", "computer": "Ordenador", "copy-card-link-to-clipboard": "Copiar enlace a la tarjeta al portapapeles", + "copyCardPopup-title": "Copy Card", "create": "Crear", "createBoardPopup-title": "Crear tablero", "chooseBoardSourcePopup-title": "Importar tablero", @@ -245,8 +246,8 @@ "listImportCardPopup-title": "Importar una tarjeta de Trello", "listMorePopup-title": "Más", "link-list": "Enlace a esta lista", - "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.", + "list-delete-pop": "Todas las acciones serán borradas del feed de actividad y no podrá recuperar la lista. Esta acción no puede deshacerse.", + "list-delete-suggest-archive": "Puede archivar una lista para quitarla del tablero y preservar la actividad", "lists": "Listas", "log-out": "Finalizar la sesion", "log-in": "Iniciar sesion", @@ -347,14 +348,14 @@ "settings": "Ajustes", "people": "Personas", "registration": "Registro", - "disable-self-registration": "Disable Self-Registration", + "disable-self-registration": "Deshabilitar autoregistro", "invite": "Invitar", "invite-people": "Invitar Personas", - "to-boards": "To board(s)", + "to-boards": "A el(los) tablero(s)", "email-addresses": "Direcciones de Correo Electrónico", - "smtp-host-description": "The address of the SMTP server that handles your emails.", - "smtp-port-description": "The port your SMTP server uses for outgoing emails.", - "smtp-tls-description": "Enable TLS support for SMTP server", + "smtp-host-description": "Dirección del servidor SMTP para gestionar tus emails", + "smtp-port-description": "Puerto usado por el servidor SMTP para mandar emails", + "smtp-tls-description": "Habilitar soporte TLS para el servidor SMTP", "smtp-host": "Servidor SMTP", "smtp-port": "Puerto SMTP", "smtp-username": "Nombre de Usuario", @@ -368,24 +369,24 @@ "error-notAuthorized": "No estás autorizado a ver esta página.", "outgoing-webhooks": "Webhooks salientes", "outgoingWebhooksPopup-title": "Webhooks salientes", - "new-integration": "New integration", - "no-name": "(Unknown)", - "Wekan_version": "Wekan version", - "Node_version": "Node version", - "OS_Arch": "OS Arch", - "OS_Cpus": "OS CPU Count", - "OS_Freemem": "OS Free Memory", - "OS_Loadavg": "OS Load Average", - "OS_Platform": "OS Platform", - "OS_Release": "OS Release", - "OS_Totalmem": "OS Total Memory", - "OS_Type": "OS Type", - "OS_Uptime": "OS Uptime", - "hours": "hours", - "minutes": "minutes", - "seconds": "seconds", - "yes": "Yes", + "new-integration": "Nueva integración", + "no-name": "(Desconocido)", + "Wekan_version": "Versión Wekan", + "Node_version": "Versión Node", + "OS_Arch": "Arquitectura SO", + "OS_Cpus": "Número CPUs SO", + "OS_Freemem": "Memoria libre SO", + "OS_Loadavg": "Carga Media SO", + "OS_Platform": "Plataforma SO", + "OS_Release": "Release SO", + "OS_Totalmem": "Memoria Total SO", + "OS_Type": "Tipo SO", + "OS_Uptime": "Tiempo activo SO", + "hours": "horas", + "minutes": "minutos", + "seconds": "segundos", + "yes": "Sí", "no": "No", - "accounts": "Accounts", - "accounts-allowEmailChange": "Allow Email Change" + "accounts": "Cuentas", + "accounts-allowEmailChange": "Permitir cambiar email" } \ No newline at end of file diff --git a/i18n/eu.i18n.json b/i18n/eu.i18n.json index 51e83d90..7ea19b6b 100644 --- a/i18n/eu.i18n.json +++ b/i18n/eu.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Iruzkinak txarteletan soilik egin ditzake", "computer": "Ordenagailua", "copy-card-link-to-clipboard": "Kopiatu txartela arbelera", + "copyCardPopup-title": "Copy Card", "create": "Sortu", "createBoardPopup-title": "Sortu arbela", "chooseBoardSourcePopup-title": "Inportatu arbela", @@ -368,8 +369,8 @@ "error-notAuthorized": "Ez duzu orri hau ikusteko baimenik.", "outgoing-webhooks": "Irteerako Webhook-ak", "outgoingWebhooksPopup-title": "Irteerako Webhook-ak", - "new-integration": "New integration", - "no-name": "(Unknown)", + "new-integration": "Integrazio berria", + "no-name": "(Ezezaguna)", "Wekan_version": "Wekan bertsioa", "Node_version": "Nodo bertsioa", "OS_Arch": "SE Arkitektura", diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json index 738cf1ce..38b4f2dc 100644 --- a/i18n/fa.i18n.json +++ b/i18n/fa.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "صرفا یادداشت برروی کارت ها", "computer": "رایانه", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "ایجاد", "createBoardPopup-title": "ایجاد تخته", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json index 9b83ad6c..0edcabd2 100644 --- a/i18n/fi.i18n.json +++ b/i18n/fi.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Voi vain kommentoida kortteja", "computer": "Tietokone", "copy-card-link-to-clipboard": "Kopioi kortin linkki leikepöydälle", + "copyCardPopup-title": "Kopioi kortti", "create": "Luo", "createBoardPopup-title": "Luo taulu", "chooseBoardSourcePopup-title": "Tuo taulu", diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index 1d5162af..ac7af686 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Ne peut que commenter des cartes.", "computer": "Ordinateur", "copy-card-link-to-clipboard": "Copier le lien vers la carte dans le presse-papier", + "copyCardPopup-title": "Copy Card", "create": "Créer", "createBoardPopup-title": "Créer un tableau", "chooseBoardSourcePopup-title": "Importer un tableau", @@ -368,8 +369,8 @@ "error-notAuthorized": "Vous n'êtes pas autorisé à accéder à cette page.", "outgoing-webhooks": "Webhooks sortants", "outgoingWebhooksPopup-title": "Webhooks sortants", - "new-integration": "New integration", - "no-name": "(Unknown)", + "new-integration": "Nouvelle intégration", + "no-name": "(Inconnu)", "Wekan_version": "Version de Wekan", "Node_version": "Version de Node", "OS_Arch": "OS Architecture", diff --git a/i18n/gl.i18n.json b/i18n/gl.i18n.json index 573d0c4e..08db7701 100644 --- a/i18n/gl.i18n.json +++ b/i18n/gl.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computador", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Crear", "createBoardPopup-title": "Crear taboleiro", "chooseBoardSourcePopup-title": "Importar taboleiro", diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json index 923a9381..94888393 100644 --- a/i18n/he.i18n.json +++ b/i18n/he.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "ניתן להעיר על כרטיסים בלבד.", "computer": "מחשב", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "יצירה", "createBoardPopup-title": "יצירת לוח", "chooseBoardSourcePopup-title": "יבוא לוח", diff --git a/i18n/hu.i18n.json b/i18n/hu.i18n.json index 105cea3d..bc25f892 100644 --- a/i18n/hu.i18n.json +++ b/i18n/hu.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Számítógép", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Létrehoz", "createBoardPopup-title": "Új tábla", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/id.i18n.json b/i18n/id.i18n.json index cb92f92d..21c75566 100644 --- a/i18n/id.i18n.json +++ b/i18n/id.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Bisa komen hanya di kartu", "computer": "Komputer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Buat", "createBoardPopup-title": "Buat Panel", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json index 11b0e025..59e5d19a 100644 --- a/i18n/it.i18n.json +++ b/i18n/it.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Puoi commentare solo le schede.", "computer": "Computer", "copy-card-link-to-clipboard": "Copia link della scheda sulla clipboard", + "copyCardPopup-title": "Copy Card", "create": "Crea", "createBoardPopup-title": "Crea bacheca", "chooseBoardSourcePopup-title": "Importa bacheca", diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json index 5a4eb370..432a0fa9 100644 --- a/i18n/ja.i18n.json +++ b/i18n/ja.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "カードにのみコメント可能", "computer": "コンピューター", "copy-card-link-to-clipboard": "カードへのリンクをクリップボードにコピー", + "copyCardPopup-title": "Copy Card", "create": "作成", "createBoardPopup-title": "ボードの作成", "chooseBoardSourcePopup-title": "ボードをインポート", diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json index 880db0a6..4a0d9190 100644 --- a/i18n/ko.i18n.json +++ b/i18n/ko.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "카드에 댓글만 달수 있습니다.", "computer": "내 컴퓨터", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "생성", "createBoardPopup-title": "보드 생성", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/nb.i18n.json b/i18n/nb.i18n.json index a98e05bf..2b886338 100644 --- a/i18n/nb.i18n.json +++ b/i18n/nb.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Create", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/nl.i18n.json b/i18n/nl.i18n.json index bd2457b5..8b8f2e40 100644 --- a/i18n/nl.i18n.json +++ b/i18n/nl.i18n.json @@ -3,9 +3,9 @@ "act-activity-notify": "[Wekan] Activiteit Notificatie", "act-addAttachment": "__attachment__ als bijlage toegevoegd aan __card__", "act-addComment": "gereageerd op __card__:__comment__", - "act-createBoard": "__board__ aangemaakt", - "act-createCard": "__card__to__list__ toegevoegd ", - "act-createList": "__list__to__board__ toegevoegd", + "act-createBoard": "aangemaakte__bord__", + "act-createCard": "toegevoegd__kaart__aan__lijst__", + "act-createList": "toegevoegd__lijst__aan_bord__", "act-addBoardMember": "__member__to__board__ toegevoegd", "act-archivedBoard": "gearchiveerd __board__", "act-archivedCard": "gearchiveerd __card__", @@ -144,7 +144,8 @@ "comment-only": "Alleen reageren", "comment-only-desc": "Kan alleen op kaarten reageren.", "computer": "Computer", - "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copy-card-link-to-clipboard": "Kopieer kaart link naar klembord", + "copyCardPopup-title": "Copy Card", "create": "Aanmaken", "createBoardPopup-title": "Bord aanmaken", "chooseBoardSourcePopup-title": "Importeer bord", @@ -156,8 +157,8 @@ "delete": "Verwijderen", "deleteLabelPopup-title": "Verwijder label?", "description": "Beschrijving", - "disambiguateMultiLabelPopup-title": "Disambiguate Label Action", - "disambiguateMultiMemberPopup-title": "Disambiguate Member Action", + "disambiguateMultiLabelPopup-title": "Disambigueer Label Actie", + "disambiguateMultiMemberPopup-title": "Disambigueer Lid Actie", "discard": "Weggooien", "done": "Klaar", "download": "Download", @@ -368,8 +369,8 @@ "error-notAuthorized": "Je bent niet toegestaan om deze pagina te bekijken.", "outgoing-webhooks": "Uitgaande Webhooks", "outgoingWebhooksPopup-title": "Uitgaande Webhooks", - "new-integration": "New integration", - "no-name": "(Unknown)", + "new-integration": "Nieuwe integratie", + "no-name": "(Onbekend)", "Wekan_version": "Wekan versie", "Node_version": "Node versie", "OS_Arch": "OS Arch", diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json index 71d8e574..2bee15d9 100644 --- a/i18n/pl.i18n.json +++ b/i18n/pl.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Komputer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Utwórz", "createBoardPopup-title": "Utwórz tablicę", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json index ed1127ac..6ff05d71 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Pode comentar apenas em cartões.", "computer": "Computador", "copy-card-link-to-clipboard": "Copiar link do cartão para a área de transferência", + "copyCardPopup-title": "Copy Card", "create": "Criar", "createBoardPopup-title": "Criar Quadro", "chooseBoardSourcePopup-title": "Importar quadro", diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json index 3b99c244..8eb31155 100644 --- a/i18n/ro.i18n.json +++ b/i18n/ro.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Create", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json index 2b9acac2..ca96ecd0 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Может комментировать только карточки.", "computer": "Загрузить с компьютера", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Создать", "createBoardPopup-title": "Создать доску", "chooseBoardSourcePopup-title": "Импортировать доску", diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json index 075317f0..612d2381 100644 --- a/i18n/sr.i18n.json +++ b/i18n/sr.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Create", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/sv.i18n.json b/i18n/sv.i18n.json index 987afdae..389aaeda 100644 --- a/i18n/sv.i18n.json +++ b/i18n/sv.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Kan endast kommentera kort.", "computer": "Dator", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Skapa", "createBoardPopup-title": "Skapa anslagstavla", "chooseBoardSourcePopup-title": "Importera anslagstavla", diff --git a/i18n/ta.i18n.json b/i18n/ta.i18n.json index 74bb83fd..01816d05 100644 --- a/i18n/ta.i18n.json +++ b/i18n/ta.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Create", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/th.i18n.json b/i18n/th.i18n.json index f1699a0a..a80ff044 100644 --- a/i18n/th.i18n.json +++ b/i18n/th.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "คอมพิวเตอร์", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "สร้าง", "createBoardPopup-title": "สร้างบอร์ด", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json index 62276996..0292cd1c 100644 --- a/i18n/tr.i18n.json +++ b/i18n/tr.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Sadece kartlara yorum yazabilir.", "computer": "Bilgisayar", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Oluştur", "createBoardPopup-title": "Pano Oluşturma", "chooseBoardSourcePopup-title": "Panoyu içe aktar", diff --git a/i18n/uk.i18n.json b/i18n/uk.i18n.json index 483922ce..c7741c11 100644 --- a/i18n/uk.i18n.json +++ b/i18n/uk.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Create", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/vi.i18n.json b/i18n/vi.i18n.json index d59122fe..e15bf3b2 100644 --- a/i18n/vi.i18n.json +++ b/i18n/vi.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "Can comment on cards only.", "computer": "Computer", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "Create", "createBoardPopup-title": "Create Board", "chooseBoardSourcePopup-title": "Import board", diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json index c20ba8cf..19865363 100644 --- a/i18n/zh-CN.i18n.json +++ b/i18n/zh-CN.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "只能在卡片上评论。", "computer": "从本机上传", "copy-card-link-to-clipboard": "Copy card link to clipboard", + "copyCardPopup-title": "Copy Card", "create": "创建", "createBoardPopup-title": "创建看板", "chooseBoardSourcePopup-title": "导入看板", diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json index b87b2741..8e7828fe 100644 --- a/i18n/zh-TW.i18n.json +++ b/i18n/zh-TW.i18n.json @@ -145,6 +145,7 @@ "comment-only-desc": "只可以對卡片發表評論", "computer": "從本機上傳", "copy-card-link-to-clipboard": "將卡片連結複製到剪貼板", + "copyCardPopup-title": "Copy Card", "create": "建立", "createBoardPopup-title": "建立看板", "chooseBoardSourcePopup-title": "匯入看板", -- cgit v1.2.3-1-g7c22 From 95c11415e25ee09d712fd783a163d205db281d59 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sat, 9 Sep 2017 01:11:44 +0300 Subject: Copy card within one board. Thanks to frmwrk123 ! --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8a1f509..f32a7e0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Upcoming Wekan release + +This release adds the following new features: + +* [Copy card within one board](https://github.com/wekan/wekan/pull/1204). + +Thanks to GitHub user frmwrk123 for contributions. + # v0.36 2017-09-02 Wekan release This release adds the following new features: -- cgit v1.2.3-1-g7c22