summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-04-20 16:29:08 +0300
committerLauri Ojansivu <x@xet7.org>2019-04-20 16:29:08 +0300
commitb627499acd17a2fa0e18384e24bb8f1d0a123eb8 (patch)
treefa4f813b9afaa86d1402a9390deb0db2bf044b88
parent6e4da08164fd44472c34c009acfdce843657d8d3 (diff)
parent43beccc2eb16d07224fdcbc3d030d361e2701245 (diff)
downloadwekan-b627499acd17a2fa0e18384e24bb8f1d0a123eb8.tar.gz
wekan-b627499acd17a2fa0e18384e24bb8f1d0a123eb8.tar.bz2
wekan-b627499acd17a2fa0e18384e24bb8f1d0a123eb8.zip
Merge branch 'Akuket-edge' into edge
-rw-r--r--client/components/settings/peopleBody.jade11
-rw-r--r--client/components/settings/peopleBody.js36
-rw-r--r--client/components/settings/peopleBody.styl21
-rw-r--r--i18n/ar.i18n.json3
-rw-r--r--i18n/bg.i18n.json3
-rw-r--r--i18n/br.i18n.json3
-rw-r--r--i18n/ca.i18n.json3
-rw-r--r--i18n/cs.i18n.json3
-rw-r--r--i18n/da.i18n.json3
-rw-r--r--i18n/de.i18n.json3
-rw-r--r--i18n/el.i18n.json3
-rw-r--r--i18n/en-GB.i18n.json3
-rw-r--r--i18n/en.i18n.json3
-rw-r--r--i18n/eo.i18n.json3
-rw-r--r--i18n/es-AR.i18n.json3
-rw-r--r--i18n/es.i18n.json3
-rw-r--r--i18n/eu.i18n.json3
-rw-r--r--i18n/fa.i18n.json3
-rw-r--r--i18n/fi.i18n.json3
-rw-r--r--i18n/fr.i18n.json7
-rw-r--r--i18n/gl.i18n.json3
-rw-r--r--i18n/he.i18n.json3
-rw-r--r--i18n/hi.i18n.json3
-rw-r--r--i18n/hu.i18n.json3
-rw-r--r--i18n/hy.i18n.json3
-rw-r--r--i18n/id.i18n.json3
-rw-r--r--i18n/ig.i18n.json3
-rw-r--r--i18n/it.i18n.json3
-rw-r--r--i18n/ja.i18n.json3
-rw-r--r--i18n/ka.i18n.json3
-rw-r--r--i18n/km.i18n.json3
-rw-r--r--i18n/ko.i18n.json3
-rw-r--r--i18n/lv.i18n.json3
-rw-r--r--i18n/mk.i18n.json3
-rw-r--r--i18n/mn.i18n.json3
-rw-r--r--i18n/nb.i18n.json3
-rw-r--r--i18n/nl.i18n.json3
-rw-r--r--i18n/oc.i18n.json3
-rw-r--r--i18n/pl.i18n.json3
-rw-r--r--i18n/pt-BR.i18n.json3
-rw-r--r--i18n/pt.i18n.json3
-rw-r--r--i18n/ro.i18n.json3
-rw-r--r--i18n/ru.i18n.json3
-rw-r--r--i18n/sr.i18n.json3
-rw-r--r--i18n/sv.i18n.json3
-rw-r--r--i18n/sw.i18n.json3
-rw-r--r--i18n/ta.i18n.json3
-rw-r--r--i18n/th.i18n.json3
-rw-r--r--i18n/tr.i18n.json3
-rw-r--r--i18n/uk.i18n.json3
-rw-r--r--i18n/vi.i18n.json3
-rw-r--r--i18n/zh-CN.i18n.json3
-rw-r--r--i18n/zh-TW.i18n.json3
53 files changed, 166 insertions, 56 deletions
diff --git a/client/components/settings/peopleBody.jade b/client/components/settings/peopleBody.jade
index 4d06637e..30b7a807 100644
--- a/client/components/settings/peopleBody.jade
+++ b/client/components/settings/peopleBody.jade
@@ -3,8 +3,13 @@ template(name="people")
unless currentUser.isAdmin
| {{_ 'error-notAuthorized'}}
else
- .content-title
- span {{_ 'people'}}
+ .content-title.ext-box
+ .ext-box-left
+ span {{_ 'people'}}
+ input#searchInput(placeholder="{{_ 'search'}}")
+ button#searchButton {{_ 'enter'}}
+ .ext-box-right
+ span {{_ 'people-number'}} #{peopleNumber}
.content-body
.side-menu
ul
@@ -103,4 +108,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..3ec96bb0 100644
--- a/client/components/settings/peopleBody.js
+++ b/client/components/settings/peopleBody.js
@@ -8,6 +8,8 @@ BlazeComponent.extendComponent({
this.error = new ReactiveVar('');
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;
@@ -26,6 +28,33 @@ BlazeComponent.extendComponent({
});
});
},
+ events() {
+ return [{
+ 'click #searchButton'() {
+ this.filterPeople();
+ },
+ 'keydown #searchInput'(event) {
+ if (event.keyCode === 13 && !event.shiftKey) {
+ this.filterPeople();
+ }
+ },
+ }];
+ },
+ filterPeople() {
+ 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,9 +78,14 @@ BlazeComponent.extendComponent({
this.loading.set(w);
},
peopleList() {
- return Users.find({}, {
+ const users = Users.find(this.findUsersOptions.get(), {
fields: {_id: true},
});
+ this.number.set(users.count());
+ return users;
+ },
+ peopleNumber() {
+ return this.number.get();
},
}).register('people');
diff --git a/client/components/settings/peopleBody.styl b/client/components/settings/peopleBody.styl
index 84db44a7..b98c5340 100644
--- a/client/components/settings/peopleBody.styl
+++ b/client/components/settings/peopleBody.styl
@@ -13,3 +13,24 @@ table
tr:nth-child(even)
background-color: #dddddd;
+
+.ext-box
+ display: flex;
+ flex-direction: row;
+ height: 34px;
+
+ .ext-box-left
+ display: flex;
+ width: 40%
+
+ span
+ vertical-align: center;
+ line-height: 34px;
+ margin-right: 10px;
+
+ input, button
+ margin: 0 10px 0 0;
+ padding: 0;
+
+ button
+ min-width: 60px;
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/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/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 bc7614d5..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",
@@ -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"
+ "duplicate-board": "Dupliquer le tableau",
+ "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