From 308417852c218501af60aeae3f947707cc7c64cc Mon Sep 17 00:00:00 2001 From: guillaume Date: Fri, 19 Apr 2019 14:57:52 +0200 Subject: Search user in admin panel --- client/components/settings/peopleBody.jade | 6 ++++-- client/components/settings/peopleBody.js | 23 ++++++++++++++++++++++- client/components/settings/peopleBody.styl | 17 +++++++++++++++++ 3 files changed, 43 insertions(+), 3 deletions(-) diff --git a/client/components/settings/peopleBody.jade b/client/components/settings/peopleBody.jade index 4d06637e..e459da6e 100644 --- a/client/components/settings/peopleBody.jade +++ b/client/components/settings/peopleBody.jade @@ -3,8 +3,10 @@ template(name="people") unless currentUser.isAdmin | {{_ 'error-notAuthorized'}} else - .content-title + .content-title.ext-box span {{_ 'people'}} + input#searchInput(placeholder="{{_ 'search'}}") + button#searchButton {{_ 'enter'}} .content-body .side-menu ul @@ -103,4 +105,4 @@ template(name="editUserPopup") | {{_ 'password'}} input.js-profile-password(type="password") - input.primary.wide(type="submit" value="{{_ 'save'}}") \ No newline at end of file + input.primary.wide(type="submit" value="{{_ 'save'}}") diff --git a/client/components/settings/peopleBody.js b/client/components/settings/peopleBody.js index a4d70974..245c8884 100644 --- a/client/components/settings/peopleBody.js +++ b/client/components/settings/peopleBody.js @@ -8,6 +8,7 @@ BlazeComponent.extendComponent({ this.error = new ReactiveVar(''); this.loading = new ReactiveVar(false); this.people = new ReactiveVar(true); + this.findUsersOptions = new ReactiveVar({}); this.page = new ReactiveVar(1); this.loadNextPageLocked = false; @@ -26,6 +27,25 @@ BlazeComponent.extendComponent({ }); }); }, + events() { + return [{ + 'click #searchButton'(event) { + const value = $('#searchInput').first().val(); + if (value === '') { + this.findUsersOptions.set({}); + } else { + const regex = new RegExp(value, 'i'); + this.findUsersOptions.set({ + $or: [ + { username: regex }, + { 'profile.fullname': regex }, + { 'emails.address': regex }, + ] + }); + } + } + }]; + }, loadNextPage() { if (this.loadNextPageLocked === false) { this.page.set(this.page.get() + 1); @@ -49,7 +69,8 @@ BlazeComponent.extendComponent({ this.loading.set(w); }, peopleList() { - return Users.find({}, { + // get users in front to cache them + return Users.find(this.findUsersOptions.get(), { fields: {_id: true}, }); }, diff --git a/client/components/settings/peopleBody.styl b/client/components/settings/peopleBody.styl index 84db44a7..fb9d5c6b 100644 --- a/client/components/settings/peopleBody.styl +++ b/client/components/settings/peopleBody.styl @@ -13,3 +13,20 @@ table tr:nth-child(even) background-color: #dddddd; + +.ext-box + display: flex; + flex-direction: row; + height: 34px; + + span + vertical-align: center; + line-height: 34px; + margin-right: 10px; + + input, button + margin: 0 10px 0 0; + padding: 0; + + button + min-width: 60px; -- cgit v1.2.3-1-g7c22 From 070feb4b664cf84613fed378d568a9449c3780e6 Mon Sep 17 00:00:00 2001 From: guillaume Date: Fri, 19 Apr 2019 16:17:17 +0200 Subject: Number of users --- client/components/settings/peopleBody.jade | 9 ++++--- client/components/settings/peopleBody.js | 42 ++++++++++++++++++++---------- client/components/settings/peopleBody.styl | 4 +++ i18n/en.i18n.json | 3 ++- i18n/fr.i18n.json | 5 ++-- 5 files changed, 43 insertions(+), 20 deletions(-) diff --git a/client/components/settings/peopleBody.jade b/client/components/settings/peopleBody.jade index e459da6e..30b7a807 100644 --- a/client/components/settings/peopleBody.jade +++ b/client/components/settings/peopleBody.jade @@ -4,9 +4,12 @@ template(name="people") | {{_ 'error-notAuthorized'}} else .content-title.ext-box - span {{_ 'people'}} - input#searchInput(placeholder="{{_ 'search'}}") - button#searchButton {{_ 'enter'}} + .ext-box-left + span {{_ 'people'}} + input#searchInput(placeholder="{{_ 'search'}}") + button#searchButton {{_ 'enter'}} + .ext-box-right + span {{_ 'people-number'}} #{peopleNumber} .content-body .side-menu ul diff --git a/client/components/settings/peopleBody.js b/client/components/settings/peopleBody.js index 245c8884..db7be138 100644 --- a/client/components/settings/peopleBody.js +++ b/client/components/settings/peopleBody.js @@ -9,6 +9,7 @@ BlazeComponent.extendComponent({ this.loading = new ReactiveVar(false); this.people = new ReactiveVar(true); this.findUsersOptions = new ReactiveVar({}); + this.number = new ReactiveVar(0); this.page = new ReactiveVar(1); this.loadNextPageLocked = false; @@ -30,22 +31,30 @@ BlazeComponent.extendComponent({ events() { return [{ 'click #searchButton'(event) { - const value = $('#searchInput').first().val(); - if (value === '') { - this.findUsersOptions.set({}); - } else { - const regex = new RegExp(value, 'i'); - this.findUsersOptions.set({ - $or: [ - { username: regex }, - { 'profile.fullname': regex }, - { 'emails.address': regex }, - ] - }); + this.filterPeople(event); + }, + 'keydown #searchInput'(event) { + if (event.keyCode === 13 && !event.shiftKey) { + this.filterPeople(event); } } }]; }, + filterPeople(event) { + const value = $('#searchInput').first().val(); + if (value === '') { + this.findUsersOptions.set({}); + } else { + const regex = new RegExp(value, 'i'); + this.findUsersOptions.set({ + $or: [ + { username: regex }, + { 'profile.fullname': regex }, + { 'emails.address': regex }, + ] + }); + } + }, loadNextPage() { if (this.loadNextPageLocked === false) { this.page.set(this.page.get() + 1); @@ -69,11 +78,16 @@ BlazeComponent.extendComponent({ this.loading.set(w); }, peopleList() { - // get users in front to cache them - return Users.find(this.findUsersOptions.get(), { + const users = Users.find(this.findUsersOptions.get(), { fields: {_id: true}, }); + this.number.set(users.count()); + return users; }, + peopleNumber() { + return this.number.get(); + } + }).register('people'); Template.peopleRow.helpers({ diff --git a/client/components/settings/peopleBody.styl b/client/components/settings/peopleBody.styl index fb9d5c6b..b98c5340 100644 --- a/client/components/settings/peopleBody.styl +++ b/client/components/settings/peopleBody.styl @@ -19,6 +19,10 @@ table flex-direction: row; height: 34px; + .ext-box-left + display: flex; + width: 40% + span vertical-align: center; line-height: 34px; diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json index 4e4af38b..22e15934 100644 --- a/i18n/en.i18n.json +++ b/i18n/en.i18n.json @@ -686,5 +686,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is: " } diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index bc7614d5..1eb2a278 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Une erreur s'est produite lors de la tentative de connexion", "display-authentication-method": "Afficher la méthode d'authentification", "default-authentication-method": "Méthode d'authentification par défaut", - "duplicate-board": "Dupliquer le tableau" -} \ No newline at end of file + "duplicate-board": "Dupliquer le tableau", + "people-number": "Le nombre d'utilisateurs est de : " +} -- cgit v1.2.3-1-g7c22 From e63eee0c68d35a155da79f31ab18ddc5a76bde13 Mon Sep 17 00:00:00 2001 From: guillaume Date: Fri, 19 Apr 2019 16:39:14 +0200 Subject: fix lints --- client/components/settings/peopleBody.js | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/client/components/settings/peopleBody.js b/client/components/settings/peopleBody.js index db7be138..3ec96bb0 100644 --- a/client/components/settings/peopleBody.js +++ b/client/components/settings/peopleBody.js @@ -30,17 +30,17 @@ BlazeComponent.extendComponent({ }, events() { return [{ - 'click #searchButton'(event) { - this.filterPeople(event); + 'click #searchButton'() { + this.filterPeople(); }, 'keydown #searchInput'(event) { if (event.keyCode === 13 && !event.shiftKey) { - this.filterPeople(event); + this.filterPeople(); } - } + }, }]; }, - filterPeople(event) { + filterPeople() { const value = $('#searchInput').first().val(); if (value === '') { this.findUsersOptions.set({}); @@ -51,7 +51,7 @@ BlazeComponent.extendComponent({ { username: regex }, { 'profile.fullname': regex }, { 'emails.address': regex }, - ] + ], }); } }, @@ -86,8 +86,7 @@ BlazeComponent.extendComponent({ }, peopleNumber() { return this.number.get(); - } - + }, }).register('people'); Template.peopleRow.helpers({ -- cgit v1.2.3-1-g7c22 From 43beccc2eb16d07224fdcbc3d030d361e2701245 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Sat, 20 Apr 2019 16:28:03 +0300 Subject: 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/da.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 | 3 ++- i18n/fr.i18n.json | 8 ++++---- i18n/gl.i18n.json | 3 ++- i18n/he.i18n.json | 3 ++- i18n/hi.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/ka.i18n.json | 3 ++- i18n/km.i18n.json | 3 ++- i18n/ko.i18n.json | 3 ++- i18n/lv.i18n.json | 3 ++- i18n/mk.i18n.json | 3 ++- i18n/mn.i18n.json | 3 ++- i18n/nb.i18n.json | 3 ++- i18n/nl.i18n.json | 3 ++- i18n/oc.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/sw.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 ++- 49 files changed, 100 insertions(+), 52 deletions(-) diff --git a/i18n/ar.i18n.json b/i18n/ar.i18n.json index e6382046..c8550643 100644 --- a/i18n/ar.i18n.json +++ b/i18n/ar.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/bg.i18n.json b/i18n/bg.i18n.json index bca2c915..34025188 100644 --- a/i18n/bg.i18n.json +++ b/i18n/bg.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/br.i18n.json b/i18n/br.i18n.json index 6a793d2c..a6005751 100644 --- a/i18n/br.i18n.json +++ b/i18n/br.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/ca.i18n.json b/i18n/ca.i18n.json index 170e8571..0a204de2 100644 --- a/i18n/ca.i18n.json +++ b/i18n/ca.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/cs.i18n.json b/i18n/cs.i18n.json index 8f181315..82b7b2ba 100644 --- a/i18n/cs.i18n.json +++ b/i18n/cs.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Během přihlašování nastala chyba", "display-authentication-method": "Zobraz způsob ověřování", "default-authentication-method": "Zobraz způsob ověřování", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/da.i18n.json b/i18n/da.i18n.json index 94f0bc16..95d41623 100644 --- a/i18n/da.i18n.json +++ b/i18n/da.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index 17770214..f0597aec 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Es ist ein Fehler beim Anmelden aufgetreten", "display-authentication-method": "Anzeige Authentifizierungsverfahren", "default-authentication-method": "Standardauthentifizierungsverfahren", - "duplicate-board": "Board duplizieren" + "duplicate-board": "Board duplizieren", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/el.i18n.json b/i18n/el.i18n.json index 230943da..bf642815 100644 --- a/i18n/el.i18n.json +++ b/i18n/el.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/en-GB.i18n.json b/i18n/en-GB.i18n.json index 3dab712e..1b8f6a77 100644 --- a/i18n/en-GB.i18n.json +++ b/i18n/en-GB.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/eo.i18n.json b/i18n/eo.i18n.json index 34fbc283..c93d4a40 100644 --- a/i18n/eo.i18n.json +++ b/i18n/eo.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/es-AR.i18n.json b/i18n/es-AR.i18n.json index b4123680..4ac17086 100644 --- a/i18n/es-AR.i18n.json +++ b/i18n/es-AR.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/es.i18n.json b/i18n/es.i18n.json index 18bded97..17742ea3 100644 --- a/i18n/es.i18n.json +++ b/i18n/es.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Ocurrió un error al intentar acceder", "display-authentication-method": "Mostrar el método de autenticación", "default-authentication-method": "Método de autenticación por defecto", - "duplicate-board": "Duplicar tablero" + "duplicate-board": "Duplicar tablero", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/eu.i18n.json b/i18n/eu.i18n.json index 6f1a2d31..f44b5219 100644 --- a/i18n/eu.i18n.json +++ b/i18n/eu.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/fa.i18n.json b/i18n/fa.i18n.json index dbf04373..610e651d 100644 --- a/i18n/fa.i18n.json +++ b/i18n/fa.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "هنگام تلاش برای ورود به یک خطا رخ داد", "display-authentication-method": "نمایش نوع اعتبارسنجی", "default-authentication-method": "نوع اعتبارسنجی پیشفرض", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/fi.i18n.json b/i18n/fi.i18n.json index 5790a27a..d475a3b3 100644 --- a/i18n/fi.i18n.json +++ b/i18n/fi.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Virhe tapahtui yrittäessä kirjautua sisään", "display-authentication-method": "Näytä kirjautumistapa", "default-authentication-method": "Oletus kirjautumistapa", - "duplicate-board": "Tee kaksoiskappale taulusta" + "duplicate-board": "Tee kaksoiskappale taulusta", + "people-number": "Ihmisten määrä on:" } \ No newline at end of file diff --git a/i18n/fr.i18n.json b/i18n/fr.i18n.json index 1eb2a278..922ebc27 100644 --- a/i18n/fr.i18n.json +++ b/i18n/fr.i18n.json @@ -386,7 +386,7 @@ "normal": "Normal", "normal-desc": "Peut voir et modifier les cartes. Ne peut pas changer les paramètres.", "not-accepted-yet": "L'invitation n'a pas encore été acceptée", - "notify-participate": "Recevoir les mises à jour de toutes les cartes auxquelles vous participez en tant que créateur ou que participant ", + "notify-participate": "Recevoir les mises à jour de toutes les cartes auxquelles vous participez en tant que créateur ou que participant", "notify-watch": "Recevoir les mises à jour de tous les tableaux, listes ou cartes que vous suivez", "optional": "optionnel", "or": "ou", @@ -432,7 +432,7 @@ "shortcut-show-shortcuts": "Afficher cette liste de raccourcis", "shortcut-toggle-filterbar": "Afficher/Masquer la barre latérale des filtres", "shortcut-toggle-sidebar": "Afficher/Masquer la barre latérale du tableau", - "show-cards-minimum-count": "Afficher le nombre de cartes si la liste en contient plus de ", + "show-cards-minimum-count": "Afficher le nombre de cartes si la liste en contient plus de", "sidebar-open": "Ouvrir le panneau", "sidebar-close": "Fermer le panneau", "signupPopup-title": "Créer un compte", @@ -684,5 +684,5 @@ "display-authentication-method": "Afficher la méthode d'authentification", "default-authentication-method": "Méthode d'authentification par défaut", "duplicate-board": "Dupliquer le tableau", - "people-number": "Le nombre d'utilisateurs est de : " -} + "people-number": "Le nombre d'utilisateurs est de :" +} \ No newline at end of file diff --git a/i18n/gl.i18n.json b/i18n/gl.i18n.json index 3158eb9d..ddc9f250 100644 --- a/i18n/gl.i18n.json +++ b/i18n/gl.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/he.i18n.json b/i18n/he.i18n.json index 9818d9da..3c3b9af3 100644 --- a/i18n/he.i18n.json +++ b/i18n/he.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "אירעה שגיאה בעת ניסיון הכניסה", "display-authentication-method": "הצגת שיטת אימות", "default-authentication-method": "שיטת אימות כבררת מחדל", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/hi.i18n.json b/i18n/hi.i18n.json index b58b5911..d31829d8 100644 --- a/i18n/hi.i18n.json +++ b/i18n/hi.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/hu.i18n.json b/i18n/hu.i18n.json index 45d38533..c84138cb 100644 --- a/i18n/hu.i18n.json +++ b/i18n/hu.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Hiba történt bejelentkezés közben", "display-authentication-method": "Hitelelesítési mód mutatása", "default-authentication-method": "Alapértelmezett hitelesítési mód", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/hy.i18n.json b/i18n/hy.i18n.json index 82e17c07..28140211 100644 --- a/i18n/hy.i18n.json +++ b/i18n/hy.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/id.i18n.json b/i18n/id.i18n.json index 291fc894..87c50fe8 100644 --- a/i18n/id.i18n.json +++ b/i18n/id.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/ig.i18n.json b/i18n/ig.i18n.json index 40376656..0699b2e3 100644 --- a/i18n/ig.i18n.json +++ b/i18n/ig.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/it.i18n.json b/i18n/it.i18n.json index 96844b15..40aa2307 100644 --- a/i18n/it.i18n.json +++ b/i18n/it.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "C'è stato un errore mentre provavi ad effettuare il login", "display-authentication-method": "Mostra il metodo di autenticazione", "default-authentication-method": "Metodo di autenticazione predefinito", - "duplicate-board": "Duplica bacheca" + "duplicate-board": "Duplica bacheca", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/ja.i18n.json b/i18n/ja.i18n.json index 29326281..d496788a 100644 --- a/i18n/ja.i18n.json +++ b/i18n/ja.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/ka.i18n.json b/i18n/ka.i18n.json index 2f870f01..c98f7500 100644 --- a/i18n/ka.i18n.json +++ b/i18n/ka.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/km.i18n.json b/i18n/km.i18n.json index b6c8f272..e06eb4a9 100644 --- a/i18n/km.i18n.json +++ b/i18n/km.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/ko.i18n.json b/i18n/ko.i18n.json index 1897495d..df8b9cfe 100644 --- a/i18n/ko.i18n.json +++ b/i18n/ko.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/lv.i18n.json b/i18n/lv.i18n.json index 6dc19085..fb20beda 100644 --- a/i18n/lv.i18n.json +++ b/i18n/lv.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/mk.i18n.json b/i18n/mk.i18n.json index 0d96f00b..385acfee 100644 --- a/i18n/mk.i18n.json +++ b/i18n/mk.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/mn.i18n.json b/i18n/mn.i18n.json index 1a819409..1da0cd1b 100644 --- a/i18n/mn.i18n.json +++ b/i18n/mn.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/nb.i18n.json b/i18n/nb.i18n.json index 098900a9..ba52baa9 100644 --- a/i18n/nb.i18n.json +++ b/i18n/nb.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/nl.i18n.json b/i18n/nl.i18n.json index 7bb7602b..48998d3b 100644 --- a/i18n/nl.i18n.json +++ b/i18n/nl.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/oc.i18n.json b/i18n/oc.i18n.json index 9c61d0c1..bd48f715 100644 --- a/i18n/oc.i18n.json +++ b/i18n/oc.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/pl.i18n.json b/i18n/pl.i18n.json index a1cf4da5..27fe3861 100644 --- a/i18n/pl.i18n.json +++ b/i18n/pl.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Wystąpił błąd w trakcie logowania", "display-authentication-method": "Wyświetl metodę logowania", "default-authentication-method": "Domyślna metoda logowania", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json index f92a5305..b217aad1 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Um erro ocorreu enquanto tentava entrar", "display-authentication-method": "Mostrar Método de Autenticação", "default-authentication-method": "Método de Autenticação Padrão", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/pt.i18n.json b/i18n/pt.i18n.json index 42aa4c5e..bf421326 100644 --- a/i18n/pt.i18n.json +++ b/i18n/pt.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/ro.i18n.json b/i18n/ro.i18n.json index 70fccc46..ad6296bf 100644 --- a/i18n/ro.i18n.json +++ b/i18n/ro.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json index c79c43fc..84ab4151 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Ошибка при попытке авторизации", "display-authentication-method": "Показывать способ авторизации", "default-authentication-method": "Способ авторизации по умолчанию", - "duplicate-board": "Клонировать доску" + "duplicate-board": "Клонировать доску", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/sr.i18n.json b/i18n/sr.i18n.json index 2a5aee10..9035e33f 100644 --- a/i18n/sr.i18n.json +++ b/i18n/sr.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/sv.i18n.json b/i18n/sv.i18n.json index c7df9f92..89326120 100644 --- a/i18n/sv.i18n.json +++ b/i18n/sv.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Ett fel uppstod när du försökte logga in", "display-authentication-method": "Visa autentiseringsmetod", "default-authentication-method": "Standard autentiseringsmetod", - "duplicate-board": "Dubbletttavla" + "duplicate-board": "Dubbletttavla", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/sw.i18n.json b/i18n/sw.i18n.json index 007d1fdb..9f850deb 100644 --- a/i18n/sw.i18n.json +++ b/i18n/sw.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/ta.i18n.json b/i18n/ta.i18n.json index ef85bad8..b57c19d3 100644 --- a/i18n/ta.i18n.json +++ b/i18n/ta.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/th.i18n.json b/i18n/th.i18n.json index 6c8ea8e6..b6fc51a5 100644 --- a/i18n/th.i18n.json +++ b/i18n/th.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/tr.i18n.json b/i18n/tr.i18n.json index 89ad2ac0..05bc48f4 100644 --- a/i18n/tr.i18n.json +++ b/i18n/tr.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "Giriş yapmaya çalışırken bir hata oluştu", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/uk.i18n.json b/i18n/uk.i18n.json index d0298ea6..9781c9f5 100644 --- a/i18n/uk.i18n.json +++ b/i18n/uk.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/vi.i18n.json b/i18n/vi.i18n.json index 028f1e66..e61d5fec 100644 --- a/i18n/vi.i18n.json +++ b/i18n/vi.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/zh-CN.i18n.json b/i18n/zh-CN.i18n.json index 510243b3..2b67a878 100644 --- a/i18n/zh-CN.i18n.json +++ b/i18n/zh-CN.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "尝试登陆时出错", "display-authentication-method": "显示认证方式", "default-authentication-method": "缺省认证方式", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file diff --git a/i18n/zh-TW.i18n.json b/i18n/zh-TW.i18n.json index 9cc6878d..794d5d66 100644 --- a/i18n/zh-TW.i18n.json +++ b/i18n/zh-TW.i18n.json @@ -683,5 +683,6 @@ "error-ldap-login": "An error occurred while trying to login", "display-authentication-method": "Display Authentication Method", "default-authentication-method": "Default Authentication Method", - "duplicate-board": "Duplicate Board" + "duplicate-board": "Duplicate Board", + "people-number": "The number of people is:" } \ No newline at end of file -- cgit v1.2.3-1-g7c22