mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 13:37:09 -04:00
Merge branch 'frmwrk123-issue-519' into devel
Copy card within one board. Thanks to frmwrk123 !
This commit is contained in:
commit
ce98c86fb3
38 changed files with 164 additions and 69 deletions
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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": "استيراد لوحة",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
}
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
}
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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": "יבוא לוח",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -145,6 +145,7 @@
|
|||
"comment-only-desc": "カードにのみコメント可能",
|
||||
"computer": "コンピューター",
|
||||
"copy-card-link-to-clipboard": "カードへのリンクをクリップボードにコピー",
|
||||
"copyCardPopup-title": "Copy Card",
|
||||
"create": "作成",
|
||||
"createBoardPopup-title": "ボードの作成",
|
||||
"chooseBoardSourcePopup-title": "ボードをインポート",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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": "Импортировать доску",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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": "导入看板",
|
||||
|
|
|
@ -145,6 +145,7 @@
|
|||
"comment-only-desc": "只可以對卡片發表評論",
|
||||
"computer": "從本機上傳",
|
||||
"copy-card-link-to-clipboard": "將卡片連結複製到剪貼板",
|
||||
"copyCardPopup-title": "Copy Card",
|
||||
"create": "建立",
|
||||
"createBoardPopup-title": "建立看板",
|
||||
"chooseBoardSourcePopup-title": "匯入看板",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue