From 1852e66abddda23b923c5e22b6cbe12c6ab7c349 Mon Sep 17 00:00:00 2001 From: Emile NDAGIJIMANA Date: Wed, 22 Sep 2021 16:55:23 +0200 Subject: [PATCH 01/15] Search by name, userName or email address when adding a new user to a board --- models/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/users.js b/models/users.js index 8633d502c..2954e71e1 100644 --- a/models/users.js +++ b/models/users.js @@ -431,7 +431,7 @@ Users.allow({ // Search a user in the complete server database by its name or username. This // is used for instance to add a new user to a board. -const searchInFields = ['username', 'profile.fullname']; +const searchInFields = ['username', 'profile.fullname', 'emails.address']; Users.initEasySearch(searchInFields, { use: 'mongo-db', returnFields: [...searchInFields, 'profile.avatarUrl'], From 7ae2360a557e7af5532457dccce4f8db02367186 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Sep 2021 14:46:30 +0300 Subject: [PATCH 02/15] Updated translations. --- i18n/es.i18n.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json index 2c7b8d478..5066fc93a 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -75,10 +75,10 @@ "activity-checklist-uncompleted-card": "no completó la lista de verificación %s", "activity-editComment": "comentario editado", "activity-deleteComment": "comentario eliminado", - "activity-receivedDate": "edited received date to %s of %s", - "activity-startDate": "edited start date to %s of %s", - "activity-dueDate": "edited due date to %s of %s", - "activity-endDate": "edited end date to %s of %s", + "activity-receivedDate": "editada la fecha de recepción a %s de %s", + "activity-startDate": "editada la fecha de inicio a %s de %s", + "activity-dueDate": "editada la fecha de vencimiento a %s de %s", + "activity-endDate": "editada la fecha de finalización a %s de %s", "add-attachment": "Añadir adjunto", "add-board": "Añadir tablero", "add-template": "Añadir plantilla", @@ -89,7 +89,7 @@ "add-subtask": "Añadir subtarea", "add-checklist": "Añadir una lista de verificación", "add-checklist-item": "Añadir un elemento a la lista de verificación", - "convertChecklistItemToCardPopup-title": "Convert to Card", + "convertChecklistItemToCardPopup-title": "Convertir en tarjeta", "add-cover": "Añadir portada", "add-label": "Añadir una etiqueta", "add-list": "Añadir una lista", @@ -185,7 +185,7 @@ "vote-against": "contrarios", "deleteVotePopup-title": "¿Borrar voto?", "vote-delete-pop": "El Borrado es permanente. Perderá todas las acciones asociadas con este voto.", - "cardStartPlanningPokerPopup-title": "Start a Planning Poker", + "cardStartPlanningPokerPopup-title": "Comenzar una Planning Poker", "card-edit-planning-poker": "Edit Planning Poker", "editPokerEndDatePopup-title": "Change Planning Poker vote end date", "poker-question": "Planning Poker", @@ -199,7 +199,7 @@ "poker-forty": "40", "poker-oneHundred": "100", "poker-unsure": "?", - "poker-finish": "Finish", + "poker-finish": "Finalizado", "poker-result-votes": "Votes", "poker-result-who": "Who", "poker-replay": "Replay", @@ -237,7 +237,7 @@ "close": "Cerrar", "close-board": "Cerrar el tablero", "close-board-pop": "Podrás restaurar el tablero haciendo clic en el botón \"Archivo\" del encabezado de la pantalla inicial.", - "close-card": "Close Card", + "close-card": "Cerrar tarjeta", "color-black": "negra", "color-blue": "azul", "color-crimson": "carmesí", @@ -322,7 +322,7 @@ "editCardStartDatePopup-title": "Cambiar la fecha de comienzo", "editCardDueDatePopup-title": "Cambiar la fecha de vencimiento", "editCustomFieldPopup-title": "Editar el campo", - "addReactionPopup-title": "Add reaction", + "addReactionPopup-title": "Añadir reacción", "editCardSpentTimePopup-title": "Cambiar el tiempo consumido", "editLabelPopup-title": "Cambiar la etiqueta", "editNotificationPopup-title": "Editar las notificaciones", @@ -363,11 +363,11 @@ "export-board-excel": "Exportar tablero a Excel", "user-can-not-export-excel": "El usuario no puede exportar Excel", "export-board-html": "Exportar tablero a HTML", - "export-card": "Export card", - "export-card-pdf": "Export card to PDF", - "user-can-not-export-card-to-pdf": "User can not export card to PDF", + "export-card": "Exportar la tarjeta", + "export-card-pdf": "Exportar la tarjeta a PDF", + "user-can-not-export-card-to-pdf": "El usuario no puede exportar a PDF", "exportBoardPopup-title": "Exportar el tablero", - "exportCardPopup-title": "Export card", + "exportCardPopup-title": "Exportar la tarjeta", "sort": "Ordenar", "sort-desc": "Click para ordenar la lista", "list-sort-by": "Ordenar la lista por:", @@ -391,7 +391,7 @@ "filter-no-label": "Sin etiqueta", "filter-member-label": "Filtrar por miembro", "filter-no-member": "Sin miembro", - "filter-assignee-label": "Filter by assignee", + "filter-assignee-label": "Filtrar por asignado", "filter-no-assignee": "No asignado", "filter-custom-fields-label": "Filtrar por campos personalizados", "filter-no-custom-fields": "Sin campos personalizados", @@ -409,7 +409,7 @@ "headerBarCreateBoardPopup-title": "Crear tablero", "home": "Inicio", "import": "Importar", - "impersonate-user": "Impersonate user", + "impersonate-user": "Impersonalizar", "link": "Enlace", "import-board": "importar un tablero", "import-board-c": "Importar un tablero", From be6ff3782bfa40087a7a593b464f95a41edb1893 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 20 Sep 2021 18:29:04 +0300 Subject: [PATCH 03/15] Updated translations. --- i18n/en.i18n.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json index 95875bb05..8b19a7e7c 100644 --- a/i18n/en.i18n.json +++ b/i18n/en.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", From 4f6bd86478443ac80a5c44bbf7a8ad19e5acb411 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 21 Sep 2021 22:09:23 +0300 Subject: [PATCH 04/15] Custom Fields at opened card below each other. Thanks to xet7 ! --- client/components/cards/cardDetails.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/cards/cardDetails.jade b/client/components/cards/cardDetails.jade index 9f0dadfa4..b9f051151 100644 --- a/client/components/cards/cardDetails.jade +++ b/client/components/cards/cardDetails.jade @@ -227,8 +227,8 @@ template(name="cardDetails") //.card-details-items if customFieldsWD - hr each customFieldsWD + hr .card-details-item.card-details-item-customfield h3.card-details-item-title i.fa.fa-list-alt From f9807bfad86de4deccd9001f4adc2541ad367bc9 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 21 Sep 2021 22:10:52 +0300 Subject: [PATCH 05/15] Updated ChangeLog. --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf08d625c..f18fb284f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ See https://github.com/wekan/wekan/issues/3874 # Upcoming Wekan release +This release adds the following new features: + +- [Custom Fields at opened card below each other](https://github.com/wekan/wekan/commit/09b5359c45b3f8b2f461054d130795338c4235db). + Thanks to xet7. + This release adds the following updates: - [Updated Docker base image to newer Ubuntu](https://github.com/wekan/wekan/commit/442e6bf983ada47c26a15dbc1982c554118fa84d). From dd58698cefff2fbc350ff154e683acf5bcceff24 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 21 Sep 2021 22:39:08 +0300 Subject: [PATCH 06/15] Updated translations. --- i18n/ru.i18n.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json index c9e975dcb..b8460dc46 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -322,7 +322,7 @@ "editCardStartDatePopup-title": "Изменить дату начала", "editCardDueDatePopup-title": "Изменить дату выполнения", "editCustomFieldPopup-title": "Редактировать поле", - "addReactionPopup-title": "Add reaction", + "addReactionPopup-title": "Добавить реакцию", "editCardSpentTimePopup-title": "Изменить затраченное время", "editLabelPopup-title": "Изменить метки", "editNotificationPopup-title": "Редактировать уведомления", @@ -652,14 +652,14 @@ "automatically-field-on-card": "Добавить поле на новую карточку", "always-field-on-card": "Добавить поле на все карточки", "showLabel-field-on-card": "Показать имя поля на карточке", - "showSum-field-on-list": "Show sum of fields at top of list", + "showSum-field-on-list": "Показать итоги полей сверху списка", "yes": "Да", "no": "Нет", "accounts": "Учетные записи", "accounts-allowEmailChange": "Разрешить изменение электронной почты", "accounts-allowUserNameChange": "Разрешить изменение имени пользователя", - "tableVisibilityMode-allowPrivateOnly": "Boards visibility: Allow private boards only", - "tableVisibilityMode": "Boards visibility", + "tableVisibilityMode-allowPrivateOnly": "Видимость досок: Показывать только частные доски", + "tableVisibilityMode": "Видимость досок", "createdAt": "Создан", "modifiedAt": "Изменено", "verified": "Подтвержден", @@ -829,7 +829,7 @@ "error-undefined": "Что-то пошло не так", "error-ldap-login": "Ошибка при попытке авторизации", "display-authentication-method": "Показывать способ авторизации", - "oidc-button-text": "Customize the OIDC button text", + "oidc-button-text": "Изменить текст кнопки OIDC", "default-authentication-method": "Способ авторизации по умолчанию", "duplicate-board": "Клонировать доску", "org-number": "Количество организаций:", @@ -949,7 +949,7 @@ "operator-member": "участника", "operator-member-abbrev": "м", "operator-assignee": "Кому назначено", - "operator-assignee-abbrev": "a", + "operator-assignee-abbrev": "а", "operator-creator": "автор", "operator-status": "статус", "operator-due": "выполнить к", From 0b02e88ee36ea75ccdab940c76c14ea0ff70d758 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 21 Sep 2021 22:46:32 +0300 Subject: [PATCH 07/15] Try to fix Bug: Card number equal to #0 when creating a sub-task from a card. Thanks to marcungeschikts, olivierlambert and xet7 ! Fixes #3970 --- client/components/activities/activities.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/components/activities/activities.js b/client/components/activities/activities.js index 8ab092ea2..f8025d659 100644 --- a/client/components/activities/activities.js +++ b/client/components/activities/activities.js @@ -113,8 +113,10 @@ BlazeComponent.extendComponent({ ).getLabelById(lastLabelId); if (lastLabel && (lastLabel.name === undefined || lastLabel.name === '')) { return lastLabel.color; - } else { + } else if (lastLabel.name !== undefined && lastLabel.name !== '') { return lastLabel.name; + } else { + return null; } }, From 87e9949f33a94eb10614e0a86617d18e71792edf Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 21 Sep 2021 22:49:03 +0300 Subject: [PATCH 08/15] Updated ChangeLog. --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f18fb284f..ec8a5bc15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,13 +10,18 @@ This release adds the following new features: - [Custom Fields at opened card below each other](https://github.com/wekan/wekan/commit/09b5359c45b3f8b2f461054d130795338c4235db). Thanks to xet7. -This release adds the following updates: +and adds the following updates: - [Updated Docker base image to newer Ubuntu](https://github.com/wekan/wekan/commit/442e6bf983ada47c26a15dbc1982c554118fa84d). Thanks to xet7. - [Try to add Docker image to GitHub Docker Image Registry](https://github.com/wekan/wekan/commit/70ba1eca787671879215726c16335a84e2b636c9). Thanks to xet7. +and fixes the following bugs: + +- [Try to fix Bug: Card number equal to #0 when creating a sub-task from a card](https://github.com/wekan/wekan/commit/4c659da5334641f558e77285f7ca47e562f7c853). + Thanks to marcungeschikts, olivierlambert and xet7. + Thanks to above GitHub users for their contributions and translators for their translations. # v5.59 2021-09-17 Wekan release From ee06e4f6de14f0df89b44f80dca254c178a607ef Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 22 Sep 2021 12:14:42 +0300 Subject: [PATCH 09/15] Toggle opened card Custom Fields layout between Grid and one per row. Thanks to xet7 ! --- client/components/cards/cardDetails.jade | 11 ++++++++++- client/components/cards/cardDetails.js | 8 ++++++++ models/users.js | 24 ++++++++++++++++++++++++ 3 files changed, 42 insertions(+), 1 deletion(-) diff --git a/client/components/cards/cardDetails.jade b/client/components/cards/cardDetails.jade index b9f051151..931eae3c9 100644 --- a/client/components/cards/cardDetails.jade +++ b/client/components/cards/cardDetails.jade @@ -227,8 +227,17 @@ template(name="cardDetails") //.card-details-items if customFieldsWD - each customFieldsWD + .material-toggle-switch(title="{{_ 'change'}} {{_ 'custom-fields'}} {{_ 'layout'}}") + if customFieldsGrid + input.toggle-switch(type="checkbox" id="toggleCustomFieldsGridButton" checked="checked") + else + input.toggle-switch(type="checkbox" id="toggleCustomFieldsGridButton") + label.toggle-label(for="toggleCustomFieldsGridButton") + unless customFieldsGrid hr + each customFieldsWD + if customFieldsGrid + hr .card-details-item.card-details-item-customfield h3.card-details-item-title i.fa.fa-list-alt diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index a3a2b1794..fd12733fd 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -61,6 +61,11 @@ BlazeComponent.extendComponent({ return Meteor.user().hasHiddenSystemMessages(); }, + customFieldsGrid() { + return Meteor.user().hasCustomFieldsGrid(); + }, + + cardMaximized() { return Meteor.user().hasCardMaximized(); }, @@ -419,6 +424,9 @@ BlazeComponent.extendComponent({ 'click #toggleButton'() { Meteor.call('toggleSystemMessages'); }, + 'click #toggleCustomFieldsGridButton'() { + Meteor.call('toggleCustomFieldsGrid'); + }, 'click .js-maximize-card-details'() { Meteor.call('toggleCardMaximized'); autosize($('.card-details')); diff --git a/models/users.js b/models/users.js index 2954e71e1..bb95711af 100644 --- a/models/users.js +++ b/models/users.js @@ -184,6 +184,13 @@ Users.attachSchema( type: Boolean, optional: true, }, + 'profile.customFieldsGrid': { + /** + * has user at card Custom Fields have Grid (false) or one per row (true) layout? + */ + type: Boolean, + optional: true, + }, 'profile.hiddenSystemMessages': { /** * does the user want to hide system messages? @@ -652,6 +659,11 @@ Users.helpers({ return profile.hiddenSystemMessages || false; }, + hasCustomFieldsGrid() { + const profile = this.profile || {}; + return profile.customFieldsGrid || false; + }, + hasCardMaximized() { const profile = this.profile || {}; return profile.cardMaximized || false; @@ -809,6 +821,14 @@ Users.mutations({ }; }, + toggleFieldsGrid(value = false) { + return { + $set: { + 'profile.customFieldsGrid': !value, + }, + }; + }, + toggleCardMaximized(value = false) { return { $set: { @@ -911,6 +931,10 @@ Meteor.methods({ const user = Meteor.user(); user.toggleSystem(user.hasHiddenSystemMessages()); }, + toggleCustomFieldsGrid() { + const user = Meteor.user(); + user.toggleFieldsGrid(user.hasCustomFieldsGrid()); + }, toggleCardMaximized() { const user = Meteor.user(); user.toggleCardMaximized(user.hasCardMaximized()); From 269551ead587ebd962d4662fddef4a5fb4104388 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 22 Sep 2021 12:17:20 +0300 Subject: [PATCH 10/15] Updated ChangeLog. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec8a5bc15..f72de97eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ See https://github.com/wekan/wekan/issues/3874 This release adds the following new features: -- [Custom Fields at opened card below each other](https://github.com/wekan/wekan/commit/09b5359c45b3f8b2f461054d130795338c4235db). +- [Toggle opened card Custom Fields layout between Grid and one per row](https://github.com/wekan/wekan/commit/fc2fb9a081021663cc822bf2a687fda74cd0afa6). Thanks to xet7. and adds the following updates: From cf51ddb32e7f2b068fc1f64210adedcb32489d62 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 22 Sep 2021 13:15:06 +0300 Subject: [PATCH 11/15] Update build scripts to install npm from NodeSource, and meteor with npm. Thanks to Meteor developers! --- rebuild-wekan.bat | 4 ++-- rebuild-wekan.sh | 19 ++++++++++--------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/rebuild-wekan.bat b/rebuild-wekan.bat index 443dd6147..414db85b9 100644 --- a/rebuild-wekan.bat +++ b/rebuild-wekan.bat @@ -16,7 +16,7 @@ cd C:\repos REM Install chocolatey @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" -choco install -y git curl python2 dotnet4.5.2 nano mongodb-3 mongoclient meteor +choco install -y git curl python2 dotnet4.5.2 nano mongodb-4 mongoclient curl -O https://nodejs.org/dist/v12.22.6/node-v12.22.6-x64.msi call node-v12.22.6-x64.msi @@ -25,12 +25,12 @@ call npm config -g set msvs_version 2015 call meteor npm config -g set msvs_version 2015 call npm -g install npm +call npm -g install meteor call npm -g install node-gyp call npm -g install fibers cd C:\repos git clone https://github.com/wekan/wekan.git cd wekan -git checkout edge echo "Building Wekan." REM del /S /F /Q packages REM ## REPOS BELOW ARE INCLUDED TO WEKAN diff --git a/rebuild-wekan.sh b/rebuild-wekan.sh index b6b1671e2..add91a4b5 100755 --- a/rebuild-wekan.sh +++ b/rebuild-wekan.sh @@ -22,18 +22,18 @@ do if [[ "$OSTYPE" == "linux-gnu" ]]; then echo "Linux"; # Debian, Ubuntu, Mint - sudo apt-get install -y build-essential gcc g++ make git curl wget npm p7zip-full + sudo apt-get install -y build-essential gcc g++ make git curl wget p7zip-full zip unzip unp + curl -fsSL https://deb.nodesource.com/setup_12.x | sudo -E bash - + sudo apt-get install -y nodejs # npm nodejs #sudo npm -g install npm #curl -0 -L https://npmjs.org/install.sh | sudo sh #sudo chown -R $(id -u):$(id -g) $HOME/.npm - sudo npm -g install n - sudo n 12.22.6 - #curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - - #sudo apt-get install -y nodejs + #sudo npm -g install n + #sudo n 12.22.6 elif [[ "$OSTYPE" == "darwin"* ]]; then echo "macOS"; - pause '1) Install XCode 2) Install Node 8.x from https://nodejs.org/en/ 3) Press [Enter] key to continue.' + pause '1) Install XCode 2) Install Node 12.x from https://nodejs.org/en/ 3) Press [Enter] key to continue.' elif [[ "$OSTYPE" == "cygwin" ]]; then # POSIX compatibility layer and Linux environment emulation for Windows echo "TODO: Add Cygwin"; @@ -55,14 +55,15 @@ do exit; fi - ## Latest npm with Meteor 1.8.x + ## Latest npm with Meteor 2.2 sudo npm -g install npm sudo npm -g install node-gyp - # Latest fibers for Meteor 1.8.x + # Latest fibers for Meteor 2.2 sudo mkdir -p /usr/local/lib/node_modules/fibers/.node-gyp sudo npm -g install fibers # Install Meteor, if it's not yet installed - curl https://install.meteor.com | bash + sudo npm install -g meteor --unsafe-perm + #curl https://install.meteor.com | bash #sudo chown -R $(id -u):$(id -g) $HOME/.npm $HOME/.meteor break ;; From d1950efdd4742355279f1cd1b0f95d1a1370d486 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 22 Sep 2021 13:16:53 +0300 Subject: [PATCH 12/15] Updated ChangeLog. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f72de97eb..d45be0c8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ and adds the following updates: Thanks to xet7. - [Try to add Docker image to GitHub Docker Image Registry](https://github.com/wekan/wekan/commit/70ba1eca787671879215726c16335a84e2b636c9). Thanks to xet7. +- [Update build scripts to install npm from NodeSource, and meteor with npm](https://github.com/wekan/wekan/commit/c062621dd5486b60bdd200a9279a38b98fc0d410). + Thanks to Meteor developers. and fixes the following bugs: From db54eb87cd84535a3a08cc24bc9c55a343e60f7c Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 22 Sep 2021 17:07:38 +0300 Subject: [PATCH 13/15] Updated translations. --- i18n/ar-EG.i18n.json | 2 ++ i18n/ar.i18n.json | 2 ++ i18n/bg.i18n.json | 2 ++ i18n/br.i18n.json | 2 ++ i18n/ca.i18n.json | 2 ++ i18n/cs.i18n.json | 2 ++ i18n/da.i18n.json | 2 ++ i18n/de-CH.i18n.json | 2 ++ i18n/de.i18n.json | 2 ++ i18n/el.i18n.json | 2 ++ i18n/en-GB.i18n.json | 2 ++ i18n/en-IT.i18n.json | 2 ++ i18n/eo.i18n.json | 2 ++ i18n/es-AR.i18n.json | 2 ++ i18n/es-CL.i18n.json | 2 ++ i18n/es-LA.i18n.json | 2 ++ i18n/es-MX.i18n.json | 2 ++ i18n/es-PE.i18n.json | 2 ++ i18n/es-PY.i18n.json | 2 ++ i18n/es.i18n.json | 2 ++ i18n/eu.i18n.json | 2 ++ i18n/fa-IR.i18n.json | 2 ++ i18n/fa.i18n.json | 2 ++ i18n/fi.i18n.json | 2 ++ i18n/fr-CH.i18n.json | 2 ++ i18n/fr.i18n.json | 2 ++ i18n/gl.i18n.json | 2 ++ i18n/he.i18n.json | 2 ++ i18n/hi.i18n.json | 2 ++ i18n/hr.i18n.json | 2 ++ i18n/hu.i18n.json | 2 ++ i18n/hy.i18n.json | 2 ++ i18n/id.i18n.json | 2 ++ i18n/ig.i18n.json | 2 ++ i18n/it.i18n.json | 2 ++ i18n/ja.i18n.json | 2 ++ i18n/ka.i18n.json | 2 ++ i18n/km.i18n.json | 2 ++ i18n/ko.i18n.json | 2 ++ i18n/lt.i18n.json | 2 ++ i18n/lv.i18n.json | 2 ++ i18n/mk.i18n.json | 2 ++ i18n/mn.i18n.json | 2 ++ i18n/nb.i18n.json | 2 ++ i18n/nl.i18n.json | 2 ++ i18n/oc.i18n.json | 2 ++ i18n/pa.i18n.json | 2 ++ i18n/pl.i18n.json | 2 ++ i18n/pt-BR.i18n.json | 2 ++ i18n/pt.i18n.json | 2 ++ i18n/ro.i18n.json | 2 ++ i18n/ru.i18n.json | 2 ++ i18n/sk.i18n.json | 2 ++ i18n/sl.i18n.json | 2 ++ i18n/sr.i18n.json | 2 ++ i18n/sv.i18n.json | 2 ++ i18n/sw.i18n.json | 2 ++ i18n/ta.i18n.json | 2 ++ i18n/th.i18n.json | 2 ++ i18n/tr.i18n.json | 2 ++ i18n/uk.i18n.json | 2 ++ i18n/vi.i18n.json | 2 ++ i18n/zh-CN.i18n.json | 2 ++ i18n/zh-HK.i18n.json | 2 ++ i18n/zh-TW.i18n.json | 2 ++ 65 files changed, 130 insertions(+) diff --git a/i18n/ar-EG.i18n.json b/i18n/ar-EG.i18n.json index 342083a0f..2f73148d8 100644 --- a/i18n/ar-EG.i18n.json +++ b/i18n/ar-EG.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json index b590cf501..c5aaccf47 100644 --- a/i18n/ar.i18n.json +++ b/i18n/ar.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/bg.i18n.json b/i18n/bg.i18n.json index 4ac6cf283..e98815827 100644 --- a/i18n/bg.i18n.json +++ b/i18n/bg.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Експортиране на Табло", "exportCardPopup-title": "Export card", "sort": "Сортирай", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json index 821520717..04df2b5b1 100644 --- a/i18n/br.i18n.json +++ b/i18n/br.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json index 82df316ab..240fd4f87 100644 --- a/i18n/ca.i18n.json +++ b/i18n/ca.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exporta tauler", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json index 109a0aa35..503967753 100644 --- a/i18n/cs.i18n.json +++ b/i18n/cs.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exportovat tablo", "exportCardPopup-title": "Exportovat kartu", "sort": "řadit", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Kliknout pro třídění seznamu", "list-sort-by": "řadit seznam podle", "list-label-modifiedAt": "Čas posledního přístupu", diff --git a/i18n/da.i18n.json b/i18n/da.i18n.json index 70ebade0e..fa24d5bf5 100644 --- a/i18n/da.i18n.json +++ b/i18n/da.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Eksportér tavle", "exportCardPopup-title": "Export card", "sort": "Sortér", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Klik for at sortere listen", "list-sort-by": "Sortér listen efter:", "list-label-modifiedAt": "Senest tilgået:", diff --git a/i18n/de-CH.i18n.json b/i18n/de-CH.i18n.json index 183218d55..cb4dcb365 100644 --- a/i18n/de-CH.i18n.json +++ b/i18n/de-CH.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Board exportieren", "exportCardPopup-title": "Karte exportieren", "sort": "Sortieren", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Zum Sortieren der Liste klicken", "list-sort-by": "Sortieren der Liste nach:", "list-label-modifiedAt": "Letzte Zugriffszeit", diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index 28dc9ad49..9f21db1fd 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Board exportieren", "exportCardPopup-title": "Karte exportieren", "sort": "Sortieren", + "sorted": "Sortiert", + "remove-sort": "Sortierung entfernen", "sort-desc": "Zum Sortieren der Liste klicken", "list-sort-by": "Sortieren der Liste nach:", "list-label-modifiedAt": "Letzte Zugriffszeit", diff --git a/i18n/el.i18n.json b/i18n/el.i18n.json index eea4601ad..54b377e08 100644 --- a/i18n/el.i18n.json +++ b/i18n/el.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Εξαγωγή πίνακα", "exportCardPopup-title": "Export card", "sort": "Ταξινόμηση", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Κάντε κλικ για να ταξινομήστε τη λίστα", "list-sort-by": "Ταξινόμηση λίστας βάσει:", "list-label-modifiedAt": "Τελευταία Προσπέλαση", diff --git a/i18n/en-GB.i18n.json b/i18n/en-GB.i18n.json index 82227c18d..07adaa25a 100644 --- a/i18n/en-GB.i18n.json +++ b/i18n/en-GB.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/en-IT.i18n.json b/i18n/en-IT.i18n.json index 342083a0f..2f73148d8 100644 --- a/i18n/en-IT.i18n.json +++ b/i18n/en-IT.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/eo.i18n.json b/i18n/eo.i18n.json index 9df5df7b0..d24313281 100644 --- a/i18n/eo.i18n.json +++ b/i18n/eo.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/es-AR.i18n.json b/i18n/es-AR.i18n.json index b661c1c98..38b187bf5 100644 --- a/i18n/es-AR.i18n.json +++ b/i18n/es-AR.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exportar tablero", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/es-CL.i18n.json b/i18n/es-CL.i18n.json index 70e278429..e1c807482 100644 --- a/i18n/es-CL.i18n.json +++ b/i18n/es-CL.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exportar el tablero", "exportCardPopup-title": "Export card", "sort": "Ordenar", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click para ordenar la lista", "list-sort-by": "Ordenar la lista por:", "list-label-modifiedAt": "Hora de último acceso", diff --git a/i18n/es-LA.i18n.json b/i18n/es-LA.i18n.json index 342083a0f..2f73148d8 100644 --- a/i18n/es-LA.i18n.json +++ b/i18n/es-LA.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/es-MX.i18n.json b/i18n/es-MX.i18n.json index faa86a2ca..cedad5052 100644 --- a/i18n/es-MX.i18n.json +++ b/i18n/es-MX.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/es-PE.i18n.json b/i18n/es-PE.i18n.json index c541c4c6a..0bf2b5af6 100644 --- a/i18n/es-PE.i18n.json +++ b/i18n/es-PE.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exportar tablero", "exportCardPopup-title": "Export card", "sort": "Ordenar", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Clic para ordenar lista", "list-sort-by": "Ordenar la lista por:", "list-label-modifiedAt": "Hora de último acceso", diff --git a/i18n/es-PY.i18n.json b/i18n/es-PY.i18n.json index 342083a0f..2f73148d8 100644 --- a/i18n/es-PY.i18n.json +++ b/i18n/es-PY.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json index 5066fc93a..aefc9859f 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exportar el tablero", "exportCardPopup-title": "Exportar la tarjeta", "sort": "Ordenar", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click para ordenar la lista", "list-sort-by": "Ordenar la lista por:", "list-label-modifiedAt": "Hora de último acceso", diff --git a/i18n/eu.i18n.json b/i18n/eu.i18n.json index 04882766e..4aef40e56 100644 --- a/i18n/eu.i18n.json +++ b/i18n/eu.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Esportatu arbela", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/fa-IR.i18n.json b/i18n/fa-IR.i18n.json index c5cc412e0..460efdc44 100644 --- a/i18n/fa-IR.i18n.json +++ b/i18n/fa-IR.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json index 4669107be..d197eceff 100644 --- a/i18n/fa.i18n.json +++ b/i18n/fa.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "انتقال به بیرون برد", "exportCardPopup-title": "Export card", "sort": "مرتب سازی", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "برای مرتب سازی لیست کلیک کنید", "list-sort-by": "مرتب سازی لیست بر اساس:", "list-label-modifiedAt": "زمان دسترسی قبلی", diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json index ad0cc1f2e..fddbad3af 100644 --- a/i18n/fi.i18n.json +++ b/i18n/fi.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Vie taulu", "exportCardPopup-title": "Vie kortti", "sort": "Lajittele", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Klikkaa lajitellaksesi listan", "list-sort-by": "Lajittele lista:", "list-label-modifiedAt": "Viimeinen käyttöaika", diff --git a/i18n/fr-CH.i18n.json b/i18n/fr-CH.i18n.json index 342083a0f..2f73148d8 100644 --- a/i18n/fr-CH.i18n.json +++ b/i18n/fr-CH.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index 938e911f9..24751c947 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exporter le tableau", "exportCardPopup-title": "Exporter la carte", "sort": "Tri", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Cliquez pour trier la liste", "list-sort-by": "Trier la liste par:", "list-label-modifiedAt": "Dernier accès", diff --git a/i18n/gl.i18n.json b/i18n/gl.i18n.json index 5960b6bfa..98b5c8fe7 100644 --- a/i18n/gl.i18n.json +++ b/i18n/gl.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exportar taboleiro", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json index 573fd1f63..c9fb060a7 100644 --- a/i18n/he.i18n.json +++ b/i18n/he.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "ייצוא לוח", "exportCardPopup-title": "ייצוא כרטיס", "sort": "מיון", + "sorted": "ממוין", + "remove-sort": "הסרת מיון", "sort-desc": "לחיצה למיון הרשימה", "list-sort-by": "מיון הרשימה לפי:", "list-label-modifiedAt": "מועד הגישה האחרון:", diff --git a/i18n/hi.i18n.json b/i18n/hi.i18n.json index 33fd5ab4f..86786e2bb 100644 --- a/i18n/hi.i18n.json +++ b/i18n/hi.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export बोर्ड", "exportCardPopup-title": "Export card", "sort": "भांति", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "क्रमबद्ध सूची पर क्लिक करें", "list-sort-by": "सूची क्रमबद्ध करें:", "list-label-modifiedAt": "अंतिम पहुंच समय", diff --git a/i18n/hr.i18n.json b/i18n/hr.i18n.json index a37fcfb8f..13691d664 100644 --- a/i18n/hr.i18n.json +++ b/i18n/hr.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/hu.i18n.json b/i18n/hu.i18n.json index 5a6c675be..3b3aff0e4 100644 --- a/i18n/hu.i18n.json +++ b/i18n/hu.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Tábla exportálása", "exportCardPopup-title": "Kártya exportálása", "sort": "Rendezés", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Kattints a lista rendezéséhez", "list-sort-by": "Rendezd a Listát e szerint:", "list-label-modifiedAt": "Utolsó hozzáférés ideje", diff --git a/i18n/hy.i18n.json b/i18n/hy.i18n.json index 4c3b544c3..2bdd6b96b 100644 --- a/i18n/hy.i18n.json +++ b/i18n/hy.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/id.i18n.json b/i18n/id.i18n.json index a2786b5ef..79cf6f20c 100644 --- a/i18n/id.i18n.json +++ b/i18n/id.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exspor Panel", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/ig.i18n.json b/i18n/ig.i18n.json index a5283de4e..b02c1afb1 100644 --- a/i18n/ig.i18n.json +++ b/i18n/ig.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json index 53fe98bf7..9308edb73 100644 --- a/i18n/it.i18n.json +++ b/i18n/it.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Esporta bacheca", "exportCardPopup-title": "Export card", "sort": "Ordina", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Clicca per ordinare la lista", "list-sort-by": "Ordina lista per:", "list-label-modifiedAt": "Orario ultimo accesso", diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json index 9e4b977d6..9176c63cb 100644 --- a/i18n/ja.i18n.json +++ b/i18n/ja.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "ボードのエクスポート", "exportCardPopup-title": "Export card", "sort": "並べ替え", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "クリックでリストをソート", "list-sort-by": "次によりリストを並べ替え:", "list-label-modifiedAt": "最終アクセス日時", diff --git a/i18n/ka.i18n.json b/i18n/ka.i18n.json index 278b76d35..e9141e1b6 100644 --- a/i18n/ka.i18n.json +++ b/i18n/ka.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "დაფის ექსპორტი", "exportCardPopup-title": "Export card", "sort": "დალაგება", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "დააკლიკეთ ჩამონათვალის დალაგებისთვის", "list-sort-by": "ჩამონათვალის დალაგება: ", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/km.i18n.json b/i18n/km.i18n.json index 41042c875..e85dcdd79 100644 --- a/i18n/km.i18n.json +++ b/i18n/km.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json index 64fd328cf..c26862a9c 100644 --- a/i18n/ko.i18n.json +++ b/i18n/ko.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "보드 내보내기", "exportCardPopup-title": "Export card", "sort": "분류", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/lt.i18n.json b/i18n/lt.i18n.json index 342083a0f..2f73148d8 100644 --- a/i18n/lt.i18n.json +++ b/i18n/lt.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/lv.i18n.json b/i18n/lv.i18n.json index 0db83e755..cba18cd85 100644 --- a/i18n/lv.i18n.json +++ b/i18n/lv.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Eksportēt dēli", "exportCardPopup-title": "Export card", "sort": "Kārtot", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Spiediet, lai kārtotu sarakstu", "list-sort-by": "Kārtot sarakstu pēc:", "list-label-modifiedAt": "Uzskaitīt piekļuves laiku", diff --git a/i18n/mk.i18n.json b/i18n/mk.i18n.json index c37235745..8f41ff0ad 100644 --- a/i18n/mk.i18n.json +++ b/i18n/mk.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Експортиране на Табло", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/mn.i18n.json b/i18n/mn.i18n.json index e20f5b417..17e6681ea 100644 --- a/i18n/mn.i18n.json +++ b/i18n/mn.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/nb.i18n.json b/i18n/nb.i18n.json index b345f65e8..0ce8c1235 100644 --- a/i18n/nb.i18n.json +++ b/i18n/nb.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Eksporter tavle", "exportCardPopup-title": "Eksportér kort", "sort": "Sorter", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Klikk for sortering liste", "list-sort-by": "Sorter liten etter:", "list-label-modifiedAt": "Siste innlogging", diff --git a/i18n/nl.i18n.json b/i18n/nl.i18n.json index 459b193d0..ba4d13cb1 100644 --- a/i18n/nl.i18n.json +++ b/i18n/nl.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exporteer bord", "exportCardPopup-title": "Exporteer kaart", "sort": "Sorteer", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Klik om lijst te sorteren", "list-sort-by": "Sorteer lijst op", "list-label-modifiedAt": "Laatste toegangstijd", diff --git a/i18n/oc.i18n.json b/i18n/oc.i18n.json index f1599c2de..ceffe72cd 100644 --- a/i18n/oc.i18n.json +++ b/i18n/oc.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exportar lo tablèu", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/pa.i18n.json b/i18n/pa.i18n.json index 342083a0f..2f73148d8 100644 --- a/i18n/pa.i18n.json +++ b/i18n/pa.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json index 5989cf6cb..a59595171 100644 --- a/i18n/pl.i18n.json +++ b/i18n/pl.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Eksportuj tablicę", "exportCardPopup-title": "Export card", "sort": "Sortuj", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Kliknij by sortować listę", "list-sort-by": "Sortuj listę przez:", "list-label-modifiedAt": "Ostatni dostęp", diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json index 248848c95..ed9157cda 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exportar quadro", "exportCardPopup-title": "Exportar cartão", "sort": "Ordenar", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Clique para Ordenar Lista", "list-sort-by": "Ordenar a Lista por:", "list-label-modifiedAt": "Último Acesso", diff --git a/i18n/pt.i18n.json b/i18n/pt.i18n.json index 12a18cccd..b9309a793 100644 --- a/i18n/pt.i18n.json +++ b/i18n/pt.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exportar quadro", "exportCardPopup-title": "Exportar cartão", "sort": "Ordenar", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Clique para ordenar a Lista", "list-sort-by": "Ordenar a Lista por:", "list-label-modifiedAt": "Data do Último Acesso", diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json index cb5c3bfc7..7afd420e1 100644 --- a/i18n/ro.i18n.json +++ b/i18n/ro.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json index b8460dc46..8288ed177 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Экспортировать доску", "exportCardPopup-title": "Экспорт карточки", "sort": "Сортировать", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Нажмите, чтобы отсортировать список", "list-sort-by": "Сортировать список по:", "list-label-modifiedAt": "Время последнего доступа", diff --git a/i18n/sk.i18n.json b/i18n/sk.i18n.json index 7140d665d..11350a491 100644 --- a/i18n/sk.i18n.json +++ b/i18n/sk.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/sl.i18n.json b/i18n/sl.i18n.json index ba57aa46d..59867ffda 100644 --- a/i18n/sl.i18n.json +++ b/i18n/sl.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Izvozi tablo", "exportCardPopup-title": "Export card", "sort": "Sortiraj", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Klikni za sortiranje seznama", "list-sort-by": "Sortiraj po:", "list-label-modifiedAt": "Nazadnje dostopano", diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json index 7750c9318..d160b3440 100644 --- a/i18n/sr.i18n.json +++ b/i18n/sr.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sortiraj", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Kliknite da biste sortirali listu", "list-sort-by": "Poredaj listu po:", "list-label-modifiedAt": "Poslednje vreme pristupa", diff --git a/i18n/sv.i18n.json b/i18n/sv.i18n.json index fd0ffad09..5323f905e 100644 --- a/i18n/sv.i18n.json +++ b/i18n/sv.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Exportera tavla", "exportCardPopup-title": "Export card", "sort": "Sortera", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Klicka för att sortera listan", "list-sort-by": "Sortera listan efter:", "list-label-modifiedAt": "Sista åtkomsttid", diff --git a/i18n/sw.i18n.json b/i18n/sw.i18n.json index 27218e9b3..8db84856a 100644 --- a/i18n/sw.i18n.json +++ b/i18n/sw.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/ta.i18n.json b/i18n/ta.i18n.json index 716752725..730c48c92 100644 --- a/i18n/ta.i18n.json +++ b/i18n/ta.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/th.i18n.json b/i18n/th.i18n.json index 98cd8001d..ab31afffa 100644 --- a/i18n/th.i18n.json +++ b/i18n/th.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "ส่งออกกระดาน", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json index 636656e3b..a79a3cc40 100644 --- a/i18n/tr.i18n.json +++ b/i18n/tr.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Panoyu dışarı aktar", "exportCardPopup-title": "Kartı dışa aktar.", "sort": "Sırala", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Listeyi Sıralamak için Tıklayın", "list-sort-by": "Listeyi Sırala:", "list-label-modifiedAt": "Son Erişim Zamanı...", diff --git a/i18n/uk.i18n.json b/i18n/uk.i18n.json index 02d9230cd..3f82d1fb2 100644 --- a/i18n/uk.i18n.json +++ b/i18n/uk.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/vi.i18n.json b/i18n/vi.i18n.json index 598c6d007..6e84228ce 100644 --- a/i18n/vi.i18n.json +++ b/i18n/vi.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Xuất bảng", "exportCardPopup-title": "Export card", "sort": "Sắp xếp", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Nhấp để sắp xếp danh sách", "list-sort-by": "Sắp xếp Danh sách bởi:", "list-label-modifiedAt": "Lần truy cập cuối cùng", diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json index 45d0db7e0..e43cf815f 100644 --- a/i18n/zh-CN.i18n.json +++ b/i18n/zh-CN.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "导出看板", "exportCardPopup-title": "导出卡片", "sort": "排序", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "点此来将列表排序", "list-sort-by": "按此来将列表排序:", "list-label-modifiedAt": "上次访问时间", diff --git a/i18n/zh-HK.i18n.json b/i18n/zh-HK.i18n.json index 2a42317e1..aa8da6126 100644 --- a/i18n/zh-HK.i18n.json +++ b/i18n/zh-HK.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "Export board", "exportCardPopup-title": "Export card", "sort": "Sort", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "Click to Sort List", "list-sort-by": "Sort the List By:", "list-label-modifiedAt": "Last Access Time", diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json index 0e14e7dff..78e30c6eb 100644 --- a/i18n/zh-TW.i18n.json +++ b/i18n/zh-TW.i18n.json @@ -369,6 +369,8 @@ "exportBoardPopup-title": "匯出看板", "exportCardPopup-title": "匯出卡片", "sort": "排序", + "sorted": "Sorted", + "remove-sort": "Remove sort", "sort-desc": "點選排序清單", "list-sort-by": "清單排序依照:", "list-label-modifiedAt": "最後存取時間", From 8eaa490664d02e68b3df26a044df7852341f8d00 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 22 Sep 2021 17:12:20 +0300 Subject: [PATCH 14/15] v5.60 --- CHANGELOG.md | 2 +- Stackerfile.yml | 2 +- helm/wekan/Chart.yaml | 2 +- helm/wekan/values.yaml | 2 +- package-lock.json | 2 +- package.json | 2 +- public/api/wekan.html | 17 ++++++++++++++--- public/api/wekan.yml | 6 +++++- sandstorm-pkgdef.capnp | 4 ++-- snapcraft.yaml | 2 +- 10 files changed, 28 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d45be0c8d..4037ec684 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ Note: With Docker, please don't use latest tag. Only use release tags. See https://github.com/wekan/wekan/issues/3874 -# Upcoming Wekan release +# v5.60 2021-09-22 Wekan release This release adds the following new features: diff --git a/Stackerfile.yml b/Stackerfile.yml index cc1b6eca1..5e2353866 100644 --- a/Stackerfile.yml +++ b/Stackerfile.yml @@ -1,5 +1,5 @@ appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 -appVersion: "v5.59.0" +appVersion: "v5.60.0" files: userUploads: - README.md diff --git a/helm/wekan/Chart.yaml b/helm/wekan/Chart.yaml index ef7e8e744..27c56d7cd 100644 --- a/helm/wekan/Chart.yaml +++ b/helm/wekan/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: "5.59" +appVersion: "5.60" dependencies: - condition: mongodb.enabled name: mongodb diff --git a/helm/wekan/values.yaml b/helm/wekan/values.yaml index 53d5ec972..d68764062 100644 --- a/helm/wekan/values.yaml +++ b/helm/wekan/values.yaml @@ -14,7 +14,7 @@ serviceAccounts: ## image: repository: quay.io/wekan/wekan - tag: v5.59 + tag: v5.60 pullPolicy: IfNotPresent ## Configuration for wekan component diff --git a/package-lock.json b/package-lock.json index 695299fe6..c8d76e170 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v5.59.0", + "version": "v5.60.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6e8a08bb9..49df238cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v5.59.0", + "version": "v5.60.0", "description": "Open-Source kanban", "private": true, "repository": { diff --git a/public/api/wekan.html b/public/api/wekan.html index 695d1eaf5..9cb9c222a 100644 --- a/public/api/wekan.html +++ b/public/api/wekan.html @@ -7,7 +7,7 @@ - Wekan REST API v5.59 + Wekan REST API v5.60 @@ -1555,7 +1555,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
  • - Wekan REST API v5.59 + Wekan REST API v5.60
  • @@ -2128,7 +2128,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
    -

    Wekan REST API v5.59

    +

    Wekan REST API v5.60

    Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.

    @@ -16050,6 +16050,7 @@ System.out.println(response.toString()); "showDesktopDragHandles": true, "hideCheckedItems": true, "cardMaximized": true, + "customFieldsGrid": true, "hiddenSystemMessages": true, "hiddenMinicardLabelText": true, "initials": "string", @@ -16803,6 +16804,7 @@ System.out.println(response.toString()); "showDesktopDragHandles": true, "hideCheckedItems": true, "cardMaximized": true, + "customFieldsGrid": true, "hiddenSystemMessages": true, "hiddenMinicardLabelText": true, "initials": "string", @@ -20989,6 +20991,7 @@ UserSecurity "showDesktopDragHandles": true, "hideCheckedItems": true, "cardMaximized": true, + "customFieldsGrid": true, "hiddenSystemMessages": true, "hiddenMinicardLabelText": true, "initials": "string", @@ -21164,6 +21167,7 @@ UserSecurity "showDesktopDragHandles": true, "hideCheckedItems": true, "cardMaximized": true, + "customFieldsGrid": true, "hiddenSystemMessages": true, "hiddenMinicardLabelText": true, "initials": "string", @@ -21247,6 +21251,13 @@ UserSecurity has user clicked maximize card? +customFieldsGrid +boolean +false +none +has user at card Custom Fields have Grid (false) or one per row (true) layout? + + hiddenSystemMessages boolean false diff --git a/public/api/wekan.yml b/public/api/wekan.yml index f4fd4e4ef..3661d6cc6 100644 --- a/public/api/wekan.yml +++ b/public/api/wekan.yml @@ -1,7 +1,7 @@ swagger: '2.0' info: title: Wekan REST API - version: v5.59 + version: v5.60 description: | The REST API allows you to control and extend Wekan with ease. @@ -3936,6 +3936,10 @@ definitions: description: | has user clicked maximize card? type: boolean + customFieldsGrid: + description: | + has user at card Custom Fields have Grid (false) or one per row (true) layout? + type: boolean hiddenSystemMessages: description: | does the user want to hide system messages? diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index fb6dd7c62..5cc115a29 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 = 559, + appVersion = 560, # Increment this for every release. - appMarketingVersion = (defaultText = "5.59.0~2021-09-17"), + appMarketingVersion = (defaultText = "5.60.0~2021-09-22"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, diff --git a/snapcraft.yaml b/snapcraft.yaml index 3081022a7..bcd124576 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,5 +1,5 @@ name: wekan -version: '5.59' +version: '5.60' summary: The open-source kanban description: | Wekan is an open-source and collaborative kanban board application. From 8bd2e4f0dd7679001cc4bd355576b9faf940ea96 Mon Sep 17 00:00:00 2001 From: Emile NDAGIJIMANA Date: Wed, 22 Sep 2021 17:12:35 +0200 Subject: [PATCH 15/15] upgrade to wekan 5.60 --- models/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/users.js b/models/users.js index bb95711af..961faa8c0 100644 --- a/models/users.js +++ b/models/users.js @@ -436,7 +436,7 @@ Users.allow({ fetch: [], }); -// Search a user in the complete server database by its name or username. This +// Search a user in the complete server database by its name, username or emails adress. This // is used for instance to add a new user to a board. const searchInFields = ['username', 'profile.fullname', 'emails.address']; Users.initEasySearch(searchInFields, {