Pārlūkot izejas kodu

Merge branch 'Akuket-edge' into edge

Lauri Ojansivu 6 gadi atpakaļ
vecāks
revīzija
b627499acd
53 mainītis faili ar 166 papildinājumiem un 56 dzēšanām
  1. 8 3
      client/components/settings/peopleBody.jade
  2. 35 1
      client/components/settings/peopleBody.js
  3. 21 0
      client/components/settings/peopleBody.styl
  4. 2 1
      i18n/ar.i18n.json
  5. 2 1
      i18n/bg.i18n.json
  6. 2 1
      i18n/br.i18n.json
  7. 2 1
      i18n/ca.i18n.json
  8. 2 1
      i18n/cs.i18n.json
  9. 2 1
      i18n/da.i18n.json
  10. 2 1
      i18n/de.i18n.json
  11. 2 1
      i18n/el.i18n.json
  12. 2 1
      i18n/en-GB.i18n.json
  13. 2 1
      i18n/en.i18n.json
  14. 2 1
      i18n/eo.i18n.json
  15. 2 1
      i18n/es-AR.i18n.json
  16. 2 1
      i18n/es.i18n.json
  17. 2 1
      i18n/eu.i18n.json
  18. 2 1
      i18n/fa.i18n.json
  19. 2 1
      i18n/fi.i18n.json
  20. 4 3
      i18n/fr.i18n.json
  21. 2 1
      i18n/gl.i18n.json
  22. 2 1
      i18n/he.i18n.json
  23. 2 1
      i18n/hi.i18n.json
  24. 2 1
      i18n/hu.i18n.json
  25. 2 1
      i18n/hy.i18n.json
  26. 2 1
      i18n/id.i18n.json
  27. 2 1
      i18n/ig.i18n.json
  28. 2 1
      i18n/it.i18n.json
  29. 2 1
      i18n/ja.i18n.json
  30. 2 1
      i18n/ka.i18n.json
  31. 2 1
      i18n/km.i18n.json
  32. 2 1
      i18n/ko.i18n.json
  33. 2 1
      i18n/lv.i18n.json
  34. 2 1
      i18n/mk.i18n.json
  35. 2 1
      i18n/mn.i18n.json
  36. 2 1
      i18n/nb.i18n.json
  37. 2 1
      i18n/nl.i18n.json
  38. 2 1
      i18n/oc.i18n.json
  39. 2 1
      i18n/pl.i18n.json
  40. 2 1
      i18n/pt-BR.i18n.json
  41. 2 1
      i18n/pt.i18n.json
  42. 2 1
      i18n/ro.i18n.json
  43. 2 1
      i18n/ru.i18n.json
  44. 2 1
      i18n/sr.i18n.json
  45. 2 1
      i18n/sv.i18n.json
  46. 2 1
      i18n/sw.i18n.json
  47. 2 1
      i18n/ta.i18n.json
  48. 2 1
      i18n/th.i18n.json
  49. 2 1
      i18n/tr.i18n.json
  50. 2 1
      i18n/uk.i18n.json
  51. 2 1
      i18n/vi.i18n.json
  52. 2 1
      i18n/zh-CN.i18n.json
  53. 2 1
      i18n/zh-TW.i18n.json

+ 8 - 3
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'}}")
+    input.primary.wide(type="submit" value="{{_ 'save'}}")

+ 35 - 1
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');
 

+ 21 - 0
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;

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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: "
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 4 - 3
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 :"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }

+ 2 - 1
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:"
 }