From 2da157dbb06a415d2ceadf574de1c4bc73d6c024 Mon Sep 17 00:00:00 2001 From: thisNeko Date: Fri, 4 May 2018 14:32:36 +0200 Subject: [PATCH 01/19] API Edit Card Labels --- models/cards.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/models/cards.js b/models/cards.js index 721e1ee79..e322dc2e3 100644 --- a/models/cards.js +++ b/models/cards.js @@ -543,6 +543,11 @@ if (Meteor.isServer) { Cards.direct.update({_id: paramCardId, listId: paramListId, boardId: paramBoardId, archived: false}, {$set: {description: newDescription}}); } + if (req.body.hasOwnProperty('labelIds')) { + const newlabelIds = req.body.labelIds; + Cards.direct.update({_id: paramCardId, listId: paramListId, boardId: paramBoardId, archived: false}, + {$set: {labelIds: newlabelIds}}); + } JsonRoutes.sendResult(res, { code: 200, data: { From 2fa1b3122d2acc65219e5d09974add21ac4c76fd Mon Sep 17 00:00:00 2001 From: "Thiago Fernando S. dos Santos" Date: Fri, 4 May 2018 16:44:50 -0300 Subject: [PATCH 02/19] Includes possibility to block username change --- client/components/settings/settingBody.js | 67 ++++++++++++++--------- client/components/users/userHeader.jade | 5 +- client/components/users/userHeader.js | 3 + i18n/ar.i18n.json | 3 +- i18n/bg.i18n.json | 3 +- i18n/br.i18n.json | 3 +- i18n/ca.i18n.json | 3 +- i18n/cs.i18n.json | 3 +- i18n/de.i18n.json | 3 +- i18n/el.i18n.json | 3 +- i18n/en-GB.i18n.json | 3 +- i18n/en.i18n.json | 1 + i18n/eo.i18n.json | 3 +- i18n/es-AR.i18n.json | 3 +- i18n/es.i18n.json | 3 +- i18n/eu.i18n.json | 3 +- i18n/fa.i18n.json | 3 +- i18n/fi.i18n.json | 3 +- i18n/fr.i18n.json | 3 +- i18n/gl.i18n.json | 3 +- i18n/he.i18n.json | 3 +- i18n/hu.i18n.json | 3 +- i18n/hy.i18n.json | 3 +- i18n/id.i18n.json | 3 +- i18n/ig.i18n.json | 3 +- i18n/it.i18n.json | 3 +- i18n/ja.i18n.json | 3 +- i18n/ko.i18n.json | 3 +- i18n/lv.i18n.json | 3 +- i18n/mn.i18n.json | 3 +- i18n/nb.i18n.json | 3 +- i18n/nl.i18n.json | 3 +- i18n/pl.i18n.json | 3 +- i18n/pt-BR.i18n.json | 3 +- i18n/pt.i18n.json | 3 +- i18n/ro.i18n.json | 3 +- i18n/ru.i18n.json | 3 +- i18n/sr.i18n.json | 3 +- i18n/sv.i18n.json | 3 +- i18n/ta.i18n.json | 3 +- i18n/th.i18n.json | 3 +- i18n/tr.i18n.json | 3 +- i18n/uk.i18n.json | 3 +- i18n/vi.i18n.json | 3 +- i18n/zh-CN.i18n.json | 3 +- i18n/zh-TW.i18n.json | 3 +- models/accountSettings.js | 8 ++- 47 files changed, 139 insertions(+), 71 deletions(-) diff --git a/client/components/settings/settingBody.js b/client/components/settings/settingBody.js index 8c1ff1c72..7230d8934 100644 --- a/client/components/settings/settingBody.js +++ b/client/components/settings/settingBody.js @@ -23,7 +23,7 @@ BlazeComponent.extendComponent({ checkField(selector) { const value = $(selector).val(); - if(!value || value.trim() === ''){ + if (!value || value.trim() === '') { $(selector).parents('li.smtp-form').addClass('has-error'); throw Error('blank field'); } else { @@ -31,7 +31,7 @@ BlazeComponent.extendComponent({ } }, - currentSetting(){ + currentSetting() { return Settings.findOne(); }, @@ -44,23 +44,23 @@ BlazeComponent.extendComponent({ sort: ['title'], }); }, - toggleRegistration(){ + toggleRegistration() { this.setLoading(true); const registrationClosed = this.currentSetting().disableRegistration; - Settings.update(Settings.findOne()._id, {$set:{disableRegistration: !registrationClosed}}); + Settings.update(Settings.findOne()._id, {$set: {disableRegistration: !registrationClosed}}); this.setLoading(false); - if(registrationClosed){ + if (registrationClosed) { $('.invite-people').slideUp(); - }else{ + } else { $('.invite-people').slideDown(); } }, - toggleTLS(){ + toggleTLS() { $('#mail-server-tls').toggleClass('is-checked'); }, - switchMenu(event){ + switchMenu(event) { const target = $(event.target); - if(!target.hasClass('active')){ + if (!target.hasClass('active')) { $('.side-menu li.active').removeClass('active'); target.parent().addClass('active'); const targetID = target.data('id'); @@ -71,9 +71,9 @@ BlazeComponent.extendComponent({ } }, - checkBoard(event){ + checkBoard(event) { let target = $(event.target); - if(!target.hasClass('js-toggle-board-choose')){ + if (!target.hasClass('js-toggle-board-choose')) { target = target.parent(); } const checkboxId = target.attr('id'); @@ -81,7 +81,7 @@ BlazeComponent.extendComponent({ $(`#${checkboxId}`).toggleClass('is-checked'); }, - inviteThroughEmail(){ + inviteThroughEmail() { const emails = $('#email-to-invite').val().trim().split('\n').join(',').split(','); const boardsToInvite = []; $('.js-toggle-board-choose .materialCheckBox.is-checked').each(function () { @@ -104,19 +104,23 @@ BlazeComponent.extendComponent({ } }, - saveMailServerInfo(){ + saveMailServerInfo() { this.setLoading(true); $('li').removeClass('has-error'); - try{ + try { const host = this.checkField('#mail-server-host'); const port = this.checkField('#mail-server-port'); const username = $('#mail-server-username').val().trim(); const password = $('#mail-server-password').val().trim(); const from = this.checkField('#mail-server-from'); const tls = $('#mail-server-tls.is-checked').length > 0; - Settings.update(Settings.findOne()._id, {$set:{'mailServer.host':host, 'mailServer.port': port, 'mailServer.username': username, - 'mailServer.password': password, 'mailServer.enableTLS': tls, 'mailServer.from': from}}); + Settings.update(Settings.findOne()._id, { + $set: { + 'mailServer.host': host, 'mailServer.port': port, 'mailServer.username': username, + 'mailServer.password': password, 'mailServer.enableTLS': tls, 'mailServer.from': from, + }, + }); } catch (e) { return; } finally { @@ -136,11 +140,12 @@ BlazeComponent.extendComponent({ const message = `${TAPi18n.__(err.error)}\n${reason}`; console.log(message, err); alert(message); - } /* eslint-enable no-console */ + } + /* eslint-enable no-console */ }); }, - events(){ + events() { return [{ 'click a.js-toggle-registration': this.toggleRegistration, 'click a.js-toggle-tls': this.toggleTLS, @@ -154,20 +159,28 @@ BlazeComponent.extendComponent({ }).register('setting'); BlazeComponent.extendComponent({ - saveAllowEmailChange() { + + saveAccountsChange() { const allowEmailChange = ($('input[name=allowEmailChange]:checked').val() === 'true'); + const allowUserNameChange = ($('input[name=allowUserNameChange]:checked').val() === 'true'); AccountSettings.update('accounts-allowEmailChange', { - $set: { 'booleanValue': allowEmailChange }, + $set: {'booleanValue': allowEmailChange}, + }); + AccountSettings.update('accounts-allowUserNameChange', { + $set: {'booleanValue': allowUserNameChange}, }); }, allowEmailChange() { return AccountSettings.findOne('accounts-allowEmailChange').booleanValue; }, + allowUserNameChange() { + return AccountSettings.findOne('accounts-allowUserNameChange').booleanValue; + }, events() { return [{ - 'click button.js-accounts-save': this.saveAllowEmailChange, + 'click button.js-accounts-save': this.saveAccountsChange, }]; }, }).register('accountSettings'); @@ -181,27 +194,27 @@ BlazeComponent.extendComponent({ this.loading.set(w); }, - currentSetting(){ + currentSetting() { return Announcements.findOne(); }, saveMessage() { const message = $('#admin-announcement').val().trim(); Announcements.update(Announcements.findOne()._id, { - $set: { 'body': message }, + $set: {'body': message}, }); }, - toggleActive(){ + toggleActive() { this.setLoading(true); const isActive = this.currentSetting().enabled; Announcements.update(Announcements.findOne()._id, { - $set:{ 'enabled': !isActive}, + $set: {'enabled': !isActive}, }); this.setLoading(false); - if(isActive){ + if (isActive) { $('.admin-announcement').slideUp(); - }else{ + } else { $('.admin-announcement').slideDown(); } }, diff --git a/client/components/users/userHeader.jade b/client/components/users/userHeader.jade index 4ac59f45d..a8fdb143f 100644 --- a/client/components/users/userHeader.jade +++ b/client/components/users/userHeader.jade @@ -33,7 +33,10 @@ template(name="editProfilePopup") | {{_ 'username'}} span.error.hide.username-taken | {{_ 'error-username-taken'}} - input.js-profile-username(type="text" value=username) + if allowUserNameChange + input.js-profile-username(type="text" value=username) + else + input.js-profile-username(type="text" value=username readonly) label | {{_ 'initials'}} input.js-profile-initials(type="text" value=profile.initials) diff --git a/client/components/users/userHeader.js b/client/components/users/userHeader.js index be7d4dcb0..d96a9b3d3 100644 --- a/client/components/users/userHeader.js +++ b/client/components/users/userHeader.js @@ -24,6 +24,9 @@ Template.editProfilePopup.helpers({ allowEmailChange() { return AccountSettings.findOne('accounts-allowEmailChange').booleanValue; }, + allowUserNameChange() { + return AccountSettings.findOne('accounts-allowUserNameChange').booleanValue; + }, }); Template.editProfilePopup.events({ diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json index c91f02253..1de6d7bfb 100644 --- a/i18n/ar.i18n.json +++ b/i18n/ar.i18n.json @@ -434,6 +434,7 @@ "no": "لا", "accounts": "الحسابات", "accounts-allowEmailChange": "السماح بتغيير البريد الإلكتروني", + "accounts-allowUserNameChange": "اسمح بتغيير اسم المستخدم", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/bg.i18n.json b/i18n/bg.i18n.json index e1c76a3d9..b5085b956 100644 --- a/i18n/bg.i18n.json +++ b/i18n/bg.i18n.json @@ -434,6 +434,7 @@ "no": "Не", "accounts": "Профили", "accounts-allowEmailChange": "Разреши промяна на имейла", + "accounts-allowUserNameChange": "Разрешаване на Промяна на Потребителско име", "createdAt": "Създаден на", "verified": "Потвърден", "active": "Активен", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json index 26367e66a..6b88df86f 100644 --- a/i18n/br.i18n.json +++ b/i18n/br.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json index cea7aa353..c4affb6fc 100644 --- a/i18n/ca.i18n.json +++ b/i18n/ca.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Comptes", "accounts-allowEmailChange": "Permet modificar correu electrònic", + "accounts-allowUserNameChange": "Permet canviar el nom d'usuari", "createdAt": "Creat ", "verified": "Verificat", "active": "Actiu", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json index 926c44f58..f991ae6f0 100644 --- a/i18n/cs.i18n.json +++ b/i18n/cs.i18n.json @@ -434,6 +434,7 @@ "no": "Ne", "accounts": "Účty", "accounts-allowEmailChange": "Povolit změnu Emailu", + "accounts-allowUserNameChange": "Povolit změnu jména uživatele", "createdAt": "Vytvořeno v", "verified": "Ověřen", "active": "Aktivní", @@ -443,4 +444,4 @@ "card-end-on": "Končí v", "editCardReceivedDatePopup-title": "Změnit datum přijetí", "editCardEndDatePopup-title": "Změnit datum konce" -} \ No newline at end of file +} diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index c27ba255c..35814806e 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -434,6 +434,7 @@ "no": "Nein", "accounts": "Konten", "accounts-allowEmailChange": "Ändern der E-Mailadresse zulassen", + "accounts-allowUserNameChange": "Erlaube Benutzernamen ändern", "createdAt": "Erstellt am", "verified": "Geprüft", "active": "Aktiv", @@ -443,4 +444,4 @@ "card-end-on": "Endet am", "editCardReceivedDatePopup-title": "Empfangsdatum ändern", "editCardEndDatePopup-title": "Enddatum ändern" -} \ No newline at end of file +} diff --git a/i18n/el.i18n.json b/i18n/el.i18n.json index ae1d73176..2edab03b3 100644 --- a/i18n/el.i18n.json +++ b/i18n/el.i18n.json @@ -434,6 +434,7 @@ "no": "Όχι", "accounts": "Λογαριασμοί", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/en-GB.i18n.json b/i18n/en-GB.i18n.json index 4a4b96daa..d7cc7d119 100644 --- a/i18n/en-GB.i18n.json +++ b/i18n/en-GB.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json index 1f46dce6b..6e7d55264 100644 --- a/i18n/en.i18n.json +++ b/i18n/en.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/eo.i18n.json b/i18n/eo.i18n.json index 09c4ddb29..e649ae594 100644 --- a/i18n/eo.i18n.json +++ b/i18n/eo.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/es-AR.i18n.json b/i18n/es-AR.i18n.json index e9a7d38ca..f83ccec50 100644 --- a/i18n/es-AR.i18n.json +++ b/i18n/es-AR.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Cuentas", "accounts-allowEmailChange": "Permitir Cambio de Email", + "accounts-allowUserNameChange": "Permitir Cambio de Username", "createdAt": "Creado en", "verified": "Verificado", "active": "Activo", @@ -443,4 +444,4 @@ "card-end-on": "Termina en", "editCardReceivedDatePopup-title": "Cambiar fecha de recepción", "editCardEndDatePopup-title": "Cambiar fecha de término" -} \ No newline at end of file +} diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json index c1d9fa3c9..3d0b3ae76 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Cuentas", "accounts-allowEmailChange": "Permitir cambiar el correo electrónico", + "accounts-allowUserNameChange": "Permitir Cambio de Username", "createdAt": "Creado en", "verified": "Verificado", "active": "Activo", @@ -443,4 +444,4 @@ "card-end-on": "Finalizado el", "editCardReceivedDatePopup-title": "Cambiar la fecha de recepción", "editCardEndDatePopup-title": "Cambiar la fecha de finalización" -} \ No newline at end of file +} diff --git a/i18n/eu.i18n.json b/i18n/eu.i18n.json index c57233a44..965cfd855 100644 --- a/i18n/eu.i18n.json +++ b/i18n/eu.i18n.json @@ -434,6 +434,7 @@ "no": "Ez", "accounts": "Kontuak", "accounts-allowEmailChange": "Baimendu e-mail aldaketa", + "accounts-allowUserNameChange": "Baimendu erabiltzaile-izena aldatzea", "createdAt": "Noiz sortua", "verified": "Egiaztatuta", "active": "Gaituta", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json index cb963369c..197bd3641 100644 --- a/i18n/fa.i18n.json +++ b/i18n/fa.i18n.json @@ -434,6 +434,7 @@ "no": "خیر", "accounts": "حساب‌ها", "accounts-allowEmailChange": "اجازه تغییر رایانامه", + "accounts-allowUserNameChange": "اجازه تغییر ایمیل", "createdAt": "ساخته شده در", "verified": "معتبر", "active": "فعال", @@ -443,4 +444,4 @@ "card-end-on": "پایان در", "editCardReceivedDatePopup-title": "تغییر تاریخ رسید", "editCardEndDatePopup-title": "تغییر تاریخ پایان" -} \ No newline at end of file +} diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json index 35e98eeb4..1f4fbbf84 100644 --- a/i18n/fi.i18n.json +++ b/i18n/fi.i18n.json @@ -434,6 +434,7 @@ "no": "Ei", "accounts": "Tilit", "accounts-allowEmailChange": "Salli sähköpostiosoitteen muuttaminen", + "accounts-allowUserNameChange": "Salli käyttäjänimesi muutos", "createdAt": "Luotu", "verified": "Varmistettu", "active": "Aktiivinen", @@ -443,4 +444,4 @@ "card-end-on": "Loppuu", "editCardReceivedDatePopup-title": "Vaihda vastaanottamispäivää", "editCardEndDatePopup-title": "Vaihda loppumispäivää" -} \ No newline at end of file +} diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index bc51682b6..fd1ebf8b0 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -434,6 +434,7 @@ "no": "Non", "accounts": "Comptes", "accounts-allowEmailChange": "Autoriser le changement d'adresse mail", + "accounts-allowUserNameChange": "Autoriser le changement de nom d'utilisateur", "createdAt": "Créé le", "verified": "Vérifié", "active": "Actif", @@ -443,4 +444,4 @@ "card-end-on": "Se termine le", "editCardReceivedDatePopup-title": "Changer la date de réception", "editCardEndDatePopup-title": "Changer la date de fin" -} \ No newline at end of file +} diff --git a/i18n/gl.i18n.json b/i18n/gl.i18n.json index 4539656ea..5150f84a2 100644 --- a/i18n/gl.i18n.json +++ b/i18n/gl.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json index a2ca8e9d9..d90c11906 100644 --- a/i18n/he.i18n.json +++ b/i18n/he.i18n.json @@ -434,6 +434,7 @@ "no": "לא", "accounts": "חשבונות", "accounts-allowEmailChange": "אפשר שינוי דוא\"ל", + "accounts-allowUserNameChange": "אפשר שינוי שם משתמש", "createdAt": "נוצר ב", "verified": "עבר אימות", "active": "פעיל", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/hu.i18n.json b/i18n/hu.i18n.json index eeb7b24a7..3239672ba 100644 --- a/i18n/hu.i18n.json +++ b/i18n/hu.i18n.json @@ -434,6 +434,7 @@ "no": "Nem", "accounts": "Fiókok", "accounts-allowEmailChange": "E-mail megváltoztatásának engedélyezése", + "accounts-allowUserNameChange": "A Felhasználónév módosításának engedélyezése", "createdAt": "Létrehozva", "verified": "Ellenőrizve", "active": "Aktív", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/hy.i18n.json b/i18n/hy.i18n.json index afc4cfa8e..65b36c013 100644 --- a/i18n/hy.i18n.json +++ b/i18n/hy.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/id.i18n.json b/i18n/id.i18n.json index f9fbb1b0e..9e49ec511 100644 --- a/i18n/id.i18n.json +++ b/i18n/id.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/ig.i18n.json b/i18n/ig.i18n.json index 360eb6bbc..0aa2d8415 100644 --- a/i18n/ig.i18n.json +++ b/i18n/ig.i18n.json @@ -434,6 +434,7 @@ "no": "Mba", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Ekere na", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json index 2908c2870..a3b4b3a28 100644 --- a/i18n/it.i18n.json +++ b/i18n/it.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Profili", "accounts-allowEmailChange": "Permetti modifica dell'email", + "accounts-allowUserNameChange": "Consenti modifica nome utente", "createdAt": "creato alle", "verified": "Verificato", "active": "Attivo", @@ -443,4 +444,4 @@ "card-end-on": "Termina il", "editCardReceivedDatePopup-title": "Cambia data ricezione", "editCardEndDatePopup-title": "Cambia data finale" -} \ No newline at end of file +} diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json index 59b7b02a7..3546df076 100644 --- a/i18n/ja.i18n.json +++ b/i18n/ja.i18n.json @@ -434,6 +434,7 @@ "no": "いいえ", "accounts": "アカウント", "accounts-allowEmailChange": "メールアドレスの変更を許可", + "accounts-allowUserNameChange": "ユーザー名変更を許可する", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json index 1eb8f47e7..a52700fb2 100644 --- a/i18n/ko.i18n.json +++ b/i18n/ko.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/lv.i18n.json b/i18n/lv.i18n.json index 29a4f808f..b9fe91e3c 100644 --- a/i18n/lv.i18n.json +++ b/i18n/lv.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/mn.i18n.json b/i18n/mn.i18n.json index 208b4b9ce..a7d7ff638 100644 --- a/i18n/mn.i18n.json +++ b/i18n/mn.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/nb.i18n.json b/i18n/nb.i18n.json index 4cb558319..3663c1405 100644 --- a/i18n/nb.i18n.json +++ b/i18n/nb.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/nl.i18n.json b/i18n/nl.i18n.json index 2896d5b1b..7c36193b7 100644 --- a/i18n/nl.i18n.json +++ b/i18n/nl.i18n.json @@ -434,6 +434,7 @@ "no": "Nee", "accounts": "Accounts", "accounts-allowEmailChange": "Sta E-mailadres wijzigingen toe", + "accounts-allowUserNameChange": "Gebruikersnaam wijzigen toestaan", "createdAt": "Gemaakt op", "verified": "Geverifieerd", "active": "Actief", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json index d1a91b2d8..2b7b9e65e 100644 --- a/i18n/pl.i18n.json +++ b/i18n/pl.i18n.json @@ -434,6 +434,7 @@ "no": "Nie", "accounts": "Konto", "accounts-allowEmailChange": "Zezwól na zmianę adresu email", + "accounts-allowUserNameChange": "Zezwalaj na zmianę użytkownika", "createdAt": "Stworzono o", "verified": "Zweryfikowane", "active": "Aktywny", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json index 976379f55..97e9cca46 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -434,6 +434,7 @@ "no": "Não", "accounts": "Contas", "accounts-allowEmailChange": "Permitir Mudança de Email", + "accounts-allowUserNameChange": "Permitir Mudança de Username", "createdAt": "Criado em", "verified": "Verificado", "active": "Ativo", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/pt.i18n.json b/i18n/pt.i18n.json index a5cbb475c..b33da0fce 100644 --- a/i18n/pt.i18n.json +++ b/i18n/pt.i18n.json @@ -434,6 +434,7 @@ "no": "Não", "accounts": "Contas", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verificado", "active": "Ativo", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json index 916524a17..db39d531f 100644 --- a/i18n/ro.i18n.json +++ b/i18n/ro.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json index 1fbadbb76..6c3d5f6c5 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -434,6 +434,7 @@ "no": "Нет", "accounts": "Учетные записи", "accounts-allowEmailChange": "Разрешить изменение электронной почты", + "accounts-allowUserNameChange": "Разрешить изменение имени пользователя", "createdAt": "Создано на", "verified": "Проверено", "active": "Действующий", @@ -443,4 +444,4 @@ "card-end-on": "Завершится до", "editCardReceivedDatePopup-title": "Изменить дату получения", "editCardEndDatePopup-title": "Изменить дату завершения" -} \ No newline at end of file +} diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json index 22cad5ecb..362bccd64 100644 --- a/i18n/sr.i18n.json +++ b/i18n/sr.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/sv.i18n.json b/i18n/sv.i18n.json index 4ad85e220..68f5e4534 100644 --- a/i18n/sv.i18n.json +++ b/i18n/sv.i18n.json @@ -434,6 +434,7 @@ "no": "Nej", "accounts": "Konton", "accounts-allowEmailChange": "Tillåt e-poständring", + "accounts-allowUserNameChange": "Tillåt användarnamnändring", "createdAt": "Skapad vid", "verified": "Verifierad", "active": "Aktiv", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Ändra mottagningsdatum", "editCardEndDatePopup-title": "Ändra slutdatum" -} \ No newline at end of file +} diff --git a/i18n/ta.i18n.json b/i18n/ta.i18n.json index ab7c9880d..6e7d55264 100644 --- a/i18n/ta.i18n.json +++ b/i18n/ta.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/th.i18n.json b/i18n/th.i18n.json index 1118c6db1..bd151cd56 100644 --- a/i18n/th.i18n.json +++ b/i18n/th.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json index 2389e1c7f..979586d4f 100644 --- a/i18n/tr.i18n.json +++ b/i18n/tr.i18n.json @@ -434,6 +434,7 @@ "no": "Hayır", "accounts": "Hesaplar", "accounts-allowEmailChange": "E-posta Değiştirmeye İzin Ver", + "accounts-allowUserNameChange": "Kullanıcı Adının Değiştirilmesine İzin Ver", "createdAt": "Oluşturulma tarihi", "verified": "Doğrulanmış", "active": "Aktif", @@ -443,4 +444,4 @@ "card-end-on": "Bitiş zamanı", "editCardReceivedDatePopup-title": "Giriş tarihini değiştir", "editCardEndDatePopup-title": "Bitiş tarihini değiştir" -} \ No newline at end of file +} diff --git a/i18n/uk.i18n.json b/i18n/uk.i18n.json index a3266b8d1..c197216ba 100644 --- a/i18n/uk.i18n.json +++ b/i18n/uk.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/vi.i18n.json b/i18n/vi.i18n.json index eb8bada94..277a61035 100644 --- a/i18n/vi.i18n.json +++ b/i18n/vi.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json index 059ccf399..e6ca85def 100644 --- a/i18n/zh-CN.i18n.json +++ b/i18n/zh-CN.i18n.json @@ -434,6 +434,7 @@ "no": "否", "accounts": "账号", "accounts-allowEmailChange": "允许邮箱变更", + "accounts-allowUserNameChange": "允许用户名更改", "createdAt": "创建于", "verified": "已验证", "active": "活跃", @@ -443,4 +444,4 @@ "card-end-on": "终止于", "editCardReceivedDatePopup-title": "修改接收日期", "editCardEndDatePopup-title": "修改终止日期" -} \ No newline at end of file +} diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json index 251d6344a..721702ad0 100644 --- a/i18n/zh-TW.i18n.json +++ b/i18n/zh-TW.i18n.json @@ -434,6 +434,7 @@ "no": "否", "accounts": "帳號", "accounts-allowEmailChange": "准許變更電子信箱", + "accounts-allowUserNameChange": "允许用户名更改", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} \ No newline at end of file +} diff --git a/models/accountSettings.js b/models/accountSettings.js index db4087c0a..6dfbac5dc 100644 --- a/models/accountSettings.js +++ b/models/accountSettings.js @@ -23,11 +23,17 @@ AccountSettings.allow({ if (Meteor.isServer) { Meteor.startup(() => { - AccountSettings.upsert({ _id: 'accounts-allowEmailChange' }, { + AccountSettings.upsert({_id: 'accounts-allowEmailChange'}, { $setOnInsert: { booleanValue: false, sort: 0, }, }); + AccountSettings.upsert({_id: 'accounts-allowUserNameChange'}, { + $setOnInsert: { + booleanValue: false, + sort: 1, + }, + }); }); } From c751f0596214fc509ffe0eb79a334d5c380be792 Mon Sep 17 00:00:00 2001 From: "Thiago Fernando S. dos Santos" Date: Fri, 4 May 2018 17:35:37 -0300 Subject: [PATCH 03/19] revert translations files --- i18n/ar.i18n.json | 1 - i18n/bg.i18n.json | 1 - i18n/br.i18n.json | 1 - i18n/ca.i18n.json | 1 - i18n/cs.i18n.json | 1 - i18n/de.i18n.json | 1 - i18n/el.i18n.json | 1 - i18n/en-GB.i18n.json | 1 - i18n/eo.i18n.json | 1 - i18n/es-AR.i18n.json | 1 - i18n/es.i18n.json | 1 - i18n/eu.i18n.json | 1 - i18n/fa.i18n.json | 1 - i18n/fi.i18n.json | 1 - i18n/fr.i18n.json | 1 - i18n/gl.i18n.json | 1 - i18n/he.i18n.json | 1 - i18n/hu.i18n.json | 1 - i18n/hy.i18n.json | 1 - i18n/id.i18n.json | 1 - i18n/ig.i18n.json | 1 - i18n/it.i18n.json | 1 - i18n/ja.i18n.json | 1 - i18n/ko.i18n.json | 1 - i18n/lv.i18n.json | 1 - i18n/mn.i18n.json | 1 - i18n/nb.i18n.json | 1 - i18n/nl.i18n.json | 1 - i18n/pl.i18n.json | 1 - i18n/pt-BR.i18n.json | 1 - i18n/pt.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 - 42 files changed, 42 deletions(-) diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json index 1de6d7bfb..a9e4edbdf 100644 --- a/i18n/ar.i18n.json +++ b/i18n/ar.i18n.json @@ -434,7 +434,6 @@ "no": "لا", "accounts": "الحسابات", "accounts-allowEmailChange": "السماح بتغيير البريد الإلكتروني", - "accounts-allowUserNameChange": "اسمح بتغيير اسم المستخدم", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/bg.i18n.json b/i18n/bg.i18n.json index b5085b956..998bc2cba 100644 --- a/i18n/bg.i18n.json +++ b/i18n/bg.i18n.json @@ -434,7 +434,6 @@ "no": "Не", "accounts": "Профили", "accounts-allowEmailChange": "Разреши промяна на имейла", - "accounts-allowUserNameChange": "Разрешаване на Промяна на Потребителско име", "createdAt": "Създаден на", "verified": "Потвърден", "active": "Активен", diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json index 6b88df86f..51d90051b 100644 --- a/i18n/br.i18n.json +++ b/i18n/br.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json index c4affb6fc..4379081be 100644 --- a/i18n/ca.i18n.json +++ b/i18n/ca.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Comptes", "accounts-allowEmailChange": "Permet modificar correu electrònic", - "accounts-allowUserNameChange": "Permet canviar el nom d'usuari", "createdAt": "Creat ", "verified": "Verificat", "active": "Actiu", diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json index f991ae6f0..fc5a0dfbd 100644 --- a/i18n/cs.i18n.json +++ b/i18n/cs.i18n.json @@ -434,7 +434,6 @@ "no": "Ne", "accounts": "Účty", "accounts-allowEmailChange": "Povolit změnu Emailu", - "accounts-allowUserNameChange": "Povolit změnu jména uživatele", "createdAt": "Vytvořeno v", "verified": "Ověřen", "active": "Aktivní", diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index 35814806e..fb98a9504 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -434,7 +434,6 @@ "no": "Nein", "accounts": "Konten", "accounts-allowEmailChange": "Ändern der E-Mailadresse zulassen", - "accounts-allowUserNameChange": "Erlaube Benutzernamen ändern", "createdAt": "Erstellt am", "verified": "Geprüft", "active": "Aktiv", diff --git a/i18n/el.i18n.json b/i18n/el.i18n.json index 2edab03b3..bf36bcab2 100644 --- a/i18n/el.i18n.json +++ b/i18n/el.i18n.json @@ -434,7 +434,6 @@ "no": "Όχι", "accounts": "Λογαριασμοί", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/en-GB.i18n.json b/i18n/en-GB.i18n.json index d7cc7d119..d51127d88 100644 --- a/i18n/en-GB.i18n.json +++ b/i18n/en-GB.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/eo.i18n.json b/i18n/eo.i18n.json index e649ae594..b5fa9a392 100644 --- a/i18n/eo.i18n.json +++ b/i18n/eo.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/es-AR.i18n.json b/i18n/es-AR.i18n.json index f83ccec50..60c1c1140 100644 --- a/i18n/es-AR.i18n.json +++ b/i18n/es-AR.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Cuentas", "accounts-allowEmailChange": "Permitir Cambio de Email", - "accounts-allowUserNameChange": "Permitir Cambio de Username", "createdAt": "Creado en", "verified": "Verificado", "active": "Activo", diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json index 3d0b3ae76..c8b0f4221 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Cuentas", "accounts-allowEmailChange": "Permitir cambiar el correo electrónico", - "accounts-allowUserNameChange": "Permitir Cambio de Username", "createdAt": "Creado en", "verified": "Verificado", "active": "Activo", diff --git a/i18n/eu.i18n.json b/i18n/eu.i18n.json index 965cfd855..6c692aea5 100644 --- a/i18n/eu.i18n.json +++ b/i18n/eu.i18n.json @@ -434,7 +434,6 @@ "no": "Ez", "accounts": "Kontuak", "accounts-allowEmailChange": "Baimendu e-mail aldaketa", - "accounts-allowUserNameChange": "Baimendu erabiltzaile-izena aldatzea", "createdAt": "Noiz sortua", "verified": "Egiaztatuta", "active": "Gaituta", diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json index 197bd3641..4c03a3b75 100644 --- a/i18n/fa.i18n.json +++ b/i18n/fa.i18n.json @@ -434,7 +434,6 @@ "no": "خیر", "accounts": "حساب‌ها", "accounts-allowEmailChange": "اجازه تغییر رایانامه", - "accounts-allowUserNameChange": "اجازه تغییر ایمیل", "createdAt": "ساخته شده در", "verified": "معتبر", "active": "فعال", diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json index 1f4fbbf84..054e9969c 100644 --- a/i18n/fi.i18n.json +++ b/i18n/fi.i18n.json @@ -434,7 +434,6 @@ "no": "Ei", "accounts": "Tilit", "accounts-allowEmailChange": "Salli sähköpostiosoitteen muuttaminen", - "accounts-allowUserNameChange": "Salli käyttäjänimesi muutos", "createdAt": "Luotu", "verified": "Varmistettu", "active": "Aktiivinen", diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index fd1ebf8b0..ce8034b08 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -434,7 +434,6 @@ "no": "Non", "accounts": "Comptes", "accounts-allowEmailChange": "Autoriser le changement d'adresse mail", - "accounts-allowUserNameChange": "Autoriser le changement de nom d'utilisateur", "createdAt": "Créé le", "verified": "Vérifié", "active": "Actif", diff --git a/i18n/gl.i18n.json b/i18n/gl.i18n.json index 5150f84a2..9e23ea410 100644 --- a/i18n/gl.i18n.json +++ b/i18n/gl.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json index d90c11906..5f21384a6 100644 --- a/i18n/he.i18n.json +++ b/i18n/he.i18n.json @@ -434,7 +434,6 @@ "no": "לא", "accounts": "חשבונות", "accounts-allowEmailChange": "אפשר שינוי דוא\"ל", - "accounts-allowUserNameChange": "אפשר שינוי שם משתמש", "createdAt": "נוצר ב", "verified": "עבר אימות", "active": "פעיל", diff --git a/i18n/hu.i18n.json b/i18n/hu.i18n.json index 3239672ba..fc1f2e8cd 100644 --- a/i18n/hu.i18n.json +++ b/i18n/hu.i18n.json @@ -434,7 +434,6 @@ "no": "Nem", "accounts": "Fiókok", "accounts-allowEmailChange": "E-mail megváltoztatásának engedélyezése", - "accounts-allowUserNameChange": "A Felhasználónév módosításának engedélyezése", "createdAt": "Létrehozva", "verified": "Ellenőrizve", "active": "Aktív", diff --git a/i18n/hy.i18n.json b/i18n/hy.i18n.json index 65b36c013..42725bbf7 100644 --- a/i18n/hy.i18n.json +++ b/i18n/hy.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/id.i18n.json b/i18n/id.i18n.json index 9e49ec511..e3ee33996 100644 --- a/i18n/id.i18n.json +++ b/i18n/id.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/ig.i18n.json b/i18n/ig.i18n.json index 0aa2d8415..e2edbe31b 100644 --- a/i18n/ig.i18n.json +++ b/i18n/ig.i18n.json @@ -434,7 +434,6 @@ "no": "Mba", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Ekere na", "verified": "Verified", "active": "Active", diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json index a3b4b3a28..9229c2e8f 100644 --- a/i18n/it.i18n.json +++ b/i18n/it.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Profili", "accounts-allowEmailChange": "Permetti modifica dell'email", - "accounts-allowUserNameChange": "Consenti modifica nome utente", "createdAt": "creato alle", "verified": "Verificato", "active": "Attivo", diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json index 3546df076..7c7db1b49 100644 --- a/i18n/ja.i18n.json +++ b/i18n/ja.i18n.json @@ -434,7 +434,6 @@ "no": "いいえ", "accounts": "アカウント", "accounts-allowEmailChange": "メールアドレスの変更を許可", - "accounts-allowUserNameChange": "ユーザー名変更を許可する", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json index a52700fb2..bee42e390 100644 --- a/i18n/ko.i18n.json +++ b/i18n/ko.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/lv.i18n.json b/i18n/lv.i18n.json index b9fe91e3c..1231a0136 100644 --- a/i18n/lv.i18n.json +++ b/i18n/lv.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/mn.i18n.json b/i18n/mn.i18n.json index a7d7ff638..346110c58 100644 --- a/i18n/mn.i18n.json +++ b/i18n/mn.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/nb.i18n.json b/i18n/nb.i18n.json index 3663c1405..a33240e84 100644 --- a/i18n/nb.i18n.json +++ b/i18n/nb.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/nl.i18n.json b/i18n/nl.i18n.json index 7c36193b7..72ef0f444 100644 --- a/i18n/nl.i18n.json +++ b/i18n/nl.i18n.json @@ -434,7 +434,6 @@ "no": "Nee", "accounts": "Accounts", "accounts-allowEmailChange": "Sta E-mailadres wijzigingen toe", - "accounts-allowUserNameChange": "Gebruikersnaam wijzigen toestaan", "createdAt": "Gemaakt op", "verified": "Geverifieerd", "active": "Actief", diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json index 2b7b9e65e..4ce864bd3 100644 --- a/i18n/pl.i18n.json +++ b/i18n/pl.i18n.json @@ -434,7 +434,6 @@ "no": "Nie", "accounts": "Konto", "accounts-allowEmailChange": "Zezwól na zmianę adresu email", - "accounts-allowUserNameChange": "Zezwalaj na zmianę użytkownika", "createdAt": "Stworzono o", "verified": "Zweryfikowane", "active": "Aktywny", diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json index 97e9cca46..d7d7243ac 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -434,7 +434,6 @@ "no": "Não", "accounts": "Contas", "accounts-allowEmailChange": "Permitir Mudança de Email", - "accounts-allowUserNameChange": "Permitir Mudança de Username", "createdAt": "Criado em", "verified": "Verificado", "active": "Ativo", diff --git a/i18n/pt.i18n.json b/i18n/pt.i18n.json index b33da0fce..98614f9c2 100644 --- a/i18n/pt.i18n.json +++ b/i18n/pt.i18n.json @@ -434,7 +434,6 @@ "no": "Não", "accounts": "Contas", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verificado", "active": "Ativo", diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json index db39d531f..3086cb0f7 100644 --- a/i18n/ro.i18n.json +++ b/i18n/ro.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json index 6c3d5f6c5..8f5c08279 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -434,7 +434,6 @@ "no": "Нет", "accounts": "Учетные записи", "accounts-allowEmailChange": "Разрешить изменение электронной почты", - "accounts-allowUserNameChange": "Разрешить изменение имени пользователя", "createdAt": "Создано на", "verified": "Проверено", "active": "Действующий", diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json index 362bccd64..66ffe5a4c 100644 --- a/i18n/sr.i18n.json +++ b/i18n/sr.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/sv.i18n.json b/i18n/sv.i18n.json index 68f5e4534..e923fdf5c 100644 --- a/i18n/sv.i18n.json +++ b/i18n/sv.i18n.json @@ -434,7 +434,6 @@ "no": "Nej", "accounts": "Konton", "accounts-allowEmailChange": "Tillåt e-poständring", - "accounts-allowUserNameChange": "Tillåt användarnamnändring", "createdAt": "Skapad vid", "verified": "Verifierad", "active": "Aktiv", diff --git a/i18n/ta.i18n.json b/i18n/ta.i18n.json index 6e7d55264..1f46dce6b 100644 --- a/i18n/ta.i18n.json +++ b/i18n/ta.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/th.i18n.json b/i18n/th.i18n.json index bd151cd56..a4f2d6b4e 100644 --- a/i18n/th.i18n.json +++ b/i18n/th.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json index 979586d4f..3dfecc595 100644 --- a/i18n/tr.i18n.json +++ b/i18n/tr.i18n.json @@ -434,7 +434,6 @@ "no": "Hayır", "accounts": "Hesaplar", "accounts-allowEmailChange": "E-posta Değiştirmeye İzin Ver", - "accounts-allowUserNameChange": "Kullanıcı Adının Değiştirilmesine İzin Ver", "createdAt": "Oluşturulma tarihi", "verified": "Doğrulanmış", "active": "Aktif", diff --git a/i18n/uk.i18n.json b/i18n/uk.i18n.json index c197216ba..2552ec4ef 100644 --- a/i18n/uk.i18n.json +++ b/i18n/uk.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/vi.i18n.json b/i18n/vi.i18n.json index 277a61035..5e03eaedd 100644 --- a/i18n/vi.i18n.json +++ b/i18n/vi.i18n.json @@ -434,7 +434,6 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", - "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json index e6ca85def..37b641e71 100644 --- a/i18n/zh-CN.i18n.json +++ b/i18n/zh-CN.i18n.json @@ -434,7 +434,6 @@ "no": "否", "accounts": "账号", "accounts-allowEmailChange": "允许邮箱变更", - "accounts-allowUserNameChange": "允许用户名更改", "createdAt": "创建于", "verified": "已验证", "active": "活跃", diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json index 721702ad0..fa658a5e3 100644 --- a/i18n/zh-TW.i18n.json +++ b/i18n/zh-TW.i18n.json @@ -434,7 +434,6 @@ "no": "否", "accounts": "帳號", "accounts-allowEmailChange": "准許變更電子信箱", - "accounts-allowUserNameChange": "允许用户名更改", "createdAt": "Created at", "verified": "Verified", "active": "Active", From 9edbc349b9da620c840574aac6b8506644215e78 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 4 May 2018 23:57:40 +0300 Subject: [PATCH 04/19] - REST API Edit Card Labels. Thanks to ThisNeko ! --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34c1b50d2..b2759624f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Upcoming Wekan release + +This release adds the following new features: + +* [REST API Edit Card Labels](https://github.com/wekan/wekan/commit/2da157dbb06a415d2ceadf574de1c4bc73d6c024). + +Thanks to GitHub user ThisNeko for contributions. + # v0.94 2018-05-03 Wekan release This release adds the following new features: From 682eab74d9e61b5019f1afe7ff8ed9af12600dea Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sat, 5 May 2018 00:30:34 +0300 Subject: [PATCH 05/19] Fix lint error. Related https://github.com/wekan/wekan/pull/1626 --- models/cards.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/cards.js b/models/cards.js index e322dc2e3..01f798474 100644 --- a/models/cards.js +++ b/models/cards.js @@ -499,7 +499,7 @@ if (Meteor.isServer) { userId: req.body.authorId, swimlaneId: req.body.swimlaneId, sort: 0, - members: members, + members, }); JsonRoutes.sendResult(res, { code: 200, From 7e49ab5fea0f866baef7f287569edcd223d1f08f Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sun, 6 May 2018 18:00:36 +0300 Subject: [PATCH 06/19] Tried to fix, but it did not work yet. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2759624f..e6e5621ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -93,7 +93,7 @@ This release fixes the following bugs: - [Fix Switch List/swimlane view only working with admin privileges](https://github.com/wekan/wekan/issues/1567); - [Fix Wekan logo positioning](https://github.com/wekan/wekan/issues/1378); -- [Fix checklists items migration error "title is required"](https://github.com/wekan/wekan/issues/1576); +- [Tried to fix, but fix did not work: Fix checklists items migration error "title is required"](https://github.com/wekan/wekan/issues/1576); - [Removed paxctl alpine fix #1303 , because it did not work anymore, so Docker container did not build correctly](https://github.com/wekan/wekan/commit/ce659632174ba25ca9b5e85b053fde02fd9c3928); - [Use curl to download 100% CPU fibers fixed node in snap, and remove paxctl from From e5638e5e5a01c8cd42b7a862733be4f61354ead4 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sun, 6 May 2018 18:07:56 +0300 Subject: [PATCH 07/19] Fix link --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6e5621ac..48d1a450a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,8 +52,7 @@ Thanks to GitHub user xet7 for contributions. This release fixes the following bugs: -- [Fix Wekan import / Export for - ChecklistItems](https://github.com/wekan/wekan/commit/30b17ff6c92df07922f875071e864cf688902293). +- [Fix Wekan import / Export for ChecklistItems](https://github.com/wekan/wekan/pull/1613). Thanks to GitHub user zebby76 for contributions. From c4b5145db460e6033d2033650a3da57fff53812a Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sun, 6 May 2018 18:12:51 +0300 Subject: [PATCH 08/19] Fix link. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48d1a450a..44beb79ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ Thanks to GitHub user ThisNeko for contributions. This release adds the following new features: -* [REST API POST /cards: allow setting card members](https://github.com/wekan/wekan/commit/e576e0f9cfc4f61e54da8920a8e29fe43227c266). +* [REST API POST /cards: allow setting card members](https://github.com/wekan/wekan/pull/1622). Thanks to GitHub user couscous3 for contributions. From 5e109de8d5bf9d9d274cda031618b11d01937e9c Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sun, 6 May 2018 18:21:21 +0300 Subject: [PATCH 09/19] Fix link. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44beb79ba..230f04b19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ This release adds the following new features: -* [REST API Edit Card Labels](https://github.com/wekan/wekan/commit/2da157dbb06a415d2ceadf574de1c4bc73d6c024). +* [REST API Edit Card Labels](https://github.com/wekan/wekan/pull/1626). Thanks to GitHub user ThisNeko for contributions. From 1cb8a6e7fe3c3ba4bf2bc5f5a576d2ed46750fb0 Mon Sep 17 00:00:00 2001 From: "NET\\faguet" Date: Mon, 7 May 2018 13:32:33 +0200 Subject: [PATCH 10/19] Add a new API route to create a new label in a given board --- models/boards.js | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/models/boards.js b/models/boards.js index 3e05b4994..da50adc7b 100644 --- a/models/boards.js +++ b/models/boards.js @@ -719,4 +719,33 @@ if (Meteor.isServer) { }); } }); + + JsonRoutes.add('PUT', '/api/boards/:id/labels', function (req, res) { + Authentication.checkUserId(req.userId); + const id = req.params.id; + try { + if (req.body.hasOwnProperty('label')) { + const board = Boards.findOne({ _id: id }); + const color = req.body.label.color; + const name = req.body.label.name; + const labelId = Random.id(6); + if (!board.getLabel(name, color)) { + Boards.direct.update({ _id: id }, { $push: { labels: { "_id": labelId, "name": name, "color": color } } }); + JsonRoutes.sendResult(res, { + code: 200, + data: labelId, + }); + } else { + JsonRoutes.sendResult(res, { + code: 200, + }); + } + } + } + catch (error) { + JsonRoutes.sendResult(res, { + data: error, + }); + } + }); } From 6b2d022a93114e39b26396aeb21b68a51551da84 Mon Sep 17 00:00:00 2001 From: "NET\\faguet" Date: Mon, 7 May 2018 14:27:07 +0200 Subject: [PATCH 11/19] correction --- models/boards.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/boards.js b/models/boards.js index da50adc7b..c863c5cec 100644 --- a/models/boards.js +++ b/models/boards.js @@ -730,7 +730,7 @@ if (Meteor.isServer) { const name = req.body.label.name; const labelId = Random.id(6); if (!board.getLabel(name, color)) { - Boards.direct.update({ _id: id }, { $push: { labels: { "_id": labelId, "name": name, "color": color } } }); + Boards.direct.update({ _id: id }, { $push: { labels: { _id: labelId, name, color } } }); JsonRoutes.sendResult(res, { code: 200, data: labelId, From c43508cacbd64357409a3de114db9dab2ae59a9d Mon Sep 17 00:00:00 2001 From: "Thiago Fernando S. dos Santos" Date: Mon, 7 May 2018 13:57:23 -0300 Subject: [PATCH 12/19] send settingBody.jade --- client/components/settings/settingBody.jade | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/client/components/settings/settingBody.jade b/client/components/settings/settingBody.jade index 479ccd3e4..5bc7972db 100644 --- a/client/components/settings/settingBody.jade +++ b/client/components/settings/settingBody.jade @@ -94,13 +94,21 @@ template(name='email') template(name='accountSettings') ul#account-setting.setting-detail - li.smtp-form + li.accounts-form .title {{_ 'accounts-allowEmailChange'}} .form-group.flex input.form-control#accounts-allowEmailChange(type="radio" name="allowEmailChange" value="true" checked="{{#if allowEmailChange}}checked{{/if}}") span {{_ 'yes'}} input.form-control#accounts-allowEmailChange(type="radio" name="allowEmailChange" value="false" checked="{{#unless allowEmailChange}}checked{{/unless}}") span {{_ 'no'}} + li + li.accounts-form + .title {{_ 'accounts-allowUserNameChange'}} + .form-group.flex + input.form-control#accounts-allowUserNameChange(type="radio" name="allowUserNameChange" value="true" checked="{{#if allowUserNameChange}}checked{{/if}}") + span {{_ 'yes'}} + input.form-control#accounts-allowUserNameChange(type="radio" name="allowUserNameChange" value="false" checked="{{#unless allowUserNameChange}}checked{{/unless}}") + span {{_ 'no'}} li button.js-accounts-save.primary {{_ 'save'}} From 16d75f549dccec6b161e09d7d11102f93cf5ef35 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 8 May 2018 01:20:56 +0300 Subject: [PATCH 13/19] Fix error: title is required. Related https://github.com/wekan/wekan/commit/8d5cbf1e6c2b6d467fe1c0708cd794fd11b98a2e Closes #1576 --- server/migrations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/migrations.js b/server/migrations.js index 684a8bbe6..0fdd1fe07 100644 --- a/server/migrations.js +++ b/server/migrations.js @@ -193,7 +193,7 @@ Migrations.add('add-checklist-items', () => { // Create new items _.sortBy(checklist.items, 'sort').forEach((item, index) => { ChecklistItems.direct.insert({ - title: item.title, + title: checklist.title, sort: index, isFinished: item.isFinished, checklistId: checklist._id, From cdc2b920ee9c729c6ba796a4d4653f76a82574d7 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 8 May 2018 01:24:24 +0300 Subject: [PATCH 14/19] Fix error: title is required. Thanks to Shahar-Y ! Related https://github.com/wekan/wekan/commit/8d5cbf1e6c2b6d467fe1c0708cd794fd11b98a2e#commitcomment-28880774 Closes #1576 --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 230f04b19..0a1f58f98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ This release adds the following new features: * [REST API Edit Card Labels](https://github.com/wekan/wekan/pull/1626). -Thanks to GitHub user ThisNeko for contributions. +and fixed the following bugs: + +* [Error: title is required](https://github.com/wekan/wekan/issues/1576). + +Thanks to GitHub users Shahar-Y and ThisNeko for their contributions. # v0.94 2018-05-03 Wekan release From fc033c30e63f03fb55479892b2c5c75cee30e509 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 8 May 2018 01:29:10 +0300 Subject: [PATCH 15/19] Add a new API route to create a new label in a given board. Thanks to ThisNeko ! --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a1f58f98..568a8b9b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ This release adds the following new features: -* [REST API Edit Card Labels](https://github.com/wekan/wekan/pull/1626). +* [REST API Edit Card Labels](https://github.com/wekan/wekan/pull/1626); +* [Add a new API route to create a new label in a given board](https://github.com/wekan/wekan/pull/1630). and fixed the following bugs: From 9d47d3e3971f8a2feb83e7ef9a60d20fe2ce3352 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 8 May 2018 01:33:52 +0300 Subject: [PATCH 16/19] Admin Panel: Option to block username change. Thanks to thiagofernando ! --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 568a8b9b5..e7690c403 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,14 @@ This release adds the following new features: * [REST API Edit Card Labels](https://github.com/wekan/wekan/pull/1626); -* [Add a new API route to create a new label in a given board](https://github.com/wekan/wekan/pull/1630). +* [Add a new API route to create a new label in a given board](https://github.com/wekan/wekan/pull/1630); +* [Admin Panel: Option to block username change](https://github.com/wekan/wekan/pull/1627). and fixed the following bugs: * [Error: title is required](https://github.com/wekan/wekan/issues/1576). -Thanks to GitHub users Shahar-Y and ThisNeko for their contributions. +Thanks to GitHub users Shahar-Y, thiagofernando and ThisNeko for their contributions. # v0.94 2018-05-03 Wekan release From 4c18df757f1ecc5123645d59856f2f96b2582fb3 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 8 May 2018 10:54:24 +0300 Subject: [PATCH 17/19] Update translations. --- i18n/ar.i18n.json | 3 ++- i18n/bg.i18n.json | 3 ++- i18n/br.i18n.json | 3 ++- i18n/ca.i18n.json | 3 ++- i18n/cs.i18n.json | 3 ++- i18n/de.i18n.json | 3 ++- i18n/el.i18n.json | 3 ++- i18n/en-GB.i18n.json | 3 ++- i18n/eo.i18n.json | 3 ++- i18n/es-AR.i18n.json | 3 ++- i18n/es.i18n.json | 3 ++- i18n/eu.i18n.json | 3 ++- i18n/fa.i18n.json | 3 ++- i18n/fi.i18n.json | 7 ++++--- i18n/fr.i18n.json | 3 ++- i18n/gl.i18n.json | 3 ++- i18n/he.i18n.json | 3 ++- i18n/hu.i18n.json | 3 ++- i18n/hy.i18n.json | 3 ++- i18n/id.i18n.json | 3 ++- i18n/ig.i18n.json | 3 ++- i18n/it.i18n.json | 3 ++- i18n/ja.i18n.json | 3 ++- i18n/ko.i18n.json | 3 ++- i18n/lv.i18n.json | 3 ++- i18n/mn.i18n.json | 3 ++- i18n/nb.i18n.json | 3 ++- i18n/nl.i18n.json | 3 ++- i18n/pl.i18n.json | 3 ++- i18n/pt-BR.i18n.json | 3 ++- i18n/pt.i18n.json | 3 ++- i18n/ro.i18n.json | 3 ++- i18n/ru.i18n.json | 3 ++- i18n/sr.i18n.json | 3 ++- i18n/sv.i18n.json | 3 ++- i18n/ta.i18n.json | 3 ++- i18n/th.i18n.json | 3 ++- i18n/tr.i18n.json | 3 ++- i18n/uk.i18n.json | 3 ++- i18n/vi.i18n.json | 3 ++- i18n/zh-CN.i18n.json | 3 ++- i18n/zh-TW.i18n.json | 3 ++- 42 files changed, 86 insertions(+), 44 deletions(-) diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json index a9e4edbdf..4e77fa421 100644 --- a/i18n/ar.i18n.json +++ b/i18n/ar.i18n.json @@ -434,6 +434,7 @@ "no": "لا", "accounts": "الحسابات", "accounts-allowEmailChange": "السماح بتغيير البريد الإلكتروني", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/bg.i18n.json b/i18n/bg.i18n.json index 998bc2cba..26fea2524 100644 --- a/i18n/bg.i18n.json +++ b/i18n/bg.i18n.json @@ -434,6 +434,7 @@ "no": "Не", "accounts": "Профили", "accounts-allowEmailChange": "Разреши промяна на имейла", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Създаден на", "verified": "Потвърден", "active": "Активен", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json index 51d90051b..817615bfc 100644 --- a/i18n/br.i18n.json +++ b/i18n/br.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json index 4379081be..02e07af85 100644 --- a/i18n/ca.i18n.json +++ b/i18n/ca.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Comptes", "accounts-allowEmailChange": "Permet modificar correu electrònic", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Creat ", "verified": "Verificat", "active": "Actiu", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json index fc5a0dfbd..058e5184b 100644 --- a/i18n/cs.i18n.json +++ b/i18n/cs.i18n.json @@ -434,6 +434,7 @@ "no": "Ne", "accounts": "Účty", "accounts-allowEmailChange": "Povolit změnu Emailu", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Vytvořeno v", "verified": "Ověřen", "active": "Aktivní", @@ -443,4 +444,4 @@ "card-end-on": "Končí v", "editCardReceivedDatePopup-title": "Změnit datum přijetí", "editCardEndDatePopup-title": "Změnit datum konce" -} +} \ No newline at end of file diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index fb98a9504..8b623821d 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -434,6 +434,7 @@ "no": "Nein", "accounts": "Konten", "accounts-allowEmailChange": "Ändern der E-Mailadresse zulassen", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Erstellt am", "verified": "Geprüft", "active": "Aktiv", @@ -443,4 +444,4 @@ "card-end-on": "Endet am", "editCardReceivedDatePopup-title": "Empfangsdatum ändern", "editCardEndDatePopup-title": "Enddatum ändern" -} +} \ No newline at end of file diff --git a/i18n/el.i18n.json b/i18n/el.i18n.json index bf36bcab2..0befbe1fe 100644 --- a/i18n/el.i18n.json +++ b/i18n/el.i18n.json @@ -434,6 +434,7 @@ "no": "Όχι", "accounts": "Λογαριασμοί", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/en-GB.i18n.json b/i18n/en-GB.i18n.json index d51127d88..d9b4c0f94 100644 --- a/i18n/en-GB.i18n.json +++ b/i18n/en-GB.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/eo.i18n.json b/i18n/eo.i18n.json index b5fa9a392..5b7836486 100644 --- a/i18n/eo.i18n.json +++ b/i18n/eo.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/es-AR.i18n.json b/i18n/es-AR.i18n.json index 60c1c1140..d450d000c 100644 --- a/i18n/es-AR.i18n.json +++ b/i18n/es-AR.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Cuentas", "accounts-allowEmailChange": "Permitir Cambio de Email", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Creado en", "verified": "Verificado", "active": "Activo", @@ -443,4 +444,4 @@ "card-end-on": "Termina en", "editCardReceivedDatePopup-title": "Cambiar fecha de recepción", "editCardEndDatePopup-title": "Cambiar fecha de término" -} +} \ No newline at end of file diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json index c8b0f4221..08aca6e22 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Cuentas", "accounts-allowEmailChange": "Permitir cambiar el correo electrónico", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Creado en", "verified": "Verificado", "active": "Activo", @@ -443,4 +444,4 @@ "card-end-on": "Finalizado el", "editCardReceivedDatePopup-title": "Cambiar la fecha de recepción", "editCardEndDatePopup-title": "Cambiar la fecha de finalización" -} +} \ No newline at end of file diff --git a/i18n/eu.i18n.json b/i18n/eu.i18n.json index 6c692aea5..025fddfb8 100644 --- a/i18n/eu.i18n.json +++ b/i18n/eu.i18n.json @@ -434,6 +434,7 @@ "no": "Ez", "accounts": "Kontuak", "accounts-allowEmailChange": "Baimendu e-mail aldaketa", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Noiz sortua", "verified": "Egiaztatuta", "active": "Gaituta", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json index 4c03a3b75..cf9e062fb 100644 --- a/i18n/fa.i18n.json +++ b/i18n/fa.i18n.json @@ -434,6 +434,7 @@ "no": "خیر", "accounts": "حساب‌ها", "accounts-allowEmailChange": "اجازه تغییر رایانامه", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "ساخته شده در", "verified": "معتبر", "active": "فعال", @@ -443,4 +444,4 @@ "card-end-on": "پایان در", "editCardReceivedDatePopup-title": "تغییر تاریخ رسید", "editCardEndDatePopup-title": "تغییر تاریخ پایان" -} +} \ No newline at end of file diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json index 054e9969c..a68831dce 100644 --- a/i18n/fi.i18n.json +++ b/i18n/fi.i18n.json @@ -372,7 +372,7 @@ "upload": "Lähetä", "upload-avatar": "Lähetä profiilikuva", "uploaded-avatar": "Profiilikuva lähetetty", - "username": "Käyttäjänimi", + "username": "Käyttäjätunnus", "view-it": "Näytä se", "warn-list-archived": "varoitus: tämä kortti on roskakorissa olevassa listassa", "watch": "Seuraa", @@ -400,7 +400,7 @@ "smtp-tls-description": "Ota käyttöön TLS tuki SMTP palvelimelle", "smtp-host": "SMTP isäntä", "smtp-port": "SMTP portti", - "smtp-username": "Käyttäjänimi", + "smtp-username": "Käyttäjätunnus", "smtp-password": "Salasana", "smtp-tls": "TLS tuki", "send-from": "Lähettäjä", @@ -434,6 +434,7 @@ "no": "Ei", "accounts": "Tilit", "accounts-allowEmailChange": "Salli sähköpostiosoitteen muuttaminen", + "accounts-allowUserNameChange": "Salli käyttäjätunnuksen muuttaminen", "createdAt": "Luotu", "verified": "Varmistettu", "active": "Aktiivinen", @@ -443,4 +444,4 @@ "card-end-on": "Loppuu", "editCardReceivedDatePopup-title": "Vaihda vastaanottamispäivää", "editCardEndDatePopup-title": "Vaihda loppumispäivää" -} +} \ No newline at end of file diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index ce8034b08..a16a1b5b0 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -434,6 +434,7 @@ "no": "Non", "accounts": "Comptes", "accounts-allowEmailChange": "Autoriser le changement d'adresse mail", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Créé le", "verified": "Vérifié", "active": "Actif", @@ -443,4 +444,4 @@ "card-end-on": "Se termine le", "editCardReceivedDatePopup-title": "Changer la date de réception", "editCardEndDatePopup-title": "Changer la date de fin" -} +} \ No newline at end of file diff --git a/i18n/gl.i18n.json b/i18n/gl.i18n.json index 9e23ea410..faab1d9b4 100644 --- a/i18n/gl.i18n.json +++ b/i18n/gl.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json index 5f21384a6..4ae0505e6 100644 --- a/i18n/he.i18n.json +++ b/i18n/he.i18n.json @@ -434,6 +434,7 @@ "no": "לא", "accounts": "חשבונות", "accounts-allowEmailChange": "אפשר שינוי דוא\"ל", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "נוצר ב", "verified": "עבר אימות", "active": "פעיל", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/hu.i18n.json b/i18n/hu.i18n.json index fc1f2e8cd..94af52d1a 100644 --- a/i18n/hu.i18n.json +++ b/i18n/hu.i18n.json @@ -434,6 +434,7 @@ "no": "Nem", "accounts": "Fiókok", "accounts-allowEmailChange": "E-mail megváltoztatásának engedélyezése", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Létrehozva", "verified": "Ellenőrizve", "active": "Aktív", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/hy.i18n.json b/i18n/hy.i18n.json index 42725bbf7..8c06d36d5 100644 --- a/i18n/hy.i18n.json +++ b/i18n/hy.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/id.i18n.json b/i18n/id.i18n.json index e3ee33996..2bc608520 100644 --- a/i18n/id.i18n.json +++ b/i18n/id.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/ig.i18n.json b/i18n/ig.i18n.json index e2edbe31b..f7746d5c3 100644 --- a/i18n/ig.i18n.json +++ b/i18n/ig.i18n.json @@ -434,6 +434,7 @@ "no": "Mba", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Ekere na", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json index 9229c2e8f..36879924d 100644 --- a/i18n/it.i18n.json +++ b/i18n/it.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Profili", "accounts-allowEmailChange": "Permetti modifica dell'email", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "creato alle", "verified": "Verificato", "active": "Attivo", @@ -443,4 +444,4 @@ "card-end-on": "Termina il", "editCardReceivedDatePopup-title": "Cambia data ricezione", "editCardEndDatePopup-title": "Cambia data finale" -} +} \ No newline at end of file diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json index 7c7db1b49..c55be771b 100644 --- a/i18n/ja.i18n.json +++ b/i18n/ja.i18n.json @@ -434,6 +434,7 @@ "no": "いいえ", "accounts": "アカウント", "accounts-allowEmailChange": "メールアドレスの変更を許可", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json index bee42e390..35d2b447e 100644 --- a/i18n/ko.i18n.json +++ b/i18n/ko.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/lv.i18n.json b/i18n/lv.i18n.json index 1231a0136..82bfa1cc1 100644 --- a/i18n/lv.i18n.json +++ b/i18n/lv.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/mn.i18n.json b/i18n/mn.i18n.json index 346110c58..13e96ed6b 100644 --- a/i18n/mn.i18n.json +++ b/i18n/mn.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/nb.i18n.json b/i18n/nb.i18n.json index a33240e84..3b30ada93 100644 --- a/i18n/nb.i18n.json +++ b/i18n/nb.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/nl.i18n.json b/i18n/nl.i18n.json index 72ef0f444..0696409d0 100644 --- a/i18n/nl.i18n.json +++ b/i18n/nl.i18n.json @@ -434,6 +434,7 @@ "no": "Nee", "accounts": "Accounts", "accounts-allowEmailChange": "Sta E-mailadres wijzigingen toe", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Gemaakt op", "verified": "Geverifieerd", "active": "Actief", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json index 4ce864bd3..99c7ae3c3 100644 --- a/i18n/pl.i18n.json +++ b/i18n/pl.i18n.json @@ -434,6 +434,7 @@ "no": "Nie", "accounts": "Konto", "accounts-allowEmailChange": "Zezwól na zmianę adresu email", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Stworzono o", "verified": "Zweryfikowane", "active": "Aktywny", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json index d7d7243ac..613ae44b4 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -434,6 +434,7 @@ "no": "Não", "accounts": "Contas", "accounts-allowEmailChange": "Permitir Mudança de Email", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Criado em", "verified": "Verificado", "active": "Ativo", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/pt.i18n.json b/i18n/pt.i18n.json index 98614f9c2..b78bbca8d 100644 --- a/i18n/pt.i18n.json +++ b/i18n/pt.i18n.json @@ -434,6 +434,7 @@ "no": "Não", "accounts": "Contas", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verificado", "active": "Ativo", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json index 3086cb0f7..014ad3d4d 100644 --- a/i18n/ro.i18n.json +++ b/i18n/ro.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json index 8f5c08279..447e8f0da 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -434,6 +434,7 @@ "no": "Нет", "accounts": "Учетные записи", "accounts-allowEmailChange": "Разрешить изменение электронной почты", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Создано на", "verified": "Проверено", "active": "Действующий", @@ -443,4 +444,4 @@ "card-end-on": "Завершится до", "editCardReceivedDatePopup-title": "Изменить дату получения", "editCardEndDatePopup-title": "Изменить дату завершения" -} +} \ No newline at end of file diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json index 66ffe5a4c..144757513 100644 --- a/i18n/sr.i18n.json +++ b/i18n/sr.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/sv.i18n.json b/i18n/sv.i18n.json index e923fdf5c..4cc2d987f 100644 --- a/i18n/sv.i18n.json +++ b/i18n/sv.i18n.json @@ -434,6 +434,7 @@ "no": "Nej", "accounts": "Konton", "accounts-allowEmailChange": "Tillåt e-poständring", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Skapad vid", "verified": "Verifierad", "active": "Aktiv", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Ändra mottagningsdatum", "editCardEndDatePopup-title": "Ändra slutdatum" -} +} \ No newline at end of file diff --git a/i18n/ta.i18n.json b/i18n/ta.i18n.json index 1f46dce6b..d4cf4d887 100644 --- a/i18n/ta.i18n.json +++ b/i18n/ta.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/th.i18n.json b/i18n/th.i18n.json index a4f2d6b4e..7cae51e41 100644 --- a/i18n/th.i18n.json +++ b/i18n/th.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json index 3dfecc595..7f9cfd3d2 100644 --- a/i18n/tr.i18n.json +++ b/i18n/tr.i18n.json @@ -434,6 +434,7 @@ "no": "Hayır", "accounts": "Hesaplar", "accounts-allowEmailChange": "E-posta Değiştirmeye İzin Ver", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Oluşturulma tarihi", "verified": "Doğrulanmış", "active": "Aktif", @@ -443,4 +444,4 @@ "card-end-on": "Bitiş zamanı", "editCardReceivedDatePopup-title": "Giriş tarihini değiştir", "editCardEndDatePopup-title": "Bitiş tarihini değiştir" -} +} \ No newline at end of file diff --git a/i18n/uk.i18n.json b/i18n/uk.i18n.json index 2552ec4ef..599ebf914 100644 --- a/i18n/uk.i18n.json +++ b/i18n/uk.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/vi.i18n.json b/i18n/vi.i18n.json index 5e03eaedd..73fc1bcbd 100644 --- a/i18n/vi.i18n.json +++ b/i18n/vi.i18n.json @@ -434,6 +434,7 @@ "no": "No", "accounts": "Accounts", "accounts-allowEmailChange": "Allow Email Change", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json index 37b641e71..f1860a83e 100644 --- a/i18n/zh-CN.i18n.json +++ b/i18n/zh-CN.i18n.json @@ -434,6 +434,7 @@ "no": "否", "accounts": "账号", "accounts-allowEmailChange": "允许邮箱变更", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "创建于", "verified": "已验证", "active": "活跃", @@ -443,4 +444,4 @@ "card-end-on": "终止于", "editCardReceivedDatePopup-title": "修改接收日期", "editCardEndDatePopup-title": "修改终止日期" -} +} \ No newline at end of file diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json index fa658a5e3..082668dd1 100644 --- a/i18n/zh-TW.i18n.json +++ b/i18n/zh-TW.i18n.json @@ -434,6 +434,7 @@ "no": "否", "accounts": "帳號", "accounts-allowEmailChange": "准許變更電子信箱", + "accounts-allowUserNameChange": "Allow Username Change", "createdAt": "Created at", "verified": "Verified", "active": "Active", @@ -443,4 +444,4 @@ "card-end-on": "Ends on", "editCardReceivedDatePopup-title": "Change received date", "editCardEndDatePopup-title": "Change end date" -} +} \ No newline at end of file From 792f187d0604fa33d0a08090876b2b5d04a06992 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 8 May 2018 10:57:31 +0300 Subject: [PATCH 18/19] Update translation (de). --- i18n/de.i18n.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index 8b623821d..c87a5297b 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -433,8 +433,8 @@ "yes": "Ja", "no": "Nein", "accounts": "Konten", - "accounts-allowEmailChange": "Ändern der E-Mailadresse zulassen", - "accounts-allowUserNameChange": "Allow Username Change", + "accounts-allowEmailChange": "Ändern der E-Mailadresse erlauben", + "accounts-allowUserNameChange": "Ändern des Benutzernamens erlauben", "createdAt": "Erstellt am", "verified": "Geprüft", "active": "Aktiv", From f3aa524b773f746d44c69fb432b6905bd139792d Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 8 May 2018 11:13:35 +0300 Subject: [PATCH 19/19] v0.95 --- CHANGELOG.md | 2 +- package.json | 2 +- sandstorm-pkgdef.capnp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7690c403..49ee9b39d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Upcoming Wekan release +# v0.95 2018-05-08 Wekan release This release adds the following new features: diff --git a/package.json b/package.json index 68b5fd5c0..a7f02caee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "0.94.0", + "version": "0.95.0", "description": "The open-source Trello-like kanban", "private": true, "scripts": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 12a001c29..bd5994e9c 100644 --- a/sandstorm-pkgdef.capnp +++ b/sandstorm-pkgdef.capnp @@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = ( appTitle = (defaultText = "Wekan"), # The name of the app as it is displayed to the user. - appVersion = 79, + appVersion = 80, # Increment this for every release. - appMarketingVersion = (defaultText = "0.94.0~2018-05-03"), + appMarketingVersion = (defaultText = "0.95.0~2018-05-08"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0,